rem stringlengths 0 126k | add stringlengths 0 441k | context stringlengths 15 136k |
|---|---|---|
find: function( selector ) { if ( this.length === 1 ) { var ret = this.pushStack( [], "find", selector ); ret.length = 0; jQuery.find( selector, this[0], ret ); return ret; } else { return this.pushStack( jQuery.unique(jQuery.map(this, function(elem){ return jQuery.find( selector, elem ); })), "find", selector ); } }, | }(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;[0,0].sort(function(){baseHasDuplicate=false;return 0});var Sizzle=function(sele... | find: function( selector ) { if ( this.length === 1 ) { var ret = this.pushStack( [], "find", selector ); ret.length = 0; jQuery.find( selector, this[0], ret ); return ret; } else { return this.pushStack( jQuery.unique(jQuery.map(this, function(elem){ return jQuery.find( selector, elem ); })), "find",... |
if (document.createTreeWalker && NodeFilter) { return this._iteratorSearchAll(rootNode, filter, deepScan); } else { return this._recursionSearchAll(rootNode, filter, deepScan); | if (document.createTreeWalker && NodeFilter) { return this._iteratorSearchAll(rootNode, filter, deepScan); } else { return this._recursionSearchAll(rootNode, filter, deepScan); } | findAll : function(rootNode, filter, deepScan) { this._Lang.assertType(filter, "function"); deepScan = !!deepScan; if (document.createTreeWalker && NodeFilter) { return this._iteratorSearchAll(rootNode, filter, deepScan); } else { return this._recursionSearchAll(roo... |
} | findAll : function(rootNode, filter, deepScan) { this._Lang.assertType(filter, "function"); deepScan = !!deepScan; if (document.createTreeWalker && NodeFilter) { return this._iteratorSearchAll(rootNode, filter, deepScan); } else { return this._recursionSearchAll(roo... | |
fluid.findAncestor = function (element, test) { element = fluid.unwrap(element); while (element) { if (test(element)) { return element; } element = element.parentNode; } }; | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | fluid.findAncestor = function (element, test) { element = fluid.unwrap(element); while (element) { if (test(element)) { return element; } element = element.parentNode; } }; |
for(var att, map, parent = el[PARENT_NODE];parent !== null;){ | for(var att, undef, map, parent = el[PARENT_NODE]; parent !== null;) { | function findAncestorWithAttribute(el, attName, value) { for(var att, map, parent = el[PARENT_NODE];parent !== null;){ map = parent.attributes; if(!map || !hasNamedItem) { return null; } att = map.getNamedItem(attName); if(att && att.speci... |
if(!map || !hasNamedItem) { | if(!map) { | function findAncestorWithAttribute(el, attName, value) { for(var att, map, parent = el[PARENT_NODE];parent !== null;){ map = parent.attributes; if(!map || !hasNamedItem) { return null; } att = map.getNamedItem(attName); if(att && att.speci... |
att = map.getNamedItem(attName); | att = map[attName]; | function findAncestorWithAttribute(el, attName, value) { for(var att, map, parent = el[PARENT_NODE];parent !== null;){ map = parent.attributes; if(!map || !hasNamedItem) { return null; } att = map.getNamedItem(attName); if(att && att.speci... |
if(att.value === value || (value === undefined)) { | if(att.value === value || value === undef) { | function findAncestorWithAttribute(el, attName, value) { for(var att, map, parent = el[PARENT_NODE];parent !== null;){ map = parent.attributes; if(!map || !hasNamedItem) { return null; } att = map.getNamedItem(attName); if(att && att.speci... |
} } else if(parent.getAttribute) { att = parent.getAttribute(attName, 2); if(att === value || value === undef && att !== null) { return parent | function findAncestorWithAttribute(el, attName, value) { for(var att, map, parent = el[PARENT_NODE];parent !== null;){ map = parent.attributes; if(!map || !hasNamedItem) { return null; } att = map.getNamedItem(attName); if(att && att.speci... | |
for(var parent = el[PARENT_NODE];parent !== limit; ){ | for(var parent = el[PARENT_NODE];parent && parent !== limit; ){ | function findAncestorWithTagName(el, tag, limit) { tag = tag[caseTransform](); limit = limit || null; for(var parent = el[PARENT_NODE];parent !== limit; ){ if( parent.tagName === tag ) return parent; parent = parent[PARENT_NODE]; } return null;... |
itemId = itemId.replace(/\./g, "\\."); | itemId = itemId.replace(/\./g, "\\.").replace(/:/g, "\\:"); | findById : function(fragment, itemId) { //we have to escape here if (fragment === document) { return this.byId(itemId); } if (fragment.nodeType == 1 && fragment.querySelector) { //we can use the query selector here if (fragment.id && fragment.id === itemI... |
if (fragment.id && fragment.id === itemId) return fragment; if (myfaces._impl._util._Lang.isString(itemId)) { itemId = itemId.replace(/\./g, "\\.").replace(/:/g, "\\:"); | try { var newItemId = itemId; if (fragment.id && fragment.id === itemId) return fragment; if (myfaces._impl._util._Lang.isString(newItemId)) { newItemId = newItemId.replace(/\./g, "\\.").replace(/:/g, "\\:"); } return fragment.querySelector("#" + newItemId); } catch(e) { | findById : function(fragment, itemId) { //we have to escape here if (fragment === document) { return this.byId(itemId); } if (fragment.nodeType == 1 && fragment.querySelector) { //we can use the query selector here if (fragment.id && fragment.id === itemI... |
return fragment.querySelector("#" + itemId); | findById : function(fragment, itemId) { //we have to escape here if (fragment === document) { return this.byId(itemId); } if (fragment.nodeType == 1 && fragment.querySelector) { //we can use the query selector here if (fragment.id && fragment.id === itemI... | |
if (fragment === document) { return this.byId(itemId); | if (fragment.getElementById) { return fragment.getElementById(itemId); | findById : function(fragment, itemId) { //we have to escape here if (fragment === document) { return this.byId(itemId); } if (fragment.nodeType == 1 && fragment.querySelector) { try { //we can use the query selector here var newItemId =... |
name = name.replace(/\./g, "\\."); | name = name.replace(/\./g, "\\.").replace(/:/g, "\\:");; | findByName : function(fragment, name, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = function(node) { return node.name && _Lang.equalsIgnoreCase(node.name, name); }; try { deepScan = !!deepScan; if (deepScan && fragment.querySelectorAll)... |
if (deepScan && _Lang.exists(fragment, "querySelectorAll")) { try { var newName = name; if (_Lang.isString(newName)) { newName = newName.replace(/\./g, "\\.").replace(/:/g, "\\:"); } var result = fragment.querySelectorAll("[name=" + newName + "]"); if (fragment.nodeType == 1 && filter(fragment)) { result = (result == n... | findByName : function(fragment, name, deepScan) { var _Lang = this._Lang; var filter = function(node) { return node.name && _Lang.equalsIgnoreCase(node.name, name); }; try { deepScan = !!deepScan; //elements byName is the fastest if (deepScan ... | |
} | findByName : function(fragment, name, deepScan) { var _Lang = this._Lang; var filter = function(node) { return node.name && _Lang.equalsIgnoreCase(node.name, name); }; try { deepScan = !!deepScan; //elements byName is the fastest if (deepScan ... | |
if (deepScan && fragment.getElementsByName) { | if (deepScan && _Lang.exists(fragment, "getElementsByName")) { | findByName : function(fragment, name, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = function(node) { return node.name && _Lang.equalsIgnoreCase(node.name, name); }; try { deepScan = !!deepScan; //elements byName is the fastest ... |
if (deepScan && fragment.querySelectorAll) { | if (deepScan && _Lang.exists(fragment, "querySelectorAll")) { | findByName : function(fragment, name, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = function(node) { return node.name && _Lang.equalsIgnoreCase(node.name, name); }; try { deepScan = !!deepScan; //elements byName is the fastest ... |
; | findByName : function(fragment, name, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = function(node) { return node.name && _Lang.equalsIgnoreCase(node.name, name); }; try { deepScan = !!deepScan; //elements byName is the fastest ... | |
if (_Lang.isString(name)) { name = name.replace(/\./g, "\\.").replace(/:/g, "\\:");; | try { var newName = name; if (_Lang.isString(newName)) { newName = newName.replace(/\./g, "\\.").replace(/:/g, "\\:"); ; } var result = fragment.querySelectorAll("[name=" + newName + "]"); if (fragment.nodeType == 1 && filter(fragment)) { result = (result == null) ? [] : _Lang.objToArray(result); result.push(fragment);... | findByName : function(fragment, name, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = function(node) { return node.name && _Lang.equalsIgnoreCase(node.name, name); }; try { deepScan = !!deepScan; if (deepScan && fragment.querySelectorAll)... |
var result = fragment.querySelectorAll("[name=" + name + "]"); if (fragment.nodeType == 1 && filter(fragment)) { result = (result == null) ? [] : _Lang.objToArray(result); result.push(fragment); } return result; | findByName : function(fragment, name, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = function(node) { return node.name && _Lang.equalsIgnoreCase(node.name, name); }; try { deepScan = !!deepScan; if (deepScan && fragment.querySelectorAll)... | |
if (deepScan && fragment.getElementsByName) { var ret = _Lang.objToArray(fragment.getElementsByName(name)); if(fragment.name == name) ret.unshift(fragment); return ret; } | findByName : function(fragment, name, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = function(node) { return node.name && _Lang.equalsIgnoreCase(node.name, name); }; try { deepScan = !!deepScan; if (deepScan && fragment.querySelectorAll)... | |
else */if (fragment.querySelectorAll && deepScan) { | else */ if (_Lang.exists(fragment, "querySelectorAll") && deepScan) { | findByStyleClass : function(fragment, styleClass, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = _Lang.hitch(this, function(node) { var classes = this.getClasses(node); var len = classes.length; if (len == 0) return false; else { ... |
var selector = "." + styleClass; var result = fragment.querySelectorAll(selector); | try { var result = fragment.querySelectorAll("."+styleClass.replace(/\./g, "\\.")); | findByStyleClass : function(fragment, styleClass, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = _Lang.hitch(this, function(node) { var classes = this.getClasses(node); var len = classes.length; if (len == 0) return false; else { ... |
if (fragment.nodeType == 1 && filter(fragment)) { result = (result == null) ? [] : result; result = _Lang.objToArray(result); result.push(fragment); | if (fragment.nodeType == 1 && filter(fragment)) { result = (result == null) ? [] : result; result = _Lang.objToArray(result); result.push(fragment); } return result; } catch(e) { | findByStyleClass : function(fragment, styleClass, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = _Lang.hitch(this, function(node) { var classes = this.getClasses(node); var len = classes.length; if (len == 0) return false; else { ... |
return result; | findByStyleClass : function(fragment, styleClass, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = _Lang.hitch(this, function(node) { var classes = this.getClasses(node); var len = classes.length; if (len == 0) return false; else { ... | |
if (fragment.getElementsByClassName && deepScan) { | /*if (fragment.getElementsByClassName && deepScan) { | findByStyleClass : function(fragment, styleClass, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = _Lang.hitch(this, function(node) { var classes = this.getClasses(node); var len = classes.length; if (len == 0) return false; else { ... |
else if (fragment.querySelectorAll && deepScan) { | else */if (fragment.querySelectorAll && deepScan) { | findByStyleClass : function(fragment, styleClass, deepScan) { var _Lang = myfaces._impl._util._Lang; var filter = _Lang.hitch(this, function(node) { var classes = this.getClasses(node); var len = classes.length; if (len == 0) return false; else { ... |
} else if(deepScan) { return null; | findByTagName : function(fragment, tagName, deepScan) { var _Lang = myfaces._impl._util._Lang; deepScan = !!deepScan; //elements by tagname is the fastest if (deepScan && _Lang.exists(fragment, "getElementsByTagName")) { var ret = _Lang.objToArray(fragment.getElementsByTagName... | |
if (deepScan && _Lang.exists(fragment, "getElementsByTagName")) { var ret = _Lang.objToArray(fragment.getElementsByTagName(tagName)); if (fragment.tagName && _Lang.equalsIgnoreCase(fragment.tagName, tagName)) ret.unshift(fragment); return ret; } else if (deepScan) { return null; | if (deepScan && _Lang.exists(fragment, "getElementsByTagName")) { var ret = _Lang.objToArray(fragment.getElementsByTagName(tagName)); if (fragment.tagName && _Lang.equalsIgnoreCase(fragment.tagName, tagName)) ret.unshift(fragment); return ret; } else if (deepScan) { return null; } var filter = function(node) { re... | findByTagName : function(fragment, tagName, deepScan) { //remapping to save a few bytes var _Lang = this._Lang; deepScan = !!deepScan; //elements by tagname is the fastest, ie throws an error on fragment.getElementsByTagName, the exists type //via namespace array checking is safe ... |
var filter = function(node) { return node.tagName && _Lang.equalsIgnoreCase(node.tagName, tagName); }; try { return this.findAll(fragment, filter, deepScan); } finally { filter = null; _Lang = null; } }, | findByTagName : function(fragment, tagName, deepScan) { //remapping to save a few bytes var _Lang = this._Lang; deepScan = !!deepScan; //elements by tagname is the fastest, ie throws an error on fragment.getElementsByTagName, the exists type //via namespace array checking is safe ... | |
if (deepScan && fragment.getElementsByTagName) { | if (deepScan && _Lang.exists(fragment, "getElementsByTagName")) { | findByTagName : function(fragment, tagName, deepScan) { var _Lang = myfaces._impl._util._Lang; deepScan = !!deepScan; //elements by tagname is the fastest if (deepScan && fragment.getElementsByTagName) { var ret = _Lang.objToArray(fragment.getElementsByTagName(tagName)); ... |
if (deepScan && fragment.querySelectorAll) { if (_Lang.isString(tagName)) { tagName = tagName.replace(/\./g, "\\."); | try { if (deepScan && fragment.querySelectorAll) { var newTagName = tagName; if (_Lang.isString(newTagName)) { var newTagName = newTagName.replace(/\./g, "\\."); } var result = fragment.querySelectorAll(newTagName); if (fragment.nodeType == 1 && filter(fragment)) { result = (result == null) ? [] : _Lang.objToArray(res... | findByTagName : function(fragment, tagName, deepScan) { var _Lang = myfaces._impl._util._Lang; deepScan = !!deepScan; var filter = function(node) { return node.tagName && _Lang.equalsIgnoreCase(node.tagName, tagName); }; try { //html 5 selector if ... |
var result = fragment.querySelectorAll(tagName); if (fragment.nodeType == 1 && filter(fragment)) { result = (result == null) ? [] : _Lang.objToArray(result); result.push(fragment); } return result; | } catch (e) { | findByTagName : function(fragment, tagName, deepScan) { var _Lang = myfaces._impl._util._Lang; deepScan = !!deepScan; var filter = function(node) { return node.tagName && _Lang.equalsIgnoreCase(node.tagName, tagName); }; try { //html 5 selector if ... |
if(fragment.tagName && fragment.tagName.toLowerCase() == tagName.toLocaleLowerCase()) ret.unshift(fragment); | if (fragment.tagName && fragment.tagName.toLowerCase() == tagName.toLowerCase()) ret.unshift(fragment); | findByTagName : function(fragment, tagName, deepScan) { var _Lang = myfaces._impl._util._Lang; deepScan = !!deepScan; //elements by tagname is the fastest, ie throws an error on fragment.getElementsByTagName, the exists type //via namespace array checking is safe if (deepScan && _... |
try { if (deepScan && fragment.querySelectorAll) { var newTagName = tagName; if (_Lang.isString(newTagName)) { var newTagName = newTagName.replace(/\./g, "\\."); } var result = fragment.querySelectorAll(newTagName); if (fragment.nodeType == 1 && filter(fragment)) { result = (result == null) ? [] : _Lang.objToArray(res... | findByTagName : function(fragment, tagName, deepScan) { var _Lang = myfaces._impl._util._Lang; deepScan = !!deepScan; var filter = function(node) { return node.tagName && _Lang.equalsIgnoreCase(node.tagName, tagName); }; try { try { //html 5 se... | |
if (!deepScan && tagNames[fragment.tagName.toLowerCase()]) { return fragment; | if (!deepScan && tagNames[fragment.tagName.toLowerCase()]) { return fragment; } if (deepScan && this._Lang.exists(fragment, "getElementsByTagName")) { var retArr = []; for (var key in tagNames) { var foundElems = this.findByTagName(fragment, key, deepScan); if (foundElems) { retArr = retArr.concat(foundElems); } } re... | findByTagNames: function(fragment, tagNames, deepScan) { //shortcut for single components if (!deepScan && tagNames[fragment.tagName.toLowerCase()]) { return fragment; } //shortcut elementsByTagName if (deepScan && this._Lang.exists(fragment, "getElementsByTagName")) { ... |
if (deepScan && this._Lang.exists(fragment, "getElementsByTagName")) { var retArr = []; for (var key in tagNames) { var foundElems = this.findByTagName(fragment, key, deepScan); if (foundElems) { retArr = retArr.concat(foundElems); } } return retArr; } else if (deepScan) { return null; } var filter = function(node) ... | findByTagNames: function(fragment, tagNames, deepScan) { //shortcut for single components if (!deepScan && tagNames[fragment.tagName.toLowerCase()]) { return fragment; } //shortcut elementsByTagName if (deepScan && this._Lang.exists(fragment, "getElementsByTagName")) { ... | |
function findChild(sourcescope, child) { var split = fluid.SplitID(child.ID); var headlumps = sourcescope.downmap[child.ID]; if (headlumps === null) { headlumps = sourcescope.downmap[split.prefix + ":"]; } return headlumps === null ? null : headlumps[0]; } | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | function findChild(sourcescope, child) { var split = fluid.SplitID(child.ID); var headlumps = sourcescope.downmap[child.ID]; if (headlumps === null) { headlumps = sourcescope.downmap[split.prefix + ":"]; } return headlumps === null ? null : headlumps[0]; ... |
fluid.pager.findColumnDef = function (columnDefs, key) { var columnDef = $.grep(columnDefs, function (def) { return def.key === key; })[0]; return columnDef; }; | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | fluid.pager.findColumnDef = function (columnDefs, key) { var columnDef = $.grep(columnDefs, function (def) { return def.key === key; })[0]; return columnDef; }; |
fluid.findData = function(elem, name) { while (elem) { var data = $.data(elem, name); if (data) {return data;} elem = elem.parentNode; } }; | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | fluid.findData = function(elem, name) { while (elem) { var data = $.data(elem, name); if (data) {return data;} elem = elem.parentNode; } }; |
fluid.findForm = function (node) { return fluid.findAncestor(node, function(element) {return element.nodeName.toLowerCase() === "form";}); }; | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | fluid.findForm = function (node) { return fluid.findAncestor(node, function(element) {return element.nodeName.toLowerCase() === "form";}); }; |
if (fragment.childNodes.length == 1) { return fragment.childNodes[0]; } | myfaces._impl._util._Utils.findHtmlItemFromFragment = function(fragment, itemId) { if (fragment.childNodes == null) return null; //just one element, we are clear to replace (in case of the body replacement we replace only the body) if (fragment.childNodes.length == 1) { re... | |
for ( i=0, iLen=blocks.length; i<iLen; i++ ) | if ( blocks === NULL ){ return; } for ( i=0, iLen = blocks.length; i<iLen; i++ ) | function findImportedStylesheets( stylesheet ) { var blocks, imports, i, iLen; // IE if ( defined( stylesheet.imports ) ) { imports = stylesheet.imports; for ( i=0, iLen=imports.length; i<iLen; i++ ) { // add the stylesheet addStyleSheet( imports[i] ); } } // W3C ... |
__ignored_css.push( stylesheet.href.replace( __re.f, CAPTURE ) ); | __ignored_css.push( stylesheet.href.replace( REGEXP_FILE, CAPTURE ) ); | function findImportedStylesheets( stylesheet ) { var blocks, imports, i, iLen; // IE if ( defined( stylesheet.imports ) ) { imports = stylesheet.imports; for ( i=0, iLen=imports.length; i<iLen; i++ ) { // add the stylesheet addStyleSheet( imports[i] ); } } // W3C ... |
findMatchingComponent = function(that, visitor, except) { | var findMatchingComponent = function(that, visitor, except) { | findMatchingComponent = function(that, visitor, except) { for (var name in that) { var component = that[name]; if (component === except || !component.typeName) {continue;} if (visitor(component, name)) { return true; } findMatchingComponen... |
for(var ns = el.nextSibling; ns !== null; ns = ns.nextSibling) if(ns[NODE_TYPE] === 1) return ns; return null; | return horizontalTraverse(el, "nextSibling"); | function findNextSiblingElement(el) { for(var ns = el.nextSibling; ns !== null; ns = ns.nextSibling) if(ns[NODE_TYPE] === 1) return ns; return null; } |
function findNodeValue(rootNode) { var node = fluid.dom.iterateDom(rootNode, function(node) { return node.nodeType === 8 || node.nodeType === 4? "stop" : null; }, true); var value = node.nodeValue; if (value.indexOf("[CDATA[") === 0) { return value.substring(6, value.length - 2); } else { return value; } } | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | function findNodeValue(rootNode) { var node = fluid.dom.iterateDom(rootNode, function(node) { // NB, in Firefox at least, comment and cdata nodes cannot be distinguished! return node.nodeType === 8 || node.nodeType === 4? "stop" : null; }, true); var value = node.nodeValue; if ... |
for(var ps = el.previousSibling; ps !== null; ps = ps.previousSibling) { if(ps[NODE_TYPE] === 1) return ps; } return null; | return horizontalTraverse(el, "previousSibling"); | function findPreviousSiblingElement(el) { for(var ps = el.previousSibling; ps !== null; ps = ps.previousSibling) { if(ps[NODE_TYPE] === 1) return ps; } return null; } |
function findTopContainer() { for (var i = tagstack.length - 1; i >= 0; --i ) { var lump = tagstack[i]; if (lump.rsfID !== undefined) { return lump; } } return t.rootlump; } | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | function findTopContainer() { for (var i = tagstack.length - 1; i >= 0; --i ) { var lump = tagstack[i]; if (lump.rsfID !== undefined) { return lump; } } return t.rootlump; } |
for (var i = tagstack.length - 1; i >= 0; --i ) { var lump = tagstack[i]; if (lump.rsfID !== undefined) { return lump; | for (var i = tagstack.length - 1; i >= 0; --i ) { var lump = tagstack[i]; if (lump.rsfID !== undefined) { return lump; } | function findTopContainer() { for (var i = tagstack.length - 1; i >= 0; --i ) { var lump = tagstack[i]; if (lump.rsfID !== undefined) { return lump; } } return t.rootlump; } |
} return t.rootlump; | return t.rootlump; | function findTopContainer() { for (var i = tagstack.length - 1; i >= 0; --i ) { var lump = tagstack[i]; if (lump.rsfID !== undefined) { return lump; } } return t.rootlump; } |
return val.substring(val.indexOf("${")+2, val.indexOf("0")-1); | return getElPathOfArray(val); | var findValueBinding = function (comp) { for (var key in comp) { if (comp.hasOwnProperty(key)) { var val = comp[key]; if ((typeof(val) === "string") && (val.indexOf("${") !== -1)) { return val.substring(val.indexOf("${")+2, val.indexOf("0")-1); ... |
that.finish = function () { finish(that); }; | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | that.finish = function () { finish(that); }; |
finishHandler: function () { that.finish(); } | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | finishHandler: function () { that.finish(); } |
$.fn.jwplayerControlbar(player); player.sendEvent("JWPLAYER_READY"); | $.fn.jwplayerControlbar($.jwplayer(player.id), player.model.domelement); player.sendEvent($.fn.jwplayer.events.JWPLAYER_READY); | function finishSetup(player) { $.fn.jwplayerControlbar(player); player.sendEvent("JWPLAYER_READY"); } |
fire: function () { for (var i in listeners) { var lisrec = listeners[i]; var listener = lisrec.listener; if (lisrec.predicate && !lisrec.predicate(listener, arguments)) { continue; } try { var ret = listener.apply(null, arguments); if (preventable && ret === false) { return false; } } catch (e) { log("FireEvent receiv... | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | fire: function () { for (var i in listeners) { var lisrec = listeners[i]; var listener = lisrec.listener; if (lisrec.predicate && !lisrec.predicate(listener, arguments)) { continue; } ... |
for (var i in listeners) { var lisrec = listeners[i]; var listener = lisrec.listener; if (lisrec.predicate && !lisrec.predicate(listener, arguments)) { continue; } try { var ret = listener.apply(null, arguments); if (preventable && ret === false) { return false; } } catch (e) { log("FireEvent received exception " + e.m... | return fireToListeners(listeners, arguments); | fire: function () { for (var i in listeners) { var lisrec = listeners[i]; var listener = lisrec.listener; if (lisrec.predicate && !lisrec.predicate(listener, arguments)) { continue; } ... |
fire : function(payload) { return fire(this)(payload); }, | function fire(publisher) { return fireEvent; function fireEvent(e) { var preventDefault = false, i, cs = publisher._callStack, csi; if(typeof publisher.beforeFire == "function") { try { if(publisher.beforeFire(e) == false) preventDefault = true; } catch(ex){deferError(ex);} } for(i = 0; i < cs.length; i++) { csi = ... | fire : function(payload) { return fire(this)(payload); }, |
that.fireChangeRequest = function(request) { for (var i = 0; i < subAppliers.length; ++ i) { var path = subAppliers[i].path; if (request.path.indexOf(path) === 0) { var subpath = request.path.substring(path.length + 1); var subRequest = fluid.copy(request); subRequest.path = subpath; subAppliers[i].subApplier.fireChan... | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | that.fireChangeRequest = function(request) { for (var i = 0; i < subAppliers.length; ++ i) { var path = subAppliers[i].path; if (request.path.indexOf(path) === 0) { var subpath = request.path.substring(path.length + 1); var subReques... |
function fireModelChange(that, newModel, forceUpdate) { computePageCount(newModel); if (newModel.pageIndex >= newModel.pageCount) { newModel.pageIndex = newModel.pageCount - 1; } if (forceUpdate || newModel.pageIndex !== that.model.pageIndex || newModel.pageSize !== that.model.pageSize || newModel.sortKey !== that.mode... | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | function fireModelChange(that, newModel, forceUpdate) { computePageCount(newModel); if (newModel.pageIndex >= newModel.pageCount) { newModel.pageIndex = newModel.pageCount - 1; } if (forceUpdate || newModel.pageIndex !== that.model.pageIndex || newModel.pageSize !== that.model... |
(function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context)},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^... | first: function() { return this.eq( 0 ); }, | (function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context)},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^... |
first: function(elem, i){ return i === 0; }, | (function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context)},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^... | first: function(elem, i){ return i === 0; }, |
return this.active && !this.active.prev().length; | return this.active && !this.active.prevAll(".ui-menu-item").length; | first: function() { return this.active && !this.active.prev().length; }, |
(function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context)},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^... | fix: function( event ) { if ( event[ expando ] ) { return event; } var originalEvent = event; event = jQuery.Event( originalEvent ); for ( var i = this.props.length, prop; i; ) { prop = this.props[ --i ]; event[ prop ] = originalEvent[ prop ]; } if ( !event.target ) { event.target = event.srcElement || document; ... | (function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context)},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^... |
fix: function(event) { if ( event[expando] ) return event; var originalEvent = event; event = jQuery.Event( originalEvent ); for ( var i = this.props.length, prop; i; ){ prop = this.props[ --i ]; event[ prop ] = originalEvent[ prop ]; } if ( !event.target ) event.target = event.srcElement || document; if ( even... | (function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context)},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^... | fix: function(event) { if ( event[expando] ) return event; // store a copy of the original event object // and "clone" to set read-only properties var originalEvent = event; event = jQuery.Event( originalEvent ); for ( var i = this.props.length, prop; i; ){ prop = this.props[ --i ]; event[ prop ] = origina... |
function fixChildren(children) { if (!(children instanceof Array)) { var togo = []; for (var key in children) { var value = children[key]; if (value instanceof Array) { for (var i = 0; i < value.length; ++ i) { var processed = processChild(value[i], key); togo[togo.length] = processed; } } else { togo[togo.length] ... | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | function fixChildren(children) { if (!(children instanceof Array)) { var togo = []; for (var key in children) { var value = children[key]; if (value instanceof Array) { for (var i = 0; i < value.length; ++ i) { var processed = proc... |
} else if (comp.valuebinding && comp.valuebinding.valuebinding) { comp.valuebinding = comp.valuebinding.valuebinding; | var fixSelections = function (comp) { if (comp.selection) { for (var j = 0; j < comp.optionlist.length; j++) { comp.optionlist[j] = comp.optionlist[j].value; comp.optionnames[j] = comp.optionnames[j].value; } } else if (comp.children) { fo... | |
function fixupTree(tree, model) { if (tree.componentType === undefined) { tree = unzipComponent(tree, model); } if (tree.componentType !== "UIContainer" && !tree.parent) { tree = {children: [tree]}; } if (tree.children) { tree.childmap = {}; for (var i = 0; i < tree.children.length; ++ i) { var child = tree.children[i... | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | function fixupTree(tree, model) { if (tree.componentType === undefined) { tree = unzipComponent(tree, model); } if (tree.componentType !== "UIContainer" && !tree.parent) { tree = {children: [tree]}; } if (tree.children) { tree.childmap = {}; for (var i = 0; i < tree.children.... |
function fixupValue(uibound, model) { if (uibound.value === undefined && uibound.valuebinding !== undefined) { if (!model) { fluid.fail("Cannot perform value fixup for valuebinding " + uibound.valuebinding + " since no model was supplied to rendering"); } uibound.value = fluid.model.getBeanValue(model, uibound.valuebin... | (function($){$.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var self=this;this.element.bind("mousedown."+this.widgetName,function(event){return self._mouseDown(event)}).bind("click."+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false... | function fixupValue(uibound, model) { if (uibound.value === undefined && uibound.valuebinding !== undefined) { if (!model) { fluid.fail("Cannot perform value fixup for valuebinding " + uibound.valuebinding + " since no model was supplied to rendering"); } u... |
resetMessageSelect(); | window.resetMessageSelect(); | function flagMessages(_flag){ var Check=true; var _messageList; var cbAllMessages = document.getElementById('selectAllMessagesCheckBox').checked; resetMessageSelect(); if (cbAllMessages == true) Check = confirm(lang_confirm_all_messages); if (cbAllMessages == true && Check == true) { _messageList = 'all'; } else { ... |
_messageList = xajax.getFormValues('formMessageList'); | _messageList = window.xajax.getFormValues('formMessageList'); | function flagMessages(_flag){ var Check=true; var _messageList; var cbAllMessages = document.getElementById('selectAllMessagesCheckBox').checked; resetMessageSelect(); if (cbAllMessages == true) Check = confirm(lang_confirm_all_messages); if (cbAllMessages == true && Check == true) { _messageList = 'all'; } else { ... |
setStatusMessage('<span style="font-weight: bold;">' + lang_updating_message_status + '</span>'); xajax_doXMLHTTP("felamimail.ajaxfelamimail.flagMessages", _flag, _messageList); | window.setStatusMessage('<span style="font-weight: bold;">' + lang_updating_message_status + '</span>'); window.xajax_doXMLHTTP("felamimail.ajaxfelamimail.flagMessages", _flag, _messageList); | function flagMessages(_flag){ var Check=true; var _messageList; var cbAllMessages = document.getElementById('selectAllMessagesCheckBox').checked; resetMessageSelect(); if (cbAllMessages == true) Check = confirm(lang_confirm_all_messages); if (cbAllMessages == true && Check == true) { _messageList = 'all'; } else { ... |
window.resetMessageSelect(); if (cbAllMessages == true) Check = confirm(lang_confirm_all_messages); | egw_appWindow('felamimail').resetMessageSelect(); if (cbAllMessages == true) Check = confirm(egw_appWindow('felamimail').lang_confirm_all_messages); | function flagMessages(_flag){ var Check=true; var _messageList; var cbAllMessages = document.getElementById('selectAllMessagesCheckBox').checked; window.resetMessageSelect(); if (cbAllMessages == true) Check = confirm(lang_confirm_all_messages); if (cbAllMessages == true && Check == true) { _messageList = 'all'; } ... |
_messageList = window.xajax.getFormValues('formMessageList'); | _messageList = egw_appWindow('felamimail').xajax.getFormValues('formMessageList'); | function flagMessages(_flag){ var Check=true; var _messageList; var cbAllMessages = document.getElementById('selectAllMessagesCheckBox').checked; window.resetMessageSelect(); if (cbAllMessages == true) Check = confirm(lang_confirm_all_messages); if (cbAllMessages == true && Check == true) { _messageList = 'all'; } ... |
window.setStatusMessage('<span style="font-weight: bold;">' + lang_updating_message_status + '</span>'); window.xajax_doXMLHTTP("felamimail.ajaxfelamimail.flagMessages", _flag, _messageList); | egw_appWindow('felamimail').setStatusMessage('<span style="font-weight: bold;">' + egw_appWindow('felamimail').lang_updating_message_status + '</span>'); egw_appWindow('felamimail').xajax_doXMLHTTP("felamimail.ajaxfelamimail.flagMessages", _flag, _messageList); | function flagMessages(_flag){ var Check=true; var _messageList; var cbAllMessages = document.getElementById('selectAllMessagesCheckBox').checked; window.resetMessageSelect(); if (cbAllMessages == true) Check = confirm(lang_confirm_all_messages); if (cbAllMessages == true && Check == true) { _messageList = 'all'; } ... |
result = jwplayer.utils.extensionmap[extension].html5; | result = jwplayer.utils.extensionmap[extension].flash; | jwplayer.utils.flashCanPlay = function(file) { var result = false; var extension = jwplayer.utils.extension(file); if (jwplayer.utils.extensionmap[extension] !== undefined && jwplayer.utils.extensionmap[extension].flash !== undefined) { result = jwplayer.utils.extensionmap[extension].html5; } return (result || ... |
jwplayer.utils.flashCanPlay = function(item) { | jwplayer.utils.flashCanPlay = function(file, provider) { | jwplayer.utils.flashCanPlay = function(item) { var providers = ["video", "http", "sound", "image"]; // Provider is set, and is not video, http, sound, image - play in Flash if (item.provider && (providers.indexOf(item.provider < 0))) { return true; } var extension = jwplayer.utils.extension(item.file); // If t... |
if (item.provider && (providers.indexOf(item.provider < 0))) { | if (provider && (providers.indexOf(provider < 0))) { | jwplayer.utils.flashCanPlay = function(item) { var providers = ["video", "http", "sound", "image"]; // Provider is set, and is not video, http, sound, image - play in Flash if (item.provider && (providers.indexOf(item.provider < 0))) { return true; } var extension = jwplayer.utils.extension(item.file); // If t... |
var extension = jwplayer.utils.extension(item.file); | var extension = jwplayer.utils.extension(file); | jwplayer.utils.flashCanPlay = function(item) { var providers = ["video", "http", "sound", "image"]; // Provider is set, and is not video, http, sound, image - play in Flash if (item.provider && (providers.indexOf(item.provider < 0))) { return true; } var extension = jwplayer.utils.extension(item.file); // If t... |
if (provider && (providers.indexOf(provider < 0))) { | if (provider && (providers.toString().indexOf(provider < 0))) { | jwplayer.utils.flashCanPlay = function(file, provider) { var providers = ["video", "http", "sound", "image"]; // Provider is set, and is not video, http, sound, image - play in Flash if (provider && (providers.indexOf(provider < 0))) { return true; } var extension = jwplayer.utils.extension(file); // If there ... |
return jwplayer.utils.flashCanPlay(item); | return jwplayer.utils.flashCanPlay(item.file, item.provider); | jwplayer.utils.flashSupportsConfig = function(config) { if (jwplayer.utils.hasFlash()) { if (config) { var item = jwplayer.utils.getFirstPlaylistItemFromConfig(config); if (typeof item.file == "undefined" && typeof item.levels == "undefined") { return true; } else if (item.file) { return jwplayer.u... |
if (item.levels[i].file && jwplayer.utils.flashCanPlay(item)) { | if (item.levels[i].file && jwplayer.utils.flashCanPlay(item.levels[i].file, item.provider)) { | jwplayer.utils.flashSupportsConfig = function(config) { if (jwplayer.utils.hasFlash()) { if (config) { var item = jwplayer.utils.getFirstPlaylistItemFromConfig(config); if (typeof item.file == "undefined" && typeof item.levels == "undefined") { return true; } else if (item.file) { return jwplayer.u... |
zoomcircle(evt,.5); | function fleethoveroff(evt,fleet){ hidestatusmsg("fleethoveroff"); document.body.style.cursor='default'; setxy(evt); zoomcircle(evt,.5);} | |
zoomcircle(evt,2.0); | function fleethoveron(evt,fleet,about){ about = "<h1>"+about+"</h1>"; //if($('#menu').size()==0){ setstatusmsg(about+"<div style='padding-left:10px; font-size:10px;'>Left Click to Manage Fleet</div>"); //} document.body.style.cursor='pointer'; setxy(evt); zoomcircle(evt,2.0);} | |
flush : function() { if (this.buffer !== null) { if (this.file === null) { this.createLogFile(); } this.file.write(this.buffer, this.buffer.length); this.buffer = ""; } }, | this.buffer+=msg;this.buffer+='\n';},flush:function(){if(this.buffer!==null){if(this.file===null){this.createLogFile();} this.file.write(this.buffer,this.buffer.length);this.buffer="";}},shutdown:function(){if(this.buffer!==null){this.flush();} | flush : function() { if (this.buffer !== null) { if (this.file === null) { this.createLogFile(); } this.file.write(this.buffer, this.buffer.length); this.buffer = ""; } }, |
flush : function() { for (appender in this.appenders) { this.appenders[appender].flush(); } }, | if((level>=this.YMLog_Warn)||this.count>5){this.flush();this.count=0;}},diagnose:function(msg){this.log(this.YMLog_Diagnose,msg);},debug:function(msg){this.log(this.YMLog_Debug,msg);},info:function(msg){this.log(this.YMLog_Info,msg);},warn:function(msg){this.log(this.YMLog_Warn,msg);},error:function(msg){this.log(this.... | flush : function() { for (appender in this.appenders) { this.appenders[appender].flush(); } }, |
if (_selectBox.name = 'signatureID') { | if (_selectBox.name == 'signatureID') { | function fm_compose_changeInputType(_selectBox) { var selectBoxRow = _selectBox.parentNode.parentNode; var inputElements = selectBoxRow.getElementsByTagName('input'); var spanElements = selectBoxRow.getElementsByTagName('span'); var tdElements = selectBoxRow.getElementsByTagName('td'); if(_selectBox.value == 'folder') ... |
return FCKeditorAPI.GetInstance('signature').GetXHTML( true ); | var ckeditor = CKEDITOR.instances['signature']; return ckeditor.getData(); | function fm_getEditorContent(){ // Get the editor instance that we want to interact with. return FCKeditorAPI.GetInstance('signature').GetXHTML( true );} |
setStatusMessage('<span style="font-weight: bold;">'+ lang_updating_view +'</span>'); | window.setStatusMessage('<span style="font-weight: bold;">'+ lang_updating_view +'</span>'); | function fm_readMessage(_url, _windowName, _node) { var windowArray = _windowName.split('_'); var tableElement =_node.parentNode.parentNode.parentNode.parentNode; var allRows = tableElement.getElementsByTagName("tr"); for(i=0; i< allRows.length; i++) { allRows[i].style.backgroundColor = "#FFFFFF"; } if (windowArray[0]... |
xajax_doXMLHTTP("felamimail.ajaxfelamimail.refreshMessagePreview",windowArray[1],windowArray[2]); | window.xajax_doXMLHTTP("felamimail.ajaxfelamimail.refreshMessagePreview",windowArray[1],windowArray[2]); | function fm_readMessage(_url, _windowName, _node) { var windowArray = _windowName.split('_'); var tableElement =_node.parentNode.parentNode.parentNode.parentNode; var allRows = tableElement.getElementsByTagName("tr"); for(i=0; i< allRows.length; i++) { allRows[i].style.backgroundColor = "#FFFFFF"; } if (windowArray[0]... |
xajax_doXMLHTTP("felamimail.ajaxfelamimail.refreshFolder"); | window.xajax_doXMLHTTP("felamimail.ajaxfelamimail.refreshFolder"); | function fm_readMessage(_url, _windowName, _node) { var windowArray = _windowName.split('_'); var tableElement =_node.parentNode.parentNode.parentNode.parentNode; var allRows = tableElement.getElementsByTagName("tr"); for(i=0; i< allRows.length; i++) { allRows[i].style.backgroundColor = "#FFFFFF"; } if (windowArray[0]... |
if (document.getElementById('messageCounter').innerHTML.search(eval('/'+lang_updating_view+'/'))<0 ) {MessageBuffer = document.getElementById('messageCounter').innerHTML;} window.setStatusMessage('<span style="font-weight: bold;">'+ lang_updating_view +'</span>'); | if (document.getElementById('messageCounter').innerHTML.search(eval('/'+egw_appWindow('felamimail').lang_updating_view+'/'))<0 ) {MessageBuffer = document.getElementById('messageCounter').innerHTML;} egw_appWindow('felamimail').setStatusMessage('<span style="font-weight: bold;">'+ egw_appWindow('felamimail').lang_updat... | function fm_readMessage(_url, _windowName, _node) { var windowArray = _windowName.split('_'); var tableElement =_node.parentNode.parentNode.parentNode.parentNode; var allRows = tableElement.getElementsByTagName("tr"); for(i=0; i< allRows.length; i++) { allRows[i].style.backgroundColor = "#FFFFFF"; } if (windowArray[0]... |
window.xajax_doXMLHTTP("felamimail.ajaxfelamimail.refreshMessagePreview",windowArray[1],windowArray[2]); | egw_appWindow('felamimail').xajax_doXMLHTTP("felamimail.ajaxfelamimail.refreshMessagePreview",windowArray[1],windowArray[2]); | function fm_readMessage(_url, _windowName, _node) { var windowArray = _windowName.split('_'); var tableElement =_node.parentNode.parentNode.parentNode.parentNode; var allRows = tableElement.getElementsByTagName("tr"); for(i=0; i< allRows.length; i++) { allRows[i].style.backgroundColor = "#FFFFFF"; } if (windowArray[0]... |
window.xajax_doXMLHTTP("felamimail.ajaxfelamimail.refreshFolder"); | egw_appWindow('felamimail').xajax_doXMLHTTP("felamimail.ajaxfelamimail.refreshFolder"); | function fm_readMessage(_url, _windowName, _node) { var windowArray = _windowName.split('_'); var tableElement =_node.parentNode.parentNode.parentNode.parentNode; var allRows = tableElement.getElementsByTagName("tr"); for(i=0; i< allRows.length; i++) { allRows[i].style.backgroundColor = "#FFFFFF"; } if (windowArray[0]... |
var ckeditor_span = document.getElementById('cke_body'); var editorArea = document.getElementById('editorArea'); | function fm_toggle_editor(toggler){ var selectedEditor = toggler.value; // determine the currently displayed editor var htmlFlag = document.getElementsByName('_is_html')[0]; var mimeType = document.getElementById('mimeType'); var currentEditor = htmlFlag.value; var currentMode =''; if (currentEditor == 1) { currentMod... | |
var existingHtml = plaineditor.value; ckeditor_span.style.display = "inline"; | function fm_toggle_editor(toggler){ var selectedEditor = toggler.value; // determine the currently displayed editor var htmlFlag = document.getElementsByName('_is_html')[0]; var mimeType = document.getElementById('mimeType'); var currentEditor = htmlFlag.value; var currentMode =''; if (currentEditor == 1) { currentMod... | |
ckeditor.setData(existingHtml); | var existingAscii = "<pre>" + plaineditor.value + "</pre>"; xajax_doXMLHTTP("felamimail.ajaxfelamimail.toggleEditor", composeID, existingAscii, 'simple'); | function fm_toggle_editor(toggler){ var selectedEditor = toggler.value; // determine the currently displayed editor var htmlFlag = document.getElementsByName('_is_html')[0]; var mimeType = document.getElementById('mimeType'); var currentEditor = htmlFlag.value; var currentMode =''; if (currentEditor == 1) { currentMod... |
plaineditor.style.visibility = "visible"; plaineditor.style.display = "block"; | xajax_doXMLHTTP("felamimail.ajaxfelamimail.toggleEditor", composeID, existingHtml, 'ascii'); | function fm_toggle_editor(toggler){ var selectedEditor = toggler.value; // determine the currently displayed editor var htmlFlag = document.getElementsByName('_is_html')[0]; var mimeType = document.getElementById('mimeType'); var currentEditor = htmlFlag.value; var currentMode =''; if (currentEditor == 1) { currentMod... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.