Merge branch 'MDL-45359-master' of git://github.com/andrewnicols/moodle

Conflicts:
	lib/yui/build/moodle-core-notification-dialogue/moodle-core-notification-dialogue-min.js
This commit is contained in:
Damyon Wiese 2014-05-05 17:24:08 +08:00
commit 6d8617bed9
4 changed files with 11 additions and 5 deletions

View File

@ -171,8 +171,10 @@ Y.extend(DIALOGUE, Y.Panel, {
// Only set the zindex if we found a wrapper.
zindexvalue = (highestzindex + 1).toString();
bb.setStyle('zIndex', zindexvalue);
ol.setStyle('zIndex', zindexvalue);
this.set('zIndex', zindexvalue);
if (this.get('modal')) {
ol.setStyle('zIndex', zindexvalue);
}
this._calculatedzindex = true;
}
},

File diff suppressed because one or more lines are too long

View File

@ -171,8 +171,10 @@ Y.extend(DIALOGUE, Y.Panel, {
// Only set the zindex if we found a wrapper.
zindexvalue = (highestzindex + 1).toString();
bb.setStyle('zIndex', zindexvalue);
ol.setStyle('zIndex', zindexvalue);
this.set('zIndex', zindexvalue);
if (this.get('modal')) {
ol.setStyle('zIndex', zindexvalue);
}
this._calculatedzindex = true;
}
},

View File

@ -142,8 +142,10 @@ Y.extend(DIALOGUE, Y.Panel, {
// Only set the zindex if we found a wrapper.
zindexvalue = (highestzindex + 1).toString();
bb.setStyle('zIndex', zindexvalue);
ol.setStyle('zIndex', zindexvalue);
this.set('zIndex', zindexvalue);
if (this.get('modal')) {
ol.setStyle('zIndex', zindexvalue);
}
this._calculatedzindex = true;
}
},