From c989519cab0d0e7d472f608ed856c98b6895bfbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8A=E5=B1=B1=20=E6=99=BA=E5=A3=AB?= Date: Mon, 3 Feb 2014 15:35:16 +0900 Subject: [PATCH] #25 --- inner/js/selection/selection-controller.js | 15 +++++++++++++++ inner/js/selection/selection-pool.js | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 inner/js/selection/selection-controller.js create mode 100644 inner/js/selection/selection-pool.js diff --git a/inner/js/selection/selection-controller.js b/inner/js/selection/selection-controller.js new file mode 100644 index 0000000..5b1d863 --- /dev/null +++ b/inner/js/selection/selection-controller.js @@ -0,0 +1,15 @@ +if (!window.mobmap) { window.mobmap={}; } + +(function(aGlobal) { + 'use strict'; + + function SelectionController() { + + } + + SelectionController.prototype = { + + }; + + aGlobal.mobmap.SelectionController = SelectionController; +})(window); \ No newline at end of file diff --git a/inner/js/selection/selection-pool.js b/inner/js/selection/selection-pool.js new file mode 100644 index 0000000..9c126b8 --- /dev/null +++ b/inner/js/selection/selection-pool.js @@ -0,0 +1,15 @@ +if (!window.mobmap) { window.mobmap={}; } + +(function(aGlobal) { + 'use strict'; + + function SelectionPool() { + + } + + SelectionPool.prototype = { + + }; + + aGlobal.mobmap.SelectionPool = SelectionPool; +})(window); \ No newline at end of file