rem stringlengths 0 126k | add stringlengths 0 441k | context stringlengths 15 136k |
|---|---|---|
key = localStorage.key(i); if ( key.indexOf( ECSSTENDER ) === 0 ) | key = __cache_object.key(i); if ( key && key.indexOf( ECSSTENDER ) === 0 ) | function enableCache() { // HTML5 and/or Mozilla if ( defined( WINDOW.localStorage ) ) { __cache_object = WINDOW.localStorage; clearBrowserCache = function() { var i = __cache_object.length, key; // cherry-pick only our own items in the cache while ( --i ) { ... |
DOCUMENT.body.appendChild(div); | __body.appendChild(div); | function enableCache() { // HTML5 and/or Mozilla if ( defined( WINDOW.localStorage ) ) { __cache_object = WINDOW.localStorage; clearBrowserCache = function() { __cache_object.clear(); }; readFromBrowserCache = function( cache, key ) { return __cache_object.getItem... |
enabled: function(elem){ return elem.disabled === false && elem.type !== "hidden"; }, | fluid.enabled = function(target, state) { target = $(target); if (state === undefined) { return getData(target, ENABLEMENT_KEY) !== false; } else { $("*", target).each(function() { if (getData(this, ENABLEMENT_KEY) !== undefined) { setData(this, ENABLEMENT_KEY, state); } else if (/select|textarea|input/i.test(this.node... | enabled: function(elem){ return elem.disabled === false && elem.type !== "hidden"; }, |
return getData(target, ENABLEMENT_KEY) !== false; | return fluid.getScopedData(target, ENABLEMENT_KEY) !== false; | fluid.enabled = function(target, state) { target = $(target); if (state === undefined) { return getData(target, ENABLEMENT_KEY) !== false; } else { $("*", target).each(function() { if (getData(this, ENABLEMENT_KEY) !== undefined) { ... |
if (getData(this, ENABLEMENT_KEY) !== undefined) { setData(this, ENABLEMENT_KEY, state); | if (fluid.getScopedData(this, ENABLEMENT_KEY) !== undefined) { fluid.setScopedData(this, ENABLEMENT_KEY, state); | fluid.enabled = function(target, state) { target = $(target); if (state === undefined) { return getData(target, ENABLEMENT_KEY) !== false; } else { $("*", target).each(function() { if (getData(this, ENABLEMENT_KEY) !== undefined) { ... |
setData(target, ENABLEMENT_KEY, state); | fluid.setScopedData(target, ENABLEMENT_KEY, state); | fluid.enabled = function(target, state) { target = $(target); if (state === undefined) { return getData(target, ENABLEMENT_KEY) !== false; } else { $("*", target).each(function() { if (getData(this, ENABLEMENT_KEY) !== undefined) { ... |
enabled: function(elem){ return elem.disabled === false && elem.type !== "hidden"; }, | (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... | enabled: function(elem){ return elem.disabled === false && elem.type !== "hidden"; }, |
return this .attr( "unselectable", "off" ) .css( "MozUserSelect", "" ); }, | if ( userSelectProp ) { this.css( userSelectProp, "" ); } else { this.find( "*" ).andSelf().attr( "unselectable", "off" ); } if ( selectStart ) { this.unbind( selectStart ); } return this; } | enableSelection: function() { return this .attr( "unselectable", "off" ) .css( "MozUserSelect", "" ); }, |
jQuery.ui||(function($){$.ui={version:"1.8",plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]])}},call:function(instance,name,args){var set=instance.plugins[name];if(!set||!instance.element[0].parentNode)... | enableSelection: function() { return this .attr('unselectable', 'off') .css('MozUserSelect', '') .unbind('selectstart.ui'); }, | jQuery.ui||(function($){$.ui={version:"1.8",plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]])}},call:function(instance,name,args){var set=instance.plugins[name];if(!set||!instance.element[0].parentNode)... |
enableSelection: function() { return this .attr('unselectable', 'off') .css('MozUserSelect', '') .unbind('selectstart.ui'); }, | jQuery.ui||(function($){$.ui={version:"1.8",plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]])}},call:function(instance,name,args){var set=instance.plugins[name];if(!set||!instance.element[0].parentNode)... | enableSelection: function() { return this .attr('unselectable', 'off') .css('MozUserSelect', '') .unbind('selectstart.ui'); }, |
.css('MozUserSelect', '') .unbind('selectstart.ui'); | .css('MozUserSelect', ''); | enableSelection: function() { return this .attr('unselectable', 'off') .css('MozUserSelect', '') .unbind('selectstart.ui'); }, |
enableStackTrace : function() { this.mEnableStackTrace = true; }, | 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.... | enableStackTrace : function() { this.mEnableStackTrace = true; }, |
encodePartialSubmit : function(node, submitAll, | encodePartialSubmit : function(node, issuingItem, submitAll, | encodePartialSubmit : function(node, submitAll, partialIds, strBuf) { var _Lang = myfaces._impl._util._Lang; var _Impl = myfaces._impl.core.Impl; var _Dom = myfaces._impl._util._Dom; var nodeFilter = function(curNode) { //TODO bomb out if the ... |
var nodeFilter = function(curNode) { | var partialIdsFilter = function(curNode) { | encodePartialSubmit : function(node, submitAll, partialIds, strBuf) { var _Lang = myfaces._impl._util._Lang; var _Impl = myfaces._impl.core.Impl; var _Dom = myfaces._impl._util._Dom; var nodeFilter = function(curNode) { //TODO bomb out if the ... |
var id = curNode.id; var name = curNode.name; | var id = curNode.id || curNode.name; | encodePartialSubmit : function(node, submitAll, partialIds, strBuf) { var _Lang = myfaces._impl._util._Lang; var _Impl = myfaces._impl.core.Impl; var _Dom = myfaces._impl._util._Dom; var nodeFilter = function(curNode) { //TODO bomb out if the ... |
var ppsElement = id && _Lang.contains(partialIds, id); return ppsElement || (name != null && name == _Impl.P_VIEWSTATE); | return (id && _Lang.contains(partialIds, id)) || id == _Impl.P_VIEWSTATE; | encodePartialSubmit : function(node, submitAll, partialIds, strBuf) { var _Lang = myfaces._impl._util._Lang; var _Impl = myfaces._impl.core.Impl; var _Dom = myfaces._impl._util._Dom; var nodeFilter = function(curNode) { //TODO bomb out if the ... |
var nodes = _Dom.findAll(node, nodeFilter, true); if (nodes) { | var nodes = _Dom.findAll(node, partialIdsFilter, false); var allowedTagNames = {"input":true, "select":true, "textarea":true}; if (nodes && nodes.length) { | encodePartialSubmit : function(node, submitAll, partialIds, strBuf) { var _Lang = myfaces._impl._util._Lang; var _Impl = myfaces._impl.core.Impl; var _Dom = myfaces._impl._util._Dom; var nodeFilter = function(curNode) { //TODO bomb out if the ... |
this.encodeElement(nodes[cnt], strBuf); | var subNodes = (nodes[cnt].tagName.toLowerCase() == "form") ? node.elements : _Dom.findByTagNames(nodes[cnt], allowedTagNames, true); if (subNodes && subNodes.length) { for (var cnt2 = 0; cnt2 < subNodes.length; cnt2++) { this.encodeElement(subNodes[cnt2], strBuf); } } else { this.encodeElement(nodes[cnt], strBuf); } | encodePartialSubmit : function(node, submitAll, partialIds, strBuf) { var _Lang = myfaces._impl._util._Lang; var _Impl = myfaces._impl.core.Impl; var _Dom = myfaces._impl._util._Dom; var nodeFilter = function(curNode) { //TODO bomb out if the ... |
this.appendViewState(node, strBuf); | encodePartialSubmit : function(node, submitAll, partialIds, strBuf) { var _Lang = myfaces._impl._util._Lang; var _Impl = myfaces._impl.core.Impl; var _Dom = myfaces._impl._util._Dom; var nodeFilter = function(curNode) { //TODO bomb out if the ... | |
this.encodePartialSubmit(parentItem, false, partialIds, strBuf); | this.encodePartialSubmit(parentItem, item, false, partialIds, strBuf); | encodeSubmittableFields : function(request, context, item, parentItem, partialIds) { try { if (!parentItem) { this._onWarning(request, context,"myfaces._impl.xhrCore._AjaxUtils" ,"encodeSubmittableFields "+"Html-Component is not nested in a Form... |
if (item && item.type && item.type.toLowerCase() == "submit") { strBuf.push(encodeURIComponent(item.name)); strBuf.push("="); strBuf.push(encodeURIComponent(item.value)); strBuf.push("&"); } if(strBuf && strBuf.length && strBuf[strBuf.length - 1] == "&") { strBuf = strBuf.slice(0, strBuf.length - 1); } | this.appendIssuingItem(item, strBuf); | encodeSubmittableFields : function(request, context, item, parentItem, partialIds) { try { if (!parentItem) { this._onWarning(request, context,"myfaces._impl.xhrCore._AjaxUtils" ,"encodeSubmittableFields "+"Html-Component is not nested in a Form... |
return strBuf.join(""); | return strBuf.join("&"); | encodeSubmittableFields : function(request, context, item, parentItem, partialIds) { try { if (!parentItem) { this._onWarning(request, context,"myfaces._impl.xhrCore._AjaxUtils" ,"encodeSubmittableFields "+"Html-Component is not nested in a Form... |
if(strBuf && strBuf.length) { if(strBuf[strBuf.length - 1] == "&") { strBuf = strBuf.slice(0, strBuf.length - 1); } } | encodeSubmittableFields : function(request, context, item, parentItem, partialIds) { try { if (!parentItem) { this._onWarning(request, context,"myfaces._impl.xhrCore._AjaxUtils" ,"encodeSubmittableFields "+"Html-Component is not nested in a Form... | |
(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=/^... | end: function() { return this.prevObject || jQuery(null); }, | (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=/^... |
end: function() { return this.prevObject || jQuery( [] ); }, | (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=/^... | end: function() { return this.prevObject || jQuery( [] ); }, |
if (request._size != this._size) { this.setQueueSize(request._size); | if (request._queueSize != this._size) { this.setQueueSize(request._queueSize); | enqueue : function(request) { if (typeof request._delay == "number") { this.clearDelayTimeout(); var _Lang = myfaces._impl._util._Lang; this._delayTimeoutId = window.setTimeout( _Lang.hitch(this, function() { this.clearDelayTimeout();... |
id : "entry" + dataEntry.id | id : 'entry' + dataEntry.id | function entry( /* Object */dataEntry) { var trElement = tr(null, { id : "entry" + dataEntry.id }); entryInternal(trElement, dataEntry); $("#plugin_table > tbody").append(trElement);} |
$("#plugin_table > tbody").append(trElement); | $('#plugin_table > tbody').append(trElement); | function entry( /* Object */dataEntry) { var trElement = tr(null, { id : "entry" + dataEntry.id }); entryInternal(trElement, dataEntry); $("#plugin_table > tbody").append(trElement);} |
var trElement = tr( null, { id: "entry" + dataEntry.id } ); entryInternal( trElement, dataEntry ); $("#plugin_table > tbody").append(trElement); | var id = dataEntry.id; var name = dataEntry.name; var _ = tableEntryTemplate.clone().appendTo(tableBody).attr('id', 'entry' + dataEntry.id); _.find('.bIcon').attr('id', 'img' + id).click(function() { showDetails(id); }).after(drawDetails ? name : ('<a href="' + window.location.pathname + '/' + id + '">' + name + '</a... | function entry( /* Object */ dataEntry ) { var trElement = tr( null, { id: "entry" + dataEntry.id } ); entryInternal( trElement, dataEntry ); $("#plugin_table > tbody").append(trElement); } |
var trElement = tr(null, { id : 'entry' + dataEntry.id }); entryInternal(trElement, dataEntry); $('#plugin_table > tbody').append(trElement); | var id = dataEntry.id; var name = dataEntry.id; var _ = tableEntryTemplate.clone().attr('id', 'entry' + id).appendTo(tableBody); _.find('.bIcon').attr('id', 'img' + id).click(function() { showDetails(id); }).after(drawDetails ? name : ('<a href="' + window.location.pathname + '/' + id + '">' + name + '</a>')); _.find... | function entry( /* Object */dataEntry) { var trElement = tr(null, { id : 'entry' + dataEntry.id }); entryInternal(trElement, dataEntry); $('#plugin_table > tbody').append(trElement);} |
var inputElement = createElement("img", "rightButton", { src : appRoot + "/res/imgs/arrow_right.png", style : { border : "none" }, id : 'img' + id, title : "Details", alt : "Details", width : 14, height : 14 | var inputElement = createElement('span', 'ui-icon ui-icon-triangle-1-e', { title: i18n.detailsTip, id: 'img' + id, style: {display: 'inline-block'} | function entryInternal( /* Element */parent, /* Object */dataEntry) { var id = dataEntry.id; var name = dataEntry.id; var inputElement = createElement("img", "rightButton", { src : appRoot + "/res/imgs/arrow_right.png", style : { border : "none" }, id : 'img' + id, title : "Details", alt : "Details", width : 1... |
titleElement = createElement("a", null, { href : window.location.pathname + "/" + id | titleElement = createElement('a', null, { href : window.location.pathname + '/' + id | function entryInternal( /* Element */parent, /* Object */dataEntry) { var id = dataEntry.id; var name = dataEntry.id; var inputElement = createElement("img", "rightButton", { src : appRoot + "/res/imgs/arrow_right.png", style : { border : "none" }, id : 'img' + id, title : "Details", alt : "Details", width : 1... |
var bundleElement = createElement("a", null, { | var bundleElement = createElement('a', null, { | function entryInternal( /* Element */parent, /* Object */dataEntry) { var id = dataEntry.id; var name = dataEntry.id; var inputElement = createElement("img", "rightButton", { src : appRoot + "/res/imgs/arrow_right.png", style : { border : "none" }, id : 'img' + id, title : "Details", alt : "Details", width : 1... |
bundleElement.appendChild(text(dataEntry.bundleSymbolicName + " (" + dataEntry.bundleId + ")")); | bundleElement.appendChild(text(dataEntry.bundleSymbolicName + ' (' + dataEntry.bundleId + ')')); | function entryInternal( /* Element */parent, /* Object */dataEntry) { var id = dataEntry.id; var name = dataEntry.id; var inputElement = createElement("img", "rightButton", { src : appRoot + "/res/imgs/arrow_right.png", style : { border : "none" }, id : 'img' + id, title : "Details", alt : "Details", width : 1... |
parent .appendChild(td(null, null, [ inputElement, text(" "), titleElement ])); | parent.appendChild(td(null, null, [ inputElement, text(' '), titleElement ])); | function entryInternal( /* Element */parent, /* Object */dataEntry) { var id = dataEntry.id; var name = dataEntry.id; var inputElement = createElement("img", "rightButton", { src : appRoot + "/res/imgs/arrow_right.png", style : { border : "none" }, id : 'img' + id, title : "Details", alt : "Details", width : 1... |
tr.find('td:eq(1) span:eq(0)').attr('id', 'img'+id).click(function() {showDetails(id)}); tr.find('td:eq(1) span:eq(1)').html( drawDetails ? name : '<a href="' + pluginRoot + '/' + id + '">' + name + '</a>' ); | tr.find('.bIcon').attr('id', 'img'+id).click(function() {showDetails(id)}); tr.find('.bName').html( drawDetails ? name : '<a href="' + pluginRoot + '/' + id + '">' + name + '</a>' ); | function entryInternal( /* Object */ bundle ) { var tr = bundlesTemplate.clone(); var id = bundle.id; var name = bundle.name + '<span class="symName">' + bundle.symbolicName + '</span>'; tr.attr('id', 'entry'+id); tr.find('td:eq(0)').text(id); tr.find('td:eq(1) span:eq(0)').attr('id', 'img'+id).click(function() {... |
var id = dataEntry.id; var name = dataEntry.name; var state = dataEntry.state; var inputElement = createElement("img", "rightButton", { src: appRoot + "/res/imgs/arrow_right.png", style: {"border": "none"}, id: 'img' + id, title: "Details", alt: "Details", width: 14, height: 14 }); | var id = dataEntry.id; var name = dataEntry.name; var state = dataEntry.state; var inputElement = createElement('span', 'ui-icon ui-icon-triangle-1-e', { title: "Details", id: 'img' + id, style: {display: "inline-block"} }); | function entryInternal( /* Element */ parent, /* Object */ dataEntry ) { var id = dataEntry.id; var name = dataEntry.name; var state = dataEntry.state; var inputElement = createElement("img", "rightButton", { src: appRoot + "/res/imgs/arrow_right.png", style: {"border": "none"}, id: 'img'... |
var titleElement; if ( drawDetails ) { titleElement = text(name); } else { titleElement = createElement ("a", null, { href: window.location.pathname + "/" + id }); titleElement.appendChild(text(name)); } parent.appendChild( td( null, null, [ text( id ) ] ) ); parent.appendChild( td( null, null, [ inputElement, text(" ... | var titleElement; if ( drawDetails ) { titleElement = text(name); } else { titleElement = createElement ("a", null, { href: window.location.pathname + "/" + id }); titleElement.appendChild(text(name)); } parent.appendChild( td( null, null, [ text( id ) ] ) ); parent.appendChild( td( null, null, [ inputElement, text(" ... | function entryInternal( /* Element */ parent, /* Object */ dataEntry ) { var id = dataEntry.id; var name = dataEntry.name; var state = dataEntry.state; var inputElement = createElement("img", "rightButton", { src: appRoot + "/res/imgs/arrow_right.png", style: {"border": "none"}, id: 'img'... |
parent.appendChild( td( null, null, [ text( level ) ] ) ); | parent.appendChild( td( null, { lvl:dataEntry.raw_level }, [ text( level ) ] ) ); | function entryInternal( /* Element */ parent, /* Object */ dataEntry ) { var id = dataEntry.id; var message = dataEntry.message; var level = dataEntry.level; var exception = dataEntry.exception; var service = dataEntry.service; switch (dataEntry.raw_level) { // i18n case 1: level = i18n.error; break; c... |
var inputElement = createElement("img", "rightButton", { src: appRoot + "/res/imgs/arrow_right.png", style: {border: "none"}, id: 'img' + id, title: "Details", alt: "Details", width: 14, height: 14 | var inputElement = createElement('span', 'ui-icon ui-icon-triangle-1-e', { title: "Details", id: 'img' + id, style: {display: "inline-block"} | function entryInternal( /* Element */ parent, /* Object */ dataEntry ) { var id = dataEntry.id; var name = dataEntry.name; var state = dataEntry.state; var inputElement = createElement("img", "rightButton", { src: appRoot + "/res/imgs/arrow_right.png", style: {border: "none"}, id: 'img' + id... |
var div = createElement("div", null, { style: { "text-align" : "left"} }); | var div = createElement('ul', 'icons ui-widget'); | function entryInternal( /* Element */ parent, /* Object */ dataEntry ) { var id = dataEntry.id; var name = dataEntry.name; var state = dataEntry.state; var inputElement = createElement("img", "rightButton", { src: appRoot + "/res/imgs/arrow_right.png", style: {border: "none"}, id: 'img' + id... |
switch (dataEntry.raw_level) { case 1: level = i18n.error; break; case 2: level = i18n.warn; break; case 3: level = i18n.info; break; case 4: level = i18n.debug; break; } | function entryInternal( /* Element */ parent, /* Object */ dataEntry ) { var id = dataEntry.id; var message = dataEntry.message; var level = dataEntry.level; var exception = dataEntry.exception; var service = dataEntry.service; parent.appendChild( td( null, null, [ text( printDate(dataEntry.received) ... | |
parent.appendChild( td( null, null, [ text( message ) ] ) ); parent.appendChild( td( null, null, [ text( service ) ] ) ); | parent.appendChild( td( null, null, [ text( wordWrap(message) ) ] ) ); parent.appendChild( td( null, null, [ text( wordWrap(service) ) ] ) ); | function entryInternal( /* Element */ parent, /* Object */ dataEntry ) { var id = dataEntry.id; var message = dataEntry.message; var level = dataEntry.level; var exception = dataEntry.exception; var service = dataEntry.service; parent.appendChild( td( null, null, [ text( printDate(dataEntry.received) ... |
} | }; | var environmentdisposer = function(disposed) { $.extend(target, disposed); } |
params: {eventId: event.id, op: 'recordEvent'}, | params: { eventId: event.id, op: 'recordEvent', config_name: confcombo.getValue() }, | tvheadend.epgDetails = function(event) { var content = ''; if(event.chicon != null && event.chicon.length > 0) content += '<img class="x-epg-chicon" src="' + event.chicon + '">'; content += '<div class="x-epg-title">' + event.title + '</div>'; content += '<div class="x-epg-desc">' + event.episode + '</d... |
now = new Date(); if(event.start < now && event.end > now) { content += "<div class=\"x-epg-meta\">" + "<a href=\"javascript:tvheadend.VLC('stream/channelid/" + event.channelid + "')\">Play</a>" + "</div>"; } | tvheadend.epgDetails = function(event) { var content = ''; if(event.chicon != null && event.chicon.length > 0) content += '<img class="x-epg-chicon" src="' + event.chicon + '">'; content += '<div class="x-epg-title">' + event.title + '</div>'; content += '<div class="x-epg-desc">' + event.episode + '</d... | |
(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=/^... | eq: function( i ) { return i === -1 ? this.slice( i ) : this.slice( i, +i + 1 ); }, | (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=/^... |
eq: function(elem, i, match){ return match[3] - 0 == i; } | (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=/^... | eq: function(elem, i, match){ return match[3] - 0 == i; } |
var eraseSelection = function(selectedElement, handler) { if (handler && selectedElement) { handler(selectedElement); } }; | (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... | var eraseSelection = function(selectedElement, handler) { if (handler && selectedElement) { handler(selectedElement); } }; |
error : function(msg) { this.log(this.YMLog_Error, msg); }, | 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.... | error : function(msg) { this.log(this.YMLog_Error, msg); }, |
error: function (xhr, textStatus, errorThrown) { fluid.fail("Error fetching " + that.options.recordType + " schema:" + textStatus); } | $.error = function( msg ) { equal( msg, "no such method 'missing' for testWidget widget instance", "invalid method call on widget instance" ); }; | error: function (xhr, textStatus, errorThrown) { fluid.fail("Error fetching " + that.options.recordType + " schema:" + textStatus); } |
}(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... | Sizzle.error = function( msg ) { throw "Syntax error, unrecognized expression: " + msg; }; | }(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... |
error: function(response, textStatus, errorThrown) { thisSpec.fetchError = { status: response.status, textStatus: response.textStatus, errorThrown: errorThrown }; thisSpec.queued = false; fluid.fetchResources(resourceSpecs, callback); } | }(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... | error: function(response, textStatus, errorThrown) { thisSpec.fetchError = { status: response.status, textStatus: response.textStatus, errorThrown: errorThrown }; thisSpec.queued = false; fluid.fetchResources(resourceSpecs, callback); ... |
errorEvent.fire("search", textStatus); } | that.events.onError.fire("search", textStatus); } | error: function (xhr, textStatus, errorThrown) { errorEvent.fire("search", textStatus); } |
return jwplayer(player); | return jwplayer(player.id); | function error(player) { return function(arg) { addEventListener(player, $.fn.jwplayer.events.JWPLAYER_MEDIA_ERROR, arg); return jwplayer(player); }; } |
$.fn.log("error:" + event.type); | sendEvent($(event.target), $.jwplayer().events.JWPLAYER_ERROR, {}); | function errorHandler(event) { $.fn.log("error:" + event.type); } |
sendEvent(player, $.fn.jwplayer.events.JWPLAYER_ERROR, {}); | player.sendEvent($.fn.jwplayer.events.JWPLAYER_ERROR, {}); | function errorHandler(event, player) { sendEvent(player, $.fn.jwplayer.events.JWPLAYER_ERROR, {}); } |
return false; | that.escapeHandler = function(event) { // TODO: too annoying to use plugin because of FLUID-1313 if (event.keyCode === $.ui.keyCode.ESCAPE) { that.events.revertState.fire(); return false; } }; | |
var escHandler = function (evt) { var code = keyCode(evt); if (code === $.ui.keyCode.ESCAPE) { cancel(that); return false; } }; | (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... | var escHandler = function (evt) { var code = keyCode(evt); if (code === $.ui.keyCode.ESCAPE) { cancel(that); return false; } }; |
(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=/^... | function evalScript( i, elem ) { if ( elem.src ) { jQuery.ajax({ url: elem.src, async: false, dataType: "script" }); } else { jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" ); } if ( elem.parentNode ) { elem.parentNode.removeChild( elem ); } } | (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=/^... |
function evalScript( i, elem ) { if ( elem.src ) jQuery.ajax({ url: elem.src, async: false, dataType: "script" }); else jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" ); if ( elem.parentNode ) elem.parentNode.removeChild( elem ); } | (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=/^... | function evalScript( i, elem ) { if ( elem.src ) jQuery.ajax({ url: elem.src, async: false, dataType: "script" }); else jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" ); if ( elem.parentNode ) elem.parentNode.removeChild( elem );} |
function evaluateAction(actionUrl, method, data, lock, showLoader) { | function evaluateAction(actionUrl, method, data, lock) { | function evaluateAction(actionUrl, method, data, lock, showLoader) { if(!actionsLocked) { if(!method) method = 'get'; if(lock === null) lock = true; if(showLoader === null) showLoader = true; if(lock) lockActions(); jQuery.ajax({ url: actionUrl, type: method, processUpdates: true, dataType: 'jso... |
if(lock === null) lock = true; if(showLoader === null) showLoader = true; | if(lock == null) lock = true; | function evaluateAction(actionUrl, method, data, lock, showLoader) { if(!actionsLocked) { if(!method) method = 'get'; if(lock === null) lock = true; if(showLoader === null) showLoader = true; if(lock) lockActions(); jQuery.ajax({ url: actionUrl, type: method, processUpdates: true, dataType: 'jso... |
if(showAjaxLoader) insertAjaxLoader();}, | if(ajaxLoader) insertAjaxLoader();}, | function evaluateAction(actionUrl, method, data, lock) { if(!actionsLocked) { if(!method) method = 'get'; if(lock === null) lock = true; if(lock) lockActions(); jQuery.ajax({ url: actionUrl, type: method, processUpdates: true, dataType: 'json', data: data, beforeSend: function(xhr) { if(... |
if(showAjaxLoader) removeAjaxLoader(); | if(ajaxLoader) removeAjaxLoader(); | function evaluateAction(actionUrl, method, data, lock) { if(!actionsLocked) { if(!method) method = 'get'; if(lock === null) lock = true; if(lock) lockActions(); jQuery.ajax({ url: actionUrl, type: method, processUpdates: true, dataType: 'json', data: data, beforeSend: function(xhr) { if(... |
function evaluateAnchorAction(anchor) { | function evaluateAnchorAction(anchor, event) { | function evaluateAnchorAction(anchor) { if(hasActionUrl(anchor)) { var actionUrl = jQuery(anchor).attr('href'); evaluateAction(actionUrl); if(hasHashUrl(anchor)) { setHash(hashUrl(anchor)); } } } |
} | }; event.preventDefault(); | function evaluateAnchorAction(anchor) { if(hasActionUrl(anchor)) { var actionUrl = jQuery(anchor).attr('href'); evaluateAction(actionUrl); if(hasHashUrl(anchor)) { setHash(hashUrl(anchor)); } } } |
event.preventDefault(); | if(event) event.preventDefault(); | function evaluateAnchorAction(anchor, event) { if(hasActionUrl(anchor)) { var actionUrl = jQuery(anchor).attr('href'); evaluateAction(actionUrl); if(hasHashUrl(anchor)) { setHash(hashUrl(anchor)); }; event.preventDefault(); } } |
function evaluateFormElementAction(formElement) { | function evaluateFormElementAction(formElement, event) { | function evaluateFormElementAction(formElement) { var form = jQuery(formElement).closest("form"); if(isMultipart(form)) { evaluateMultipartFormAction(form); } else { evaluateFormAction(form); } } |
event.preventDefault(); | function evaluateFormElementAction(formElement) { var form = jQuery(formElement).closest("form"); if(isMultipart(form)) { evaluateMultipartFormAction(form); } else { evaluateFormAction(form); } } | |
event.preventDefault(); | if(event) event.preventDefault(); | function evaluateFormElementAction(formElement, event) { var form = jQuery(formElement).closest("form"); if(isMultipart(form)) { evaluateMultipartFormAction(form); } else { evaluateFormAction(form); event.preventDefault(); } } |
lockActions(); | function evaluateMultipartFormAction(form) { if(!actionsLocked) { lockActions(); var hidden = "<input type='hidden' name='_ajax_upload'></input>"; var upload_target = jQuery('#_upload_target'); if(upload_target.size() == 0) { upload_target = jQuery( "<iframe id='_upload_target' name='_upload_target' " ... | |
unlockActions(); | function evaluateMultipartFormAction(form) { if(!actionsLocked) { lockActions(); var hidden = "<input type='hidden' name='_ajax_upload'></input>"; var upload_target = jQuery('#_upload_target'); if(upload_target.size() == 0) { upload_target = jQuery( "<iframe id='_upload_target' name='_upload_target' " ... | |
upload_target.bind('load', function(e) { unlockActions(); evaluateAction(); }); | function evaluateMultipartFormAction(form) { if(!actionsLocked) { lockActions(); var hidden = "<input type='hidden' name='_ajax_upload'></input>"; var upload_target = jQuery('#_upload_target'); if(upload_target.size() == 0) { upload_target = jQuery( "<iframe id='_upload_target' name='_upload_target' " ... | |
upload_target.one('load', function(e) { unlockActions(); evaluateAction('?_state='+jQuery(form).find('input[name=_state]').val()); }); | function evaluateMultipartFormAction(form) { if(!actionsLocked) { lockActions(); var hidden = "<input type='hidden' name='_ajax_upload'></input>"; var upload_target = jQuery('#_upload_target'); if(upload_target.size() == 0) { upload_target = jQuery( "<iframe id='_upload_target' name='_upload_target' " ... | |
(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=/^... | jQuery.Event = function( src ) { if ( !this.preventDefault ) { return new jQuery.Event( src ); } if ( src && src.type ) { this.originalEvent = src; this.type = src.type; } else { this.type = src; } this.timeStamp = now(); this[ expando ] = true; }; | (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=/^... |
jQuery.Event = function( src ){ if( !this.preventDefault ) return new jQuery.Event(src); if( src && src.type ){ this.originalEvent = src; this.type = src.type; }else this.type = src; this.timeStamp = now(); this[expando] = true; }; | (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=/^... | jQuery.Event = function( src ){ // Allow instantiation without the 'new' keyword if( !this.preventDefault ) return new jQuery.Event(src); // Event object if( src && src.type ){ this.originalEvent = src; this.type = src.type; // Event type }else this.type = src; // timeStamp is buggy for some events on Firefox(#384... |
version: jwplayer.html5.version, | version: jwplayer.version, | jwplayer.html5.eventdispatcher = function(id, debug) { var _id = id; var _debug = debug; var _listeners; var _globallisteners; /** Clears all event listeners **/ this.resetEventListeners = function() { _listeners = {}; _globallisteners = []; }; this.resetEventListeners(); /** Add an event listener f... |
(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=/^... | eventHandle = elemData.handle, eventHandle; if ( !eventHandle ) { elemData.handle = eventHandle = function() { return typeof jQuery !== "undefined" && !jQuery.event.triggered ? jQuery.event.handle.apply( eventHandle.elem, arguments ) : undefined; }; | (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=/^... |
(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=/^... | var eventSupported = function( eventName ) { var el = document.createElement("div"); eventName = "on" + eventName; var isSupported = (eventName in el); if ( !isSupported ) { el.setAttribute(eventName, "return;"); isSupported = typeof el[eventName] === "function"; } el = null; return isSupported; }; | (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=/^... |
function executeCommand(command) { var xmlhttp = getXmlHttp(); if (!xmlhttp) { return; } if (xmlhttp.readyState < 4) { xmlhttp.abort(); } var url = document.location; xmlhttp.open("POST", url); xmlhttp.setRequestHeader("If-Modified-Since", new Date(0)); xmlhttp.setRequestHeader("Content-Type","application/x-www-f... | function executeCommand(cmd) { $.post(document.location.href, { 'command' : encodeURIComponent(cmd) }, function(result) { console.removeClass('ui-helper-hidden').append(result); consoleframe.attr('scrollTop', console.attr('scrollHeight')); command.val(''); shellCommandFocus(); }, 'html'); | function executeCommand(command) { var xmlhttp = getXmlHttp(); if (!xmlhttp) { return; } if (xmlhttp.readyState < 4) { xmlhttp.abort(); } var url = document.location; xmlhttp.open("POST", url); // set If-Modified-Since way back in the past to prevent // using any... |
if ('undefined' != typeof root[subNms]) { return true; | var p = subNms.split("."); var len = p.length; for (var i = 0; i < len; i++) { if ('undefined' == typeof root[p[i]]) { return false; } root = root[p[i]]; } return true; } catch (e) { return false; | this.exists = function(root, subNms) { if (!root) { return false; } //initial condition root set element not set or null //equals to element exists if (!subNms) { return true; } //special condition subname... |
var p = subNms.split("."); var len = p.length; for (var i = 0; i < len; i++) { if ('undefined' == typeof root[p[i]]) { return false; } root = root[p[i]]; } return true; | this.exists = function(root, subNms) { if (!root) { return false; } //initial condition root set element not set or null //equals to element exists if (!subNms) { return true; } //special condition subname... | |
} | }; | var expandChildren = function (entry, pusher) { var children = entry.children; for (var i = 0; i < children.length; ++ i) { // each child in this list will lead to a WHOLE FORKED set of children. var target = []; var comp = { children: target}; ... |
function expandColumnDefs(filteredRow, opts) { var tree = fluid.transform(opts.columnDefs, function (columnDef) { var ID = iDforColumn(columnDef, opts); var togo; if (!columnDef.components) { return { ID: ID, valuebinding: opts.EL }; } else if (typeof columnDef.components === 'function') { togo = columnDef.components(f... | (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 expandColumnDefs(filteredRow, opts) { var tree = fluid.transform(opts.columnDefs, function (columnDef) { var ID = iDforColumn(columnDef, opts); var togo; if (!columnDef.components) { return { ID: ID, valuebinding: ... |
var expander = entry; var expanded = fluid.invokeGlobalFunction(expander.type, [expander, proto, key, expandConfig]); fluid.each(expanded, function(el) {target[target.length] = el;}); | var expanders = fluid.makeArray(entry); fluid.each(expanders, function (expander) { var expanded = fluid.invokeGlobalFunction(expander.type, [expander, proto, key, expandConfig]); fluid.each(expanded, function(el) {target[target.length] = el;}); }); | var expandCond = function (proto, target) { for (var key in proto) { var entry = proto[key]; if (key.charAt(0) === IDescape) { key = key.substring(1); } if (key === "expander") { var expander = entry; ... |
fluid.each(expanded, function(el) {target[target.length] = el}); | fluid.each(expanded, function(el) {target[target.length] = el;}); | var expandCond = function (proto, target) { for (var key in proto) { var entry = proto[key]; if (key.charAt(0) === IDescape) { key = key.substring(1); } if (key === "expander") { var expander = entry; ... |
} | }; | var expandCond = function (proto, target) { for (var key in proto) { var entry = proto[key]; if (key.charAt(0) === IDescape) { key = key.substring(1); } if (key === "expander") { var expander = entry; ... |
} | }; | var expandEntry = function(entry) { var comp = []; expandCond(entry, comp); return {children: comp}; } |
} | }; | var expandExternal = function(entry) { var singleTarget; var target = []; var pusher = function(comp) { singleTarget = comp; } expandLeafOrCond(entry, target, pusher); return singleTarget || target; } |
else togo[key] = leaf[key]; | else { togo[key] = leaf[key]; } | var expandLeaf = function(leaf, componentType) { var togo = {componentType: componentType}; var map = fluid.renderer.boundMap[componentType] || {}; for (var key in leaf) { if (/decorators|args/.test(key)) { togo[key] = expandLight(leaf[key]); ... |
} | }; | var expandLeafOrCond = function (entry, target, pusher) { var componentType = fluid.renderer.inferComponentType(entry); if (!componentType && (fluid.isPrimitive(entry) || detectBareBound(entry))) { componentType = "UIBound"; } if (componentType) { ... |
var expandLight = function(source) { return fluid.resolveEnvironment(source, options.model, options); }; | fluid.expander.expandLight = function (source, expandOptions) { var options = $.extend({}, expandOptions); options.filter = fluid.expander.lightFilter; return fluid.resolveEnvironment(source, options.model, options); }; | var expandLight = function(source) { return fluid.resolveEnvironment(source, options.model, options); }; |
var expandOptions = function (pageBuilder, args) { var optIndex = args.length - 1; for (var i = 1; i < optIndex; i++) { var arg = args[i]; if ((typeof(arg) === "string") && (arg.indexOf("{pageBuilder}") === 0)) { args[i] = fluid.model.getBeanValue(pageBuilder, arg.substring(14, arg.length)); } } var options = args[optI... | var expandOptions = function (pageBuilder, args) { $.each(args, function (index, arg) { if (arg) { var type = typeof(arg); if (type === "object") { expandOptions(pageBuilder, arg); } else if (type === "string" && arg.indexOf("{pageBuilder}") === 0) { args[index] = fluid.model.getBeanValue(pageBuilder, arg.substring(14,... | var expandOptions = function (pageBuilder, args) { var optIndex = args.length - 1; for (var i = 1; i < optIndex; i++) { var arg = args[i]; if ((typeof(arg) === "string") && (arg.indexOf("{pageBuilder}") === 0)) { args[i] = fluid.model.getBeanValue(pageBuilder, arg.... |
} | }); | var expandOptions = function (pageBuilder, args) { var optIndex = args.length - 1; for (var i = 1; i < optIndex; i++) { var arg = args[i]; if ((typeof(arg) === "string") && (arg.indexOf("{pageBuilder}") === 0)) { args[i] = fluid.model.getBeanValue(pageBuilder, arg.... |
function expandPath(EL, shortRoot, longRoot) { if (EL.charAt(0) === "*") { return longRoot + EL.substring(1); } else { return EL.replace("*", shortRoot); } } | (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 expandPath(EL, shortRoot, longRoot) { if (EL.charAt(0) === "*") { return longRoot + EL.substring(1); } else { return EL.replace("*", shortRoot); } } |
function expandPaths(target, tree, opts) { for (var i in tree) { var val = tree[i]; if (val === fluid.VALUE) { if (i === "valuebinding") { target[i] = opts.EL; } else { target[i] = {"valuebinding" : opts.EL}; } } else if (i === "valuebinding") { target[i] = expandPath(tree[i], opts); } else if (typeof(val) === 'object'... | (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 expandPaths(target, tree, opts) { for (var i in tree) { var val = tree[i]; if (val === fluid.VALUE) { if (i === "valuebinding") { target[i] = opts.EL; } else { target[i] = {"valuebinding" : opts.... |
function expandVariables(value, opts) { var togo = ""; var index = 0; while (true) { var nextindex = value.indexOf("${", index); if (nextindex === -1) { togo += value.substring(index); break; } else { togo += value.substring(index, nextindex); var endi = value.indexOf("}", nextindex + 2); var EL = value.substring(nexti... | (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 expandVariables(value, opts) { var togo = ""; var index = 0; while (true) { var nextindex = value.indexOf("${", index); if (nextindex === -1) { togo += value.substring(index); break; } else { togo ... |
fluid.expectFilledSelector = function (result, message) { if (result && result.length === 0 && result.jquery) { fluid.fail(message + ": selector \"" + result.selector + "\" with name " + result.selectorName + " returned no results in context " + fluid.dumpEl(result.context)); } }; | (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.expectFilledSelector = function (result, message) { if (result && result.length === 0 && result.jquery) { fluid.fail(message + ": selector \"" + result.selector + "\" with name " + result.selectorName + " returned no results in context " + fluid.dumpEl(result.context));... |
fluid.explode = function(hash, basepath) { var togo = []; for (var key in hash) { var binding = basepath === undefined? key : basepath + "." + key; togo[togo.length] = {ID: key, value: hash[key], valuebinding: binding}; } return togo; }; | (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.explode = function(hash, basepath) { var togo = []; for (var key in hash) { var binding = basepath === undefined? key : basepath + "." + key; togo[togo.length] = {ID: key, value: hash[key], valuebinding: binding}; } return togo; }; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.