mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 09:58:39 +00:00
32 lines
773 B
JavaScript
32 lines
773 B
JavaScript
|
|
/**
|
|
* 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.swipe = new jsOMS.UI.Input.Touch.SwipeManager(app);
|
|
};
|
|
|
|
jsOMS.UI.Input.Touch.TouchManager.prototype.getSwipeManager = function ()
|
|
{
|
|
return this.swipe;
|
|
};
|
|
}(window.jsOMS = window.jsOMS || {}));
|