2012-06-19 15:47:35 +00:00
|
|
|
/*\
|
2012-07-14 14:57:36 +00:00
|
|
|
title: $:/core/modules/utils/dom/popup.js
|
2012-06-19 15:47:35 +00:00
|
|
|
type: application/javascript
|
|
|
|
module-type: utils
|
|
|
|
|
2012-08-03 14:09:48 +00:00
|
|
|
Module that creates a $tw.utils.Popup object prototype that manages popups in the browser
|
2012-06-19 15:47:35 +00:00
|
|
|
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
/*
|
2012-07-14 14:52:35 +00:00
|
|
|
Creates a Popup object with these options:
|
2012-06-19 15:47:35 +00:00
|
|
|
wiki: the wiki to use for resolving tiddler titles
|
|
|
|
rootElement: the DOM element to which the popup zapper should be attached
|
|
|
|
*/
|
2012-07-14 14:52:35 +00:00
|
|
|
var Popup = function(options) {
|
2012-06-19 15:47:35 +00:00
|
|
|
options = options || {};
|
|
|
|
this.wiki = options.wiki;
|
|
|
|
this.rootElement = options.rootElement || document.body;
|
|
|
|
this.popupTextRef = null;
|
|
|
|
};
|
|
|
|
|
2012-07-14 14:52:35 +00:00
|
|
|
Popup.prototype.popup = function(stateTextRef) {
|
2012-06-19 15:47:35 +00:00
|
|
|
this.cancel();
|
|
|
|
this.popupTextRef = stateTextRef;
|
|
|
|
this.rootElement.addEventListener("click",this,true);
|
|
|
|
};
|
|
|
|
|
2012-07-14 14:52:35 +00:00
|
|
|
Popup.prototype.handleEvent = function(event) {
|
2012-06-19 15:47:35 +00:00
|
|
|
if(event.type === "click") {
|
2012-06-19 15:50:10 +00:00
|
|
|
this.rootElement.removeEventListener("click",this,true);
|
2012-06-19 15:47:35 +00:00
|
|
|
this.cancel();
|
|
|
|
}
|
2012-06-19 15:56:29 +00:00
|
|
|
};
|
2012-06-19 15:47:35 +00:00
|
|
|
|
2012-07-14 14:52:35 +00:00
|
|
|
Popup.prototype.cancel = function() {
|
2012-06-19 15:47:35 +00:00
|
|
|
if(this.popupTextRef) {
|
|
|
|
this.wiki.deleteTextReference(this.popupTextRef);
|
|
|
|
this.popupTextRef = null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-07-14 14:52:35 +00:00
|
|
|
exports.Popup = Popup;
|
2012-06-19 15:47:35 +00:00
|
|
|
|
|
|
|
})();
|