')
+ .append(new C('
')
+ .append(new C(''))
+ .append(new C('
'))
+ .append(new C('')));
Y.one(document.body).append(config.notificationBase);
config.srcNode = '#'+id;
config.width = config.width || '400px';
@@ -74,27 +79,28 @@ Y.extend(DIALOGUE, Y.Panel, {
this.show();
},
visibilityChanged : function(e) {
- switch (e.attrName) {
- case 'visible':
- this.get('maskNode').addClass(CSS.LIGHTBOX);
- if (this.get('center') && !e.prevVal && e.newVal) {
- this.centerDialogue();
- }
- if (this.get('draggable')) {
- var titlebar = '#' + this.get('id') + ' .' + CSS.HEADER;
- this.plug(Y.Plugin.Drag, {handles : [titlebar]});
- Y.one(titlebar).setStyle('cursor', 'move');
- }
- break;
+ var titlebar;
+ if (e.attrName === 'visible') {
+ this.get('maskNode').addClass(CSS.LIGHTBOX);
+ if (this.get('center') && !e.prevVal && e.newVal) {
+ this.centerDialogue();
+ }
+ if (this.get('draggable')) {
+ titlebar = '#' + this.get('id') + ' .' + CSS.HEADER;
+ this.plug(Y.Plugin.Drag, {handles : [titlebar]});
+ Y.one(titlebar).setStyle('cursor', 'move');
+ }
}
},
centerDialogue : function() {
- var bb = this.get('boundingBox'), hidden = bb.hasClass(DIALOGUE_PREFIX+'-hidden');
+ var bb = this.get('boundingBox'),
+ hidden = bb.hasClass(DIALOGUE_PREFIX+'-hidden'),
+ x, y;
if (hidden) {
bb.setStyle('top', '-1000px').removeClass(DIALOGUE_PREFIX+'-hidden');
}
- var x = Math.max(Math.round((bb.get('winWidth') - bb.get('offsetWidth'))/2), 15);
- var y = Math.max(Math.round((bb.get('winHeight') - bb.get('offsetHeight'))/2), 15) + Y.one(window).get('scrollTop');
+ x = Math.max(Math.round((bb.get('winWidth') - bb.get('offsetWidth'))/2), 15);
+ y = Math.max(Math.round((bb.get('winHeight') - bb.get('offsetHeight'))/2), 15) + Y.one(window).get('scrollTop');
if (hidden) {
bb.addClass(DIALOGUE_PREFIX+'-hidden');
@@ -131,13 +137,13 @@ Y.extend(DIALOGUE, Y.Panel, {
}
});
-var ALERT = function(config) {
+ALERT = function(config) {
config.closeButton = false;
ALERT.superclass.constructor.apply(this, [config]);
};
Y.extend(ALERT, DIALOGUE, {
_enterKeypress : null,
- initializer : function(config) {
+ initializer : function() {
this.publish('complete');
var yes = C('
'),
content = C('
')
@@ -151,7 +157,7 @@ Y.extend(ALERT, DIALOGUE, {
this._enterKeypress = Y.on('key', this.submit, window, 'down:13', this);
yes.on('click', this.submit, this);
},
- submit : function(e, outcome) {
+ submit : function() {
this._enterKeypress.detach();
this.fire('complete');
this.hide();
@@ -182,13 +188,13 @@ Y.extend(ALERT, DIALOGUE, {
}
});
-var CONFIRM = function(config) {
+CONFIRM = function(config) {
CONFIRM.superclass.constructor.apply(this, [config]);
};
Y.extend(CONFIRM, DIALOGUE, {
_enterKeypress : null,
_escKeypress : null,
- initializer : function(config) {
+ initializer : function() {
this.publish('complete');
this.publish('complete-yes');
this.publish('complete-no');
@@ -244,7 +250,7 @@ Y.extend(CONFIRM, DIALOGUE, {
});
Y.augment(CONFIRM, Y.EventTarget);
-var EXCEPTION = function(config) {
+EXCEPTION = function(config) {
config.width = config.width || (M.cfg.developerdebug)?Math.floor(Y.one(document.body).get('winWidth')/3)+'px':null;
config.closeButton = true;
EXCEPTION.superclass.constructor.apply(this, [config]);
@@ -253,20 +259,21 @@ Y.extend(EXCEPTION, DIALOGUE, {
_hideTimeout : null,
_keypress : null,
initializer : function(config) {
+ var content,
+ self = this,
+ delay = this.get('hideTimeoutDelay');
this.get(BASE).addClass('moodle-dialogue-exception');
this.setStdModContent(Y.WidgetStdMod.HEADER, '', Y.WidgetStdMod.REPLACE);
- var content = C('
')
- .append(C('
'+this.get('message')+'
'))
- .append(C('
File: '+this.get('fileName')+'
'))
- .append(C('
Line: '+this.get('lineNumber')+'
'))
- .append(C('
Stack trace: '+this.get('stack')+' '));
+ content = C('
')
+ .append(C('
'+this.get('message')+'
'))
+ .append(C('
File: '+this.get('fileName')+'
'))
+ .append(C('
Line: '+this.get('lineNumber')+'
'))
+ .append(C('
Stack trace: '+this.get('stack')+' '));
if (M.cfg.developerdebug) {
content.all('.moodle-exception-param').removeClass('hidden');
}
this.setStdModContent(Y.WidgetStdMod.BODY, content, Y.WidgetStdMod.REPLACE);
- var self = this;
- var delay = this.get('hideTimeoutDelay');
if (delay) {
this._hideTimeout = setTimeout(function(){self.hide();}, delay);
}
@@ -276,8 +283,10 @@ Y.extend(EXCEPTION, DIALOGUE, {
this.centerDialogue();
},
visibilityChanged : function(e) {
- if (e.attrName == 'visible' && e.prevVal && !e.newVal) {
- if (this._keypress) this._keypress.detach();
+ if (e.attrName === 'visible' && e.prevVal && !e.newVal) {
+ if (this._keypress) {
+ this._keypress.detach();
+ }
var self = this;
setTimeout(function(){self.destroy();}, 1000);
}
@@ -300,10 +309,12 @@ Y.extend(EXCEPTION, DIALOGUE, {
},
stack : {
setter : function(str) {
- var lines = str.split("\n");
- var pattern = new RegExp('^(.+)@('+M.cfg.wwwroot+')?(.{0,75}).*:(\\d+)$');
- for (var i in lines) {
- lines[i] = lines[i].replace(pattern, "
ln: $4
$3
$1
");
+ var lines = str.split("\n"),
+ pattern = new RegExp('^(.+)@('+M.cfg.wwwroot+')?(.{0,75}).*:(\\d+)$'),
+ i;
+ for (i in lines) {
+ lines[i] = lines[i].replace(pattern,
+ "
ln: $4
$3
$1
");
}
return lines.join('');
},
@@ -316,7 +327,7 @@ Y.extend(EXCEPTION, DIALOGUE, {
}
});
-var AJAXEXCEPTION = function(config) {
+AJAXEXCEPTION = function(config) {
config.name = config.name || 'Error';
config.closeButton = true;
AJAXEXCEPTION.superclass.constructor.apply(this, [config]);
@@ -324,20 +335,21 @@ var AJAXEXCEPTION = function(config) {
Y.extend(AJAXEXCEPTION, DIALOGUE, {
_keypress : null,
initializer : function(config) {
+ var content,
+ self = this,
+ delay = this.get('hideTimeoutDelay');
this.get(BASE).addClass('moodle-dialogue-exception');
this.setStdModContent(Y.WidgetStdMod.HEADER, '', Y.WidgetStdMod.REPLACE);
- var content = C('
')
- .append(C('
'+this.get('error')+'
'))
- .append(C('
URL: '+this.get('reproductionlink')+'
'))
- .append(C('
Debug info: '+this.get('debuginfo')+'
'))
- .append(C('
Stack trace: '+this.get('stacktrace')+' '));
+ content = C('
')
+ .append(C('
'+this.get('error')+'
'))
+ .append(C('
URL: '+this.get('reproductionlink')+'
'))
+ .append(C('
Debug info: '+this.get('debuginfo')+'
'))
+ .append(C('
Stack trace: '+this.get('stacktrace')+' '));
if (M.cfg.developerdebug) {
content.all('.moodle-exception-param').removeClass('hidden');
}
this.setStdModContent(Y.WidgetStdMod.BODY, content, Y.WidgetStdMod.REPLACE);
- var self = this;
- var delay = this.get('hideTimeoutDelay');
if (delay) {
this._hideTimeout = setTimeout(function(){self.hide();}, delay);
}
@@ -346,7 +358,7 @@ Y.extend(AJAXEXCEPTION, DIALOGUE, {
this.centerDialogue();
},
visibilityChanged : function(e) {
- if (e.attrName == 'visible' && e.prevVal && !e.newVal) {
+ if (e.attrName === 'visible' && e.prevVal && !e.newVal) {
var self = this;
this._keypress.detach();
setTimeout(function(){self.destroy();}, 1000);