mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
31 lines
726 B
Plaintext
31 lines
726 B
Plaintext
|
|
/**
|
|
* 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 || {}));
|