Átállás

JUSTWEB létrehozása
This commit is contained in:
2017-08-24 10:42:06 +02:00
parent 159a71d3d0
commit e986f8cc23
120 changed files with 241221 additions and 239306 deletions
@@ -1,23 +1,42 @@
"use strict";
(function(root, factory) {
/* global define, DevExpress, jQuery */
if (typeof define === 'function' && define.amd) {
define(function(require, exports, module) {
module.exports = factory(require("jquery"), require("framework/html/presets").layoutSets, require("framework/html/layout_controller").DefaultLayoutController)
})
}
else {
module.exports = factory(
require("jquery"),
require("framework/html/presets").layoutSets,
require("framework/html/layout_controller").DefaultLayoutController
);
});
} else {
root.DevExpress.layouts = root.DevExpress.layouts || {};
root.DevExpress.layouts.EmptyLayout = factory(jQuery, DevExpress.framework.html.layoutSets, DevExpress.framework.html.DefaultLayoutController);
root.DevExpress.framework.html.EmptyLayoutController = root.DevExpress.layouts.EmptyLayout.EmptyLayoutController
root.DevExpress.layouts.EmptyLayout = factory(
jQuery,
DevExpress.framework.html.layoutSets,
DevExpress.framework.html.DefaultLayoutController
);
root.DevExpress.framework.html.EmptyLayoutController = root.DevExpress.layouts.EmptyLayout.EmptyLayoutController;
}
}(this, function($, layoutSets, DefaultLayoutController) {
}(window, function($, layoutSets, DefaultLayoutController) {
var exports = {};
var EmptyLayoutController = DefaultLayoutController.inherit({ctor: function(options) {
options = options || {};
options.name = options.name || "empty";
this.callBase(options)
}});
var EmptyLayoutController = DefaultLayoutController.inherit({
ctor: function(options) {
options = options || {};
options.name = options.name || "empty";
this.callBase(options);
}
});
layoutSets["empty"] = layoutSets["empty"] || [];
layoutSets["empty"].push({controller: new EmptyLayoutController});
layoutSets["empty"].push({
controller: new EmptyLayoutController()
});
exports.EmptyLayoutController = EmptyLayoutController;
return exports
return exports;
}));