mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 09:58:39 +00:00
Update TouchManager.js
This commit is contained in:
parent
73529b7899
commit
d11e9cf415
|
|
@ -1 +1,31 @@
|
|||
// todo: implement
|
||||
|
||||
/**
|
||||
* Touch manager class.
|
||||
*
|
||||
* @author OMS Development Team <dev@oms.com>
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
* @copyright 2013 Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0 * @since 1.0.0
|
||||
*/
|
||||
(function (jsOMS, undefined)
|
||||
{
|
||||
jsOMS.Autoloader.defineNamespace('jsOMS.UI.Input.Touch');
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||
*/
|
||||
jsOMS.UI.Input.Touch.TouchManager = function (app)
|
||||
{
|
||||
this.app = app;
|
||||
this.surfaces = {};
|
||||
};
|
||||
|
||||
jsOMS.UI.FormManager.prototype.add = function (id, callback)
|
||||
{
|
||||
};
|
||||
|
||||
}(window.jsOMS = window.jsOMS || {}));
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user