mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-14 02:37:57 +01:00
removing todo
This commit is contained in:
parent
8115b50556
commit
7b5835f2e9
@ -140,54 +140,10 @@ function loadDesignerOptions(jsonConf) {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Todo: This must be reimplemented using JQuery ...
|
|
||||||
editor = {};
|
editor = {};
|
||||||
editor.WaitDialog = new Class({
|
editor.WaitDialog = new Class({
|
||||||
initialize:function () {
|
initialize:function () {
|
||||||
this.panel = this._buildPanel();
|
this.panel = this._buildPanel();
|
||||||
// this.parent({
|
|
||||||
// closeButton:false,
|
|
||||||
// destroyOnClose:true,
|
|
||||||
// autoOpen:false,
|
|
||||||
// useEscKey:false,
|
|
||||||
// title:'',
|
|
||||||
// onInitialize:function (wrapper) {
|
|
||||||
// wrapper.setStyle('opacity', 0);
|
|
||||||
// this.wrapper.setStyle('display', 'none');
|
|
||||||
// this.fx = new Fx.Morph(wrapper, {
|
|
||||||
// duration:100,
|
|
||||||
// transition:Fx.Transitions.Bounce.easeOut
|
|
||||||
// });
|
|
||||||
// },
|
|
||||||
//
|
|
||||||
// onBeforeOpen:function () {
|
|
||||||
// this.overlay = new Overlay(this.options.inject, {
|
|
||||||
// duration:this.options.duration
|
|
||||||
// });
|
|
||||||
// this.overlay.open();
|
|
||||||
// this.fx.start({
|
|
||||||
// 'margin-top':[-200, -100],
|
|
||||||
// opacity:[0, 1]
|
|
||||||
// }).chain(function () {
|
|
||||||
// this.fireEvent('show');
|
|
||||||
// this.wrapper.setStyle('display', 'block');
|
|
||||||
//
|
|
||||||
// }.bind(this));
|
|
||||||
// },
|
|
||||||
//
|
|
||||||
// onBeforeClose:function () {
|
|
||||||
// this.fx.start({
|
|
||||||
// 'margin-top':[-100, 0],
|
|
||||||
// opacity:0,
|
|
||||||
// duration:200
|
|
||||||
// }).chain(function () {
|
|
||||||
// this.fireEvent('hide');
|
|
||||||
// this.wrapper.setStyle('display', 'none');
|
|
||||||
//
|
|
||||||
// }.bind(this));
|
|
||||||
// }}
|
|
||||||
// );
|
|
||||||
// this.setContent(panel);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
_buildPanel:function () {
|
_buildPanel:function () {
|
||||||
@ -200,11 +156,11 @@ editor.WaitDialog = new Class({
|
|||||||
},
|
},
|
||||||
|
|
||||||
show:function () {
|
show:function () {
|
||||||
this.panel.modal();
|
this.panel.modal('show');
|
||||||
},
|
},
|
||||||
|
|
||||||
close: function() {
|
close: function() {
|
||||||
this.panel.hide();
|
this.panel.modal('hide');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user