Update TouchManager.js

This commit is contained in:
Dennis Eichhorn 2016-05-09 14:02:10 +02:00
parent d11e9cf415
commit b080f7d4ad

View File

@ -21,11 +21,11 @@
jsOMS.UI.Input.Touch.TouchManager = function (app) jsOMS.UI.Input.Touch.TouchManager = function (app)
{ {
this.app = app; this.app = app;
this.surfaces = {}; this.swipe = new jsOMS.UI.Input.Touch.SwipeManager(app);
}; };
jsOMS.UI.FormManager.prototype.add = function (id, callback) jsOMS.UI.Input.Touch.TouchManager.prototype.getSwipeManager = function ()
{ {
return this.swipe;
}; };
}(window.jsOMS = window.jsOMS || {})); }(window.jsOMS = window.jsOMS || {}));