mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 09:58:39 +00:00
Create SwipeManager
This commit is contained in:
parent
b080f7d4ad
commit
71cbbeed17
30
UI/Input/Touch/SwipeManager
Normal file
30
UI/Input/Touch/SwipeManager
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
/**
|
||||
* Swipe 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.SwipeManager = function (app)
|
||||
{
|
||||
this.app = app;
|
||||
this.surface = {};
|
||||
};
|
||||
|
||||
jsOMS.UI.Input.Touch.SwipeManager.prototype.add = function (surface, id, gesture, callback)
|
||||
{
|
||||
};
|
||||
}(window.jsOMS = window.jsOMS || {}));
|
||||
Loading…
Reference in New Issue
Block a user