Lines Matching refs:params

86 		html: function(content, params) {  argument
88 if (params === undefined) var params = {};
99 if (params.can_resize === undefined) params.can_resize = true;
100 if (params.fade_in === undefined) params.use_fade = true;
102 if (params.fullscreen) {
103 params.width = '100%';
104 params.height = '100%';
114 if (params.width) var width = params.width;
117 if (params.height) var height = params.height;
124 active.params = params;
149 show: function(text, title, params) { argument
150 showInit(title, params, function() {
151 _pub.html(text, active.params);
160 showURL: function(url, title, params) { argument
161 showInit(title, params, function() {
166 plugin.render(url, active.params);
236 if (active.params.can_resize) {
243 if (active.params.constrain) height = height * (x/width);
247 if (active.params.constrain) width = width * (y/height);
266 updateObject: function(obj, params) { argument
267 for (var i in params) obj[i] = params[i];
445 var params = new Object();
446 if (!query) return params;
471 params[key] = val;
473 return params;
481 var params = _pub.parseQuery(t.substr(5,999));
482 if (params.target) var url = params.target;
483 else if (this.target && !params.ignore_target) var url = this.target;
486 if (_pub.inherit_frames && window.parent) window.parent.iBox.showURL(url, title, params);
487 else _pub.showURL(url, title, params);
537 params = {position: 'absolute', top: 0, left: 0, width: '100%'}; variable
538 _pub.updateObject(els.overlay.style, params);
614 var showInit = function(title, params, callback) { argument
616 if (params === undefined) var params = {};
620 active.params = params;
728 render: function(url, params) { argument
735 _pub.html(document.createTextNode('There was an error loading the document.'), params);
740 _pub.html(elemSrc, params);
759 render: function(url, params) { argument
768 _pub.html(document.createTextNode('There was an error loading the document.'), params);
783 render: function(url, params) { argument
787 params.width = 425;
788 params.height = 355;
789 params.constrain = true;
791 _pub.html(html, params);
803 render: function(url, params) { argument
810 _pub.html(_pub.http.responseText, params);
813 _pub.html(document.createTextNode('There was an error loading the document.'), params);
822 _pub.html(document.createTextNode('There was an error loading the document.'), params);