Merge branch 'MDL-45359-26' of git://github.com/andrewnicols/moodle into MOODLE_26_STABLE

This commit is contained in:
Damyon Wiese
2014-05-05 17:25:05 +08:00
4 changed files with 10 additions and 4 deletions
@@ -186,8 +186,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
@@ -186,8 +186,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;
}
},
+3 -1
View File
@@ -157,8 +157,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;
}
},