Skip to content

Commit

Permalink
MDL-28406 blocks: added JS to prevent the addition of duplicate blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
andyjdavis committed Aug 5, 2011
1 parent 4b85dc1 commit 0683e9c
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions lib/javascript-static.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,21 +352,29 @@ M.util.init_select_autosubmit = function(Y, formid, selectid, nothing) {
// Make sure we have the form
if (form) {
// Create a function to handle our change event
var processchange = function(e, lastindex) {
if ((nothing===false || select.get('value') != nothing) && lastindex != select.get('selectedIndex')) {
var processchange = function(e, paramobject) {
if ((nothing===false || select.get('value') != nothing) && paramobject.lastindex != select.get('selectedIndex')) {
//prevent event bubbling and detach handlers to prevent multiple submissions caused by double clicking
e.halt();
paramobject.eventkeypress.detach();
paramobject.eventblur.detach();
paramobject.eventchangeorblur.detach();

this.submit();
}
};
// Attach the change event to the keypress, blur, and click actions.
// We don't use the change event because IE fires it on every arrow up/down
// event.... usability
Y.on('key', processchange, select, 'press:13', form, select.get('selectedIndex'));
select.on('blur', processchange, form, select.get('selectedIndex'));
var paramobject = new Object();
paramobject.lastindex = select.get('selectedIndex');
paramobject.eventkeypress = Y.on('key', processchange, select, 'press:13', form, paramobject);
paramobject.eventblur = select.on('blur', processchange, form, paramobject);
//little hack for chrome that need onChange event instead of onClick - see MDL-23224
if (Y.UA.webkit) {
select.on('change', processchange, form, select.get('selectedIndex'));
paramobject.eventchangeorblur = select.on('change', processchange, form, paramobject);
} else {
select.on('click', processchange, form, select.get('selectedIndex'));
paramobject.eventchangeorblur = select.on('click', processchange, form, paramobject);
}
}
}
Expand Down

0 comments on commit 0683e9c

Please sign in to comment.