Merge branch 'MDL-43595-master' of git://github.com/damyon/moodle
This commit is contained in:
+2
-1
@@ -1649,7 +1649,8 @@ Y.extend(DROPDOWN, M.core.dialogue, {
|
||||
|
||||
body.on('clickoutside', function(e) {
|
||||
if (this.get('visible')) {
|
||||
if (e.target !== button && e.target.ancestor() !== button) {
|
||||
// Note: we need to compare ids because for some reason - sometimes button is an Object, not a Y.Node.
|
||||
if (e.target.get('id') !== button.get('id') && e.target.ancestor().get('id') !== button.get('id')) {
|
||||
e.preventDefault();
|
||||
this.hide();
|
||||
}
|
||||
|
||||
+6
-6
File diff suppressed because one or more lines are too long
+2
-1
@@ -1649,7 +1649,8 @@ Y.extend(DROPDOWN, M.core.dialogue, {
|
||||
|
||||
body.on('clickoutside', function(e) {
|
||||
if (this.get('visible')) {
|
||||
if (e.target !== button && e.target.ancestor() !== button) {
|
||||
// Note: we need to compare ids because for some reason - sometimes button is an Object, not a Y.Node.
|
||||
if (e.target.get('id') !== button.get('id') && e.target.ancestor().get('id') !== button.get('id')) {
|
||||
e.preventDefault();
|
||||
this.hide();
|
||||
}
|
||||
|
||||
@@ -46,7 +46,8 @@ Y.extend(DROPDOWN, M.core.dialogue, {
|
||||
|
||||
body.on('clickoutside', function(e) {
|
||||
if (this.get('visible')) {
|
||||
if (e.target !== button && e.target.ancestor() !== button) {
|
||||
// Note: we need to compare ids because for some reason - sometimes button is an Object, not a Y.Node.
|
||||
if (e.target.get('id') !== button.get('id') && e.target.ancestor().get('id') !== button.get('id')) {
|
||||
e.preventDefault();
|
||||
this.hide();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user