doodle3d-client/js/Popup.js

39 lines
1.0 KiB
JavaScript
Raw Normal View History

function Popup(element, mask) {
2014-01-16 21:30:57 +01:00
var self = this;
this.open = function(complete, disableMaskClick) {
2014-01-16 21:30:57 +01:00
mask.fadeIn(POPUP_SHOW_DURATION);
element.fadeIn(POPUP_SHOW_DURATION, complete);
keyboardShortcutsEnabled = false;
keyboardEscapeEnterEnabled = true;
document.body.removeEventListener('touchmove', prevent, false);
mask.bind("onButtonClick", self.cancel);
$(document).bind("onEscapeKey", self.cancel);
$(document).bind("onEnterKey", self.commit);
2014-01-16 21:30:57 +01:00
}
2014-01-16 21:30:57 +01:00
this.close = function(complete) {
mask.fadeOut(POPUP_SHOW_DURATION);
element.fadeOut(POPUP_SHOW_DURATION, complete);
keyboardShortcutsEnabled = true;
keyboardEscapeEnterEnabled = false;
2014-01-16 21:30:57 +01:00
document.body.addEventListener('touchmove', prevent, false);
mask.unbind("onButtonClick", self.cancel);
$(document).unbind("onEscapeKey", self.cancel);
$(document).unbind("onEnterKey", self.commit);
2014-01-16 21:30:57 +01:00
}
this.cancel = function() {
self.close();
$(element).trigger('onPopupCancel');
}
this.commit = function() {
self.close();
$(element).trigger('onPopupCommit');
}
2014-01-09 17:05:03 +01:00
}