41 lines
608 B
JavaScript
41 lines
608 B
JavaScript
|
|
(function (context, $) {
|
|
|
|
"use strict";
|
|
|
|
context.JK = context.JK || {};
|
|
context.JK.GearWizard = function (app) {
|
|
|
|
var $dialog = null;
|
|
|
|
function beforeShow() {
|
|
}
|
|
|
|
function afterShow() {
|
|
|
|
}
|
|
|
|
function afterHide() {
|
|
|
|
}
|
|
|
|
function events() {
|
|
}
|
|
|
|
function initialize() {
|
|
|
|
var dialogBindings = { beforeShow: beforeShow, afterShow: afterShow, afterHide: afterHide };
|
|
|
|
app.bindDialog('gear-wizard', dialogBindings);
|
|
|
|
$dialog = $('#gear-wizard-dialog');
|
|
|
|
events();
|
|
}
|
|
|
|
this.initialize = initialize;
|
|
|
|
return this;
|
|
};
|
|
|
|
})(window, jQuery); |