Searched refs:popupData (Results 1 – 2 of 2) sorted by relevance
/plugin/popupviewer/ |
D | script.js | 130 _.presentViewerWithContent = function(e, popupData) { argument 132 … popupData = popupData || this.popupData || e.target.popupData; // Either as param or from object 145 if ( !popupData ) { return; } 149 e.target.popupData = popupData; 158 internal.log(popupData); 160 if ( popupData.isImage ) { 164 popupData.call = popupData.call || '_popup_load_image_meta'; 170 var wrapper = $('<div/>').load(BASE_URL, popupData, function() { 180 content.popupData = jQuery.extend(true, {}, popupData); 184 …_.resizePopup(popupData.width, popupData.height, additionalContent.innerHeight(), image, false, po… [all …]
|
/plugin/imageflow/ |
D | script.js | 175 this.popupData = {}; 245 this.popupData = imgData.popupData || {}; 246 this.popupData.id = this.popupData.id || this.imgData.id; 247 this.popupData.call = this.popupData.call || this.imgData.call; 248 this.popupData.isImage = this.popupData.isImage || this.imgData.isImage || false; 251 … this.popupData.src = this.popupData.isImage ? this.popupData.src || this.imgData.src : null; 252 … this.popupData.hasNextPrevious = true; // Allways display the next and previous handles.
|