From fbfe5054088c64e8c9a9575df73398905e766236 Mon Sep 17 00:00:00 2001 From: Hyunje Alex Jun Date: Tue, 5 Jan 2016 11:27:42 +0900 Subject: [PATCH] Remove comments from source files Abundant comments. --- index.js | 3 --- jquery.js | 3 --- src/js/adaptor/global.js | 3 --- src/js/adaptor/jquery.js | 3 --- src/js/lib/class.js | 3 --- src/js/lib/dom.js | 3 --- src/js/lib/event-manager.js | 3 --- src/js/lib/guid.js | 3 --- src/js/lib/helper.js | 3 --- src/js/main.js | 3 --- src/js/plugin/default-setting.js | 3 --- src/js/plugin/destroy.js | 3 --- src/js/plugin/handler/click-rail.js | 3 --- src/js/plugin/handler/drag-scrollbar.js | 3 --- src/js/plugin/handler/keyboard.js | 3 --- src/js/plugin/handler/mouse-wheel.js | 3 --- src/js/plugin/handler/native-scroll.js | 3 --- src/js/plugin/handler/selection.js | 3 --- src/js/plugin/handler/touch.js | 3 --- src/js/plugin/initialize.js | 3 --- src/js/plugin/instances.js | 3 --- src/js/plugin/update-geometry.js | 3 --- src/js/plugin/update-scroll.js | 3 --- src/js/plugin/update.js | 3 --- 24 files changed, 72 deletions(-) diff --git a/index.js b/index.js index b5d7d33..be5f5c9 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; module.exports = require('./src/js/main'); diff --git a/jquery.js b/jquery.js index f823e96..5ff3f20 100644 --- a/jquery.js +++ b/jquery.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; module.exports = require('./src/js/adaptor/jquery'); diff --git a/src/js/adaptor/global.js b/src/js/adaptor/global.js index 6f63bae..0438e36 100644 --- a/src/js/adaptor/global.js +++ b/src/js/adaptor/global.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var ps = require('../main'); diff --git a/src/js/adaptor/jquery.js b/src/js/adaptor/jquery.js index cdfbed4..673b428 100644 --- a/src/js/adaptor/jquery.js +++ b/src/js/adaptor/jquery.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var ps = require('../main') diff --git a/src/js/lib/class.js b/src/js/lib/class.js index 0210605..951b10b 100644 --- a/src/js/lib/class.js +++ b/src/js/lib/class.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; function oldAdd(element, className) { diff --git a/src/js/lib/dom.js b/src/js/lib/dom.js index a2adf3f..b929a17 100644 --- a/src/js/lib/dom.js +++ b/src/js/lib/dom.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var DOM = {}; diff --git a/src/js/lib/event-manager.js b/src/js/lib/event-manager.js index 7e737b0..d148ad8 100644 --- a/src/js/lib/event-manager.js +++ b/src/js/lib/event-manager.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var EventElement = function (element) { diff --git a/src/js/lib/guid.js b/src/js/lib/guid.js index bd9034e..84c7237 100644 --- a/src/js/lib/guid.js +++ b/src/js/lib/guid.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; module.exports = (function () { diff --git a/src/js/lib/helper.js b/src/js/lib/helper.js index 4a21c24..5a4b25e 100644 --- a/src/js/lib/helper.js +++ b/src/js/lib/helper.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var cls = require('./class') diff --git a/src/js/main.js b/src/js/main.js index cb0f6ff..e7159bc 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var destroy = require('./plugin/destroy') diff --git a/src/js/plugin/default-setting.js b/src/js/plugin/default-setting.js index 8043d7e..9497447 100644 --- a/src/js/plugin/default-setting.js +++ b/src/js/plugin/default-setting.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; module.exports = { diff --git a/src/js/plugin/destroy.js b/src/js/plugin/destroy.js index 126726b..a4d16d5 100644 --- a/src/js/plugin/destroy.js +++ b/src/js/plugin/destroy.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var d = require('../lib/dom') diff --git a/src/js/plugin/handler/click-rail.js b/src/js/plugin/handler/click-rail.js index 18692e3..31cab25 100644 --- a/src/js/plugin/handler/click-rail.js +++ b/src/js/plugin/handler/click-rail.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var h = require('../../lib/helper') diff --git a/src/js/plugin/handler/drag-scrollbar.js b/src/js/plugin/handler/drag-scrollbar.js index 13d7eff..3cd250e 100644 --- a/src/js/plugin/handler/drag-scrollbar.js +++ b/src/js/plugin/handler/drag-scrollbar.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var d = require('../../lib/dom') diff --git a/src/js/plugin/handler/keyboard.js b/src/js/plugin/handler/keyboard.js index bc459e8..e2bcea5 100644 --- a/src/js/plugin/handler/keyboard.js +++ b/src/js/plugin/handler/keyboard.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var h = require('../../lib/helper') diff --git a/src/js/plugin/handler/mouse-wheel.js b/src/js/plugin/handler/mouse-wheel.js index d298178..6a1a9fd 100644 --- a/src/js/plugin/handler/mouse-wheel.js +++ b/src/js/plugin/handler/mouse-wheel.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var instances = require('../instances') diff --git a/src/js/plugin/handler/native-scroll.js b/src/js/plugin/handler/native-scroll.js index 3c6b4ba..4f87ead 100644 --- a/src/js/plugin/handler/native-scroll.js +++ b/src/js/plugin/handler/native-scroll.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var instances = require('../instances') diff --git a/src/js/plugin/handler/selection.js b/src/js/plugin/handler/selection.js index 50080e1..b7c85b0 100644 --- a/src/js/plugin/handler/selection.js +++ b/src/js/plugin/handler/selection.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var h = require('../../lib/helper') diff --git a/src/js/plugin/handler/touch.js b/src/js/plugin/handler/touch.js index b241384..1318abb 100644 --- a/src/js/plugin/handler/touch.js +++ b/src/js/plugin/handler/touch.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var instances = require('../instances') diff --git a/src/js/plugin/initialize.js b/src/js/plugin/initialize.js index 77420ec..156ef1a 100644 --- a/src/js/plugin/initialize.js +++ b/src/js/plugin/initialize.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var cls = require('../lib/class') diff --git a/src/js/plugin/instances.js b/src/js/plugin/instances.js index e3738ab..851c590 100644 --- a/src/js/plugin/instances.js +++ b/src/js/plugin/instances.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var cls = require('../lib/class') diff --git a/src/js/plugin/update-geometry.js b/src/js/plugin/update-geometry.js index 7ae4179..b275cab 100644 --- a/src/js/plugin/update-geometry.js +++ b/src/js/plugin/update-geometry.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var cls = require('../lib/class') diff --git a/src/js/plugin/update-scroll.js b/src/js/plugin/update-scroll.js index fcc356e..b308465 100644 --- a/src/js/plugin/update-scroll.js +++ b/src/js/plugin/update-scroll.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var instances = require('./instances'); diff --git a/src/js/plugin/update.js b/src/js/plugin/update.js index 3c539ac..182c856 100644 --- a/src/js/plugin/update.js +++ b/src/js/plugin/update.js @@ -1,6 +1,3 @@ -/* Copyright (c) 2015 Hyunje Alex Jun and other contributors - * Licensed under the MIT License - */ 'use strict'; var d = require('../lib/dom')