Skip to content

Commit

Permalink
#25
Browse files Browse the repository at this point in the history
  • Loading branch information
gyuque committed Feb 3, 2014
1 parent b03079e commit c989519
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions inner/js/selection/selection-controller.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if (!window.mobmap) { window.mobmap={}; }

(function(aGlobal) {
'use strict';

function SelectionController() {

}

SelectionController.prototype = {

};

aGlobal.mobmap.SelectionController = SelectionController;
})(window);
15 changes: 15 additions & 0 deletions inner/js/selection/selection-pool.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if (!window.mobmap) { window.mobmap={}; }

(function(aGlobal) {
'use strict';

function SelectionPool() {

}

SelectionPool.prototype = {

};

aGlobal.mobmap.SelectionPool = SelectionPool;
})(window);

0 comments on commit c989519

Please sign in to comment.