2014-01-16 23:28:58 +01:00
|
|
|
function Popup(element, mask) {
|
2014-01-16 21:30:57 +01:00
|
|
|
var self = this;
|
2014-01-16 23:28:58 +01:00
|
|
|
var escapeKeyHandler = null;
|
|
|
|
var enterKeyHandler = null;
|
2014-01-16 21:30:57 +01:00
|
|
|
|
2014-01-16 23:28:58 +01:00
|
|
|
this.open = function(complete, disableMaskClick) {
|
2014-01-16 21:30:57 +01:00
|
|
|
mask.fadeIn(POPUP_SHOW_DURATION);
|
|
|
|
element.fadeIn(POPUP_SHOW_DURATION, complete);
|
2014-01-16 23:28:58 +01:00
|
|
|
|
|
|
|
keyboardShortcutsEnabled = false;
|
|
|
|
keyboardEscapeEnterEnabled = true;
|
|
|
|
|
|
|
|
document.body.removeEventListener('touchmove', prevent, false);
|
2014-01-16 21:30:57 +01:00
|
|
|
mask.bind("onButtonClick", function() { self.close() });
|
2014-01-16 23:28:58 +01:00
|
|
|
if (escapeKeyHandler) $(document).bind("onEscapeKey", escapeKeyHandler);
|
|
|
|
if (enterKeyHandler) $(document).bind("onEnterKey", enterKeyHandler);
|
2014-01-16 21:30:57 +01:00
|
|
|
}
|
2014-01-16 23:28:58 +01:00
|
|
|
|
2014-01-16 21:30:57 +01:00
|
|
|
this.close = function(complete) {
|
|
|
|
mask.fadeOut(POPUP_SHOW_DURATION);
|
2014-01-16 23:28:58 +01:00
|
|
|
element.fadeOut(POPUP_SHOW_DURATION, complete);
|
|
|
|
|
|
|
|
keyboardShortcutsEnabled = true;
|
|
|
|
keyboardEscapeEnterEnabled = false;
|
2014-01-16 21:30:57 +01:00
|
|
|
|
2014-01-16 23:28:58 +01:00
|
|
|
document.body.addEventListener('touchmove', prevent, false);
|
2014-01-16 21:30:57 +01:00
|
|
|
mask.unbind("onButtonClick");
|
2014-01-16 23:28:58 +01:00
|
|
|
if (escapeKeyHandler) $(document).unbind("onEscapeKey");
|
|
|
|
if (enterKeyHandler) $(document).unbind("onEnterKey");
|
2014-01-16 21:30:57 +01:00
|
|
|
}
|
2014-01-16 23:28:58 +01:00
|
|
|
|
|
|
|
this.setEscapeKeyHandler = function(hnd) { escapeKeyHandler = hnd; }
|
|
|
|
this.setEnterKeyHandler = function(hnd) { enterKeyHandler = hnd; }
|
2014-01-09 17:05:03 +01:00
|
|
|
}
|