rem stringlengths 0 126k | add stringlengths 0 441k | context stringlengths 15 136k |
|---|---|---|
$(this).attr("src", appRoot + "/res/imgs/arrow_down.png"); $(this).attr("title", "Hide Details"); $(this).attr("alt", "Hide Details"); $(this).unbind('click').click(function() { hideDetails(data.id) }); | $(this). removeClass('ui-icon-triangle-1-w'). removeClass('ui-icon-triangle-1-e'). addClass('ui-icon-triangle-1-s'). attr('title', i18n.detailsHide). unbind('click').click(function() {hideDetails(data.id)}); | function renderDetails(data) { data = data.data[0]; $("#pluginInlineDetails").remove(); $("#entry" + data.id + " > td").eq(1).append( "<div id='pluginInlineDetails'/>"); $("#img" + data.id).each(function() { if (drawDetails) { $(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title", "Back... |
$("#pluginInlineDetails").append( "<table border='0'><tbody></tbody></table>"); var details = data.props; for ( var idx in details) { var prop = details[idx]; var txt = "<tr><td class='aligntop' noWrap='true' style='border:0px none'>" + prop.key + "</td><td class='aligntop' style='border:0px none'>"; if (prop.value) {... | if (data.props) $('#pluginInlineDetails' + data.id).append( renderObjectAsTable(data.props) ); | function renderDetails(data) { data = data.data[0]; $("#pluginInlineDetails").remove(); $("#entry" + data.id + " > td").eq(1).append( "<div id='pluginInlineDetails'/>"); $("#img" + data.id).each(function() { if (drawDetails) { $(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title", "Back... |
$(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title", "Back"); $(this).attr("alt", "Back"); var ref = window.location.pathname; ref = ref.substring(0, ref.lastIndexOf('/')); $(this).unbind('click').click(function() {window.location = ref;}); | var ref = window.location.pathname; ref = ref.substring(0, ref.lastIndexOf('/')); $(this). removeClass('ui-icon-triangle-1-e'). removeClass('ui-icon-triangle-1-s'). addClass('ui-icon-triangle-1-w'). attr("title", "Back"). unbind('click').click(function() {window.location = ref}); | function renderDetails( data ) { data = data.data[0]; $("#pluginInlineDetails").remove(); $("#entry" + data.id + " > td").eq(1).append("<div id='pluginInlineDetails'/>"); $("#img" + data.id).each(function() { if ( drawDetails ) { $(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title"... |
$(this).attr("src", appRoot + "/res/imgs/arrow_down.png"); $(this).attr("title", "Hide Details"); $(this).attr("alt", "Hide Details"); $(this).unbind('click').click(function() {hideDetails(data.id)}); | $(this). removeClass('ui-icon-triangle-1-w'). removeClass('ui-icon-triangle-1-e'). addClass('ui-icon-triangle-1-s'). attr("title", "Hide Details"). unbind('click').click(function() {hideDetails(data.id)}); | function renderDetails( data ) { data = data.data[0]; $("#pluginInlineDetails").remove(); $("#entry" + data.id + " > td").eq(1).append("<div id='pluginInlineDetails'/>"); $("#img" + data.id).each(function() { if ( drawDetails ) { $(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title"... |
var details = data.props; for (var idx in details) { var prop = details[idx]; var txt = "<tr><td class='aligntop' noWrap='true' style='border:0px none'>" + prop.key + "</td><td class='aligntop' style='border:0px none'>"; if (prop.value) { if ( $.isArray(prop.value) ) { var i = 0; for(var pi in prop.value) { var value ... | var details = data.props; for (var idx in details) { var prop = details[idx]; var key = i18n[prop.key] ? i18n[prop.key] : prop.key; var txt = "<tr><td class='aligntop' noWrap='true' style='border:0px none'>" + key + "</td><td class='aligntop' style='border:0px none'>"; if (prop.value) { if ( $.isArray(prop.value) ) { ... | function renderDetails( data ) { data = data.data[0]; $("#pluginInlineDetails").remove(); $("#entry" + data.id + " > td").eq(1).append("<div id='pluginInlineDetails'/>"); $("#img" + data.id).each(function() { if ( drawDetails ) { $(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title"... |
$("#entry" + data.id + " > td").eq(1).append("<div id='pluginInlineDetails" + data.id + "'/>"); $("#img" + data.id).each(function() { if ( drawDetails ) { $(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title", "Back"); $(this).attr("alt", "Back"); var ref = window.location.pathname; ref = ref... | $("#entry" + data.id + " > td").eq(1).append("<div id='pluginInlineDetails" + data.id + "'/>"); $("#img" + data.id).each(function() { if ( drawDetails ) { var ref = window.location.pathname; ref = ref.substring(0, ref.lastIndexOf('/')); $(this). removeClass('ui-icon-triangle-1-e'). removeClass('ui-icon-triangle-1-s').... | function renderDetails( data ) { $("#entry" + data.id + " > td").eq(1).append("<div id='pluginInlineDetails" + data.id + "'/>"); $("#img" + data.id).each(function() { if ( drawDetails ) { $(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title", "Back"); $(this).attr("alt", "Back"); ... |
var txt = "<tr><td class='aligntop' noWrap='true' style='border:0px none'>" + prop.key + "</td><td class='aligntop' style='border:0px none'>"; | var key = i18n[prop.key] ? i18n[prop.key] : prop.key; var txt = "<tr><td class='aligntop' noWrap='true' style='border:0px none'>" + key + "</td><td class='aligntop' style='border:0px none'>"; | function renderDetails( data ) { $("#entry" + data.id + " > td").eq(1).append("<div id='pluginInlineDetails" + data.id + "'/>"); $("#img" + data.id).each(function() { if ( drawDetails ) { $(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title", "Back"); $(this).attr("alt", "Back"); ... |
if ( prop.key == 'Bundle Documentation' ) { txt = txt + "<a href='" + prop.value + "' target='_blank'>" + prop.value + "</a>"; } else { if ( $.isArray(prop.value) ) { var i = 0; for(var pi in prop.value) { var value = prop.value[pi]; if (i > 0) { txt = txt + "<br/>"; } var span; if (value.substring(0, 6) == "INFO: ")... | if ( prop.key == 'Bundle Documentation' ) { txt = txt + "<a href='" + prop.value + "' target='_blank'>" + prop.value + "</a>"; } else { if ( $.isArray(prop.value) ) { var i = 0; for(var pi in prop.value) { var value = prop.value[pi]; if (i > 0) { txt = txt + "<br/>"; } txt = txt + value; i++; } } else { txt = txt + p... | function renderDetails( data ) { $("#entry" + data.id + " > td").eq(1).append("<div id='pluginInlineDetails" + data.id + "'/>"); $("#img" + data.id).each(function() { if ( drawDetails ) { $(this).attr("src", appRoot + "/res/imgs/arrow_left.png"); $(this).attr("title", "Back"); $(this).attr("alt", "Back"); ... |
var min = value % 60; | var min = parseInt(value % 60); | function renderDuration(value){ value = value / 60; /* Nevermind the seconds */ if(value >= 60) { var min = value % 60; var hours = parseInt(value / 60); if(min == 0) { return hours + ' hrs'; } return hours + ' hrs, ' + min + ' min'; } else { return value + ' min'; ... |
return value + ' min'; | return parsInt(value) + ' min'; | function renderDuration(value){ value = value / 60; /* Nevermind the seconds */ if(value >= 60) { var min = value % 60; var hours = parseInt(value / 60); if(min == 0) { return hours + ' hrs'; } return hours + ' hrs, ' + min + ' min'; } else { return value + ' min'; ... |
return parsInt(value) + ' min'; | return parseInt(value) + ' min'; | function renderDuration(value){ value = value / 60; /* Nevermind the seconds */ if(value >= 60) { var min = parseInt(value % 60); var hours = parseInt(value / 60); if(min == 0) { return hours + ' hrs'; } return hours + ' hrs, ' + min + ' min'; } else { return parsInt... |
var renderEditContainer = function (that, really) { that.editContainer = that.locate("editContainer"); that.editField = that.locate("edit"); if (that.editContainer.length !== 1) { if (that.editField.length === 1) { that.editContainer = that.editField; } else if (that.editContainer.length > 1) { fluid.fail("InlineEdit... | (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 renderEditContainer = function (that, really) { // If an edit container is found in the markup, use it. Otherwise generate one based on the view text. that.editContainer = that.locate("editContainer"); that.editField = that.locate("edit"); if (that.editContainer.length !== 1) { ... |
return tvheadend.dvrprio.getById(value).data.name; | if (!value) { return '<span class="tvh-grid-unset">(default)</span>'; } else { return value; } | renderer: function(value, metadata, record, row, col, store) { return tvheadend.dvrprio.getById(value).data.name; }, |
var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}"}); | var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}", model: that.model}); | var renderList = function (that) { var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}"}); var protoTree = cspace.renderUtils.buildProtoTree(that.uispec, that); var tree = expander(protoTree); if (that.model.items.length <= 0) { tree.children[0].children = [{ ... |
cutpoints: fluid.engage.renderUtils.selectorsToCutpoints(selectors, {}), | cutpoints: fluid.renderer.selectorsToCutpoints(selectors, {}), | var renderList = function (that) { var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}"}); var protoTree = cspace.renderUtils.buildProtoTree(that.uispec, that); var tree = expander(protoTree); if (that.model.items.length <= 0) { tree.children[0].children = [{ ... |
debugMode: true, | var renderPage = function (that) { var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}"}); var protoTree = cspace.renderUtils.buildProtoTree(that.options.uispec, that); var tree = expander(protoTree); cspace.renderUtils.fixSelectionsInTree(tree); var selectors = {}; ... | |
$.extend(true, that.options.renderOptions, { model: that.model, applier: that.applier }); | that.options.renderOptions.model = that.model; that.options.renderOptions.applier = that.applier; | var renderPage = function (that) { that.options.renderOptions.cutpoints.push({id: "repeat:", selector: that.options.selectors.repeat}); // TODO: We should pass the args to the expander that are consistent with generic expanders. var tree = fluid.invokeGlobalFunction(that.options.expande... |
var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}"}); | var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}", model: that.model}); | var renderPage = function (that) { fluid.log("RecordEditor.js renderPage start"); var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}"}); var protoTree = cspace.renderUtils.buildProtoTree(that.uispec, that); fluid.log("RecordEditor.js after buildProtoTree"); var tree = ... |
cutpoints: fluid.engage.renderUtils.selectorsToCutpoints(selectors, {}), | cutpoints: fluid.renderer.selectorsToCutpoints(selectors, {}), | var renderPage = function (that) { fluid.log("RecordEditor.js renderPage start"); var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}"}); var protoTree = cspace.renderUtils.buildProtoTree(that.uispec, that); fluid.log("RecordEditor.js after buildProtoTree"); var tree = ... |
var renderPage = function (that) { that.options.renderOptions.cutpoints.push({id: "repeat:", selector: that.options.selectors.repeat}); var tree = fluid.invokeGlobalFunction(that.options.expander, [that.options.protoTree, that]); that.options.renderOptions.model = that.model; that.options.renderOptions.applier = that... | var renderPage = function (that, blankRowOnly) { var tree = getExpandedTree(that); fluid.clear(that.options.renderOptions.fossils); | var renderPage = function (that) { that.options.renderOptions.cutpoints.push({id: "repeat:", selector: that.options.selectors.repeat}); // TODO: We should pass the args to the expander that are consistent with generic expanders. var tree = fluid.invokeGlobalFunction(that.options.expande... |
bindEventHandlers(that); setupPrimary(that.locate("primary"), fluid.model.getBeanValue(that.model, that.options.elPath)); | positionAddButton(that.locate("add")[0], that.locate("remove")[0]); setupPrimary(that.locate("primary"), that.fetchModel()); | var renderPage = function (that) { that.options.renderOptions.cutpoints.push({id: "repeat:", selector: that.options.selectors.repeat}); // TODO: We should pass the args to the expander that are consistent with generic expanders. var tree = fluid.invokeGlobalFunction(that.options.expande... |
var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}", model: that.model}); var protoTree = cspace.renderUtils.buildProtoTree(that.uispec, that); fluid.log("RecordEditor.js after buildProtoTree"); var tree = expander(protoTree); | var tree = cspace.renderUtils.expander(that.uispec, that); | var renderPage = function (that) { fluid.log("RecordEditor.js renderPage start"); var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}", model: that.model}); var protoTree = cspace.renderUtils.buildProtoTree(that.uispec, that); fluid.log("RecordEditor.js after buildProtoTree");... |
fluid.selfRender(that.container, tree, renderOpts); | if (that.template) { fluid.reRender(that.template, that.container, tree, renderOpts); } else { that.template = fluid.selfRender(that.container, tree, renderOpts); } | var renderPage = function (that) { var expander = fluid.renderer.makeProtoExpander({ELstyle: "${}"}); var protoTree = cspace.renderUtils.buildProtoTree(that.options.uispec, that); var tree = expander(protoTree); cspace.renderUtils.fixSelectionsInTree(tree); var selectors = {}; ... |
that.options.renderOptions.cutpoints.push({id: "repeat:", selector: that.options.selectors.repeat}); | var renderPage = function (that) { // TODO: We should pass the args to the expander that are consistent with generic expanders. var tree = fluid.invokeGlobalFunction(that.options.expander, [that.options.protoTree, that]); $.extend(true, that.options.renderOptions, { model: that.model... | |
setupPrimary(that.locate("primary"), fluid.model.getBeanValue(that.model, that.options.elPath)); | var renderPage = function (that) { that.options.renderOptions.cutpoints.push({id: "repeat:", selector: that.options.selectors.repeat}); // TODO: We should pass the args to the expander that are consistent with generic expanders. var tree = fluid.invokeGlobalFunction(that.options.expande... | |
that.events.afterRender.fire(); | bindHandlers(that); that.events.afterRender.fire(that); | var renderPage = function (that) { fluid.log("RecordEditor.js renderPage start"); var tree = cspace.renderUtils.expander(that.options.uispec, that); var selectors = {}; cspace.renderUtils.buildSelectorsFromUISpec(that.options.uispec, selectors); fluid.log("RecordEditor.js after bu... |
titleElement.appendChild(text(res.presentationname ? res.presentationname : res.symbolicname)); | if (res.presentationname) { titleElement.appendChild(text(res.presentationname)); titleElement.appendChild(text(" (")); titleElement.appendChild(text(res.symbolicname)); titleElement.appendChild(text(")")); } else { titleElement.appendChild(text(res.symbolicname)); } | function renderResource(res) { // proceed with resource var _id = res.symbolicname.replace(/\./g, '_'); var _tr = resTable.find('#row' + _id); if (_tr.length == 0) { // not created yet, create it var blockElement = createElement('span', '', { id: 'block' + _id }); var titleEl... |
renderView( [ "Id", "Type(s)", "Bundle" ]); | function renderServices(data) { $(document).ready(function() { renderView( [ "Id", "Type(s)", "Bundle" ]); renderData(data); var extractMethod = function(node) { var link = node.getElementsByTagName("a"); if (link && link.length == 1) { return link[0].innerHTML; } return node.innerHTML; }; $("#plugin_ta... | |
var extractMethod = function(node) { var link = node.getElementsByTagName("a"); if (link && link.length == 1) { return link[0].innerHTML; } return node.innerHTML; }; $("#plugin_table").tablesorter( { | $('#plugin_table').tablesorter( { | function renderServices(data) { $(document).ready(function() { renderView( [ "Id", "Type(s)", "Bundle" ]); renderData(data); var extractMethod = function(node) { var link = node.getElementsByTagName("a"); if (link && link.length == 1) { return link[0].innerHTML; } return node.innerHTML; }; $("#plugin_ta... |
0 : { sorter : "digit" } | 0 : { sorter : 'digit' } | function renderServices(data) { $(document).ready(function() { renderView( [ "Id", "Type(s)", "Bundle" ]); renderData(data); var extractMethod = function(node) { var link = node.getElementsByTagName("a"); if (link && link.length == 1) { return link[0].innerHTML; } return node.innerHTML; }; $("#plugin_ta... |
textExtraction : extractMethod | textExtraction : mixedLinksExtraction, widgets: ['zebra'] | function renderServices(data) { $(document).ready(function() { renderView( [ "Id", "Type(s)", "Bundle" ]); renderData(data); var extractMethod = function(node) { var link = node.getElementsByTagName("a"); if (link && link.length == 1) { return link[0].innerHTML; } return node.innerHTML; }; $("#plugin_ta... |
fluid.log("Before fixup"); | that.renderTemplates = function() { fluid.log("Before fixup"); tree = fixupTree(tree, options.model); var template = templates[0]; resolveBranches(templates.globalmap, tree, template.rootlump); renderedbindings = {}; renderCollects(); fluid.log("Befor... | |
fluid.log("Before renderRecurse"); | that.renderTemplates = function() { fluid.log("Before fixup"); tree = fixupTree(tree, options.model); var template = templates[0]; resolveBranches(templates.globalmap, tree, template.rootlump); renderedbindings = {}; renderCollects(); fluid.log("Befor... | |
fluid.log("Rendering complete"); | that.renderTemplates = function() { fluid.log("Before fixup"); tree = fixupTree(tree, options.model); var template = templates[0]; resolveBranches(templates.globalmap, tree, template.rootlump); renderedbindings = {}; renderCollects(); fluid.log("Befor... | |
that.renderTemplates = function() { tree = fixupTree(tree, options.model); var template = templates[0]; resolveBranches(templates.globalmap, tree, template.rootlump); renderedbindings = {}; renderCollects(); renderRecurse(tree, template.rootlump, template.lumps[template.firstdocumentindex]); return out; }; | (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.renderTemplates = function() { tree = fixupTree(tree, options.model); var template = templates[0]; resolveBranches(templates.globalmap, tree, template.rootlump); renderedbindings = {}; renderCollects(); renderRecurse(tree, template.rootlump, template.lump... |
function renderUnchanged() { dumpTillLump(trc.uselump.parent.lumps, trc.uselump.lumpindex + 1, trc.close.lumpindex + (trc.iselide ? 0 : 1)); } | (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 renderUnchanged() { // TODO needs work since we don't keep attributes in text dumpTillLump(trc.uselump.parent.lumps, trc.uselump.lumpindex + 1, trc.close.lumpindex + (trc.iselide ? 0 : 1)); } |
var expandrow = fluid.withEnvironment(envAdd, function() {return config.expander(options.tree)}); | var expandrow = fluid.withEnvironment(envAdd, function() {return config.expander(options.tree);}); | fluid.renderer.repeat = function(options, container, key, config) { fluid.expect("Repetition expander", ["controlledBy", "tree"], options); var path = fluid.extractContextualPath(options.controlledBy, {ELstyle: "ALL"}, fluid.threadLocal()); var list = fluid.model.getBeanValue(config.model, path... |
fluid.each(expanded, function(entry) {entry.ID = repeatID}); | fluid.each(expanded, function(entry) {entry.ID = repeatID;}); | fluid.renderer.repeat = function(options, container, key, config) { fluid.expect("Repetition expander", ["controlledBy", "tree"], options); var path = fluid.extractContextualPath(options.controlledBy, {ELstyle: "ALL"}, fluid.threadLocal()); var list = fluid.model.getBeanValue(config.model, path... |
that.refreshView(); bindEventHandlers(that); | cspace.repeatable = function (container, options) { var that = fluid.initView("cspace.repeatable", container, options); that.applier = that.options.applier; that.model = that.options.model; prepareModel(that.model, that.options.elPath, that.applier); fluid.invokeGl... | |
that.refreshView(); | that.fetchModel = function(model) { model = model || that.model; return fluid.model.getBeanValue(that.model, that.options.elPath); }; that.refreshView(); bindEventHandlers(that); | cspace.repeatable = function (container, options) { var that = fluid.initView("cspace.repeatable", container, options); that.applier = that.options.applier; that.model = that.options.model; prepareModel(that.model, that.options.elPath, that.applier); fluid.invokeGl... |
that.model = that.options.model; | that.model = that.options.model; prepareModel(that.model, that.options.elPath, that.applier); | cspace.repeatable = function (container, options) { var that = fluid.initView("cspace.repeatable", container, options); that.applier = that.options.applier; that.model = that.options.model; that.refreshView = function () { renderPage(that); ... |
that.options.generateMarkup(that); | cspace.repeatable = function (container, options) { var that = fluid.initView("cspace.repeatable", container, options); that.applier = that.options.applier; that.model = that.options.model; prepareModel(that.model, that.options.elPath, that.applier); that.r... | |
jQuery(".csc-object-identification-brief-description").val("test"); | jQuery(".csc-object-identification-brief-description").val("test").change(); | var repeatableTester = function () { var testUISpec = {}; var testModel = {}; var repeatable; jQuery.ajax({ async: false, url: "../../main/webapp/html/uispecs/objects/uispec.json", dataType: "json", success: function (data) { testUISpec = data["recordEditor"][".csc-obj... |
}); repeatableTest.test("Add functionality when model initially empty", function () { var oldTestModel = {}; fluid.model.copyModel(oldTestModel, testModel); fluid.clear(testModel); repeatable = setupRepeatable(); jqUnit.assertEquals("When initialized with an empty model, model length should be 1", 1, fluid.model.get... | var repeatableTester = function () { var testUISpec = {}; var testModel = {}; var repeatable; jQuery.ajax({ async: false, url: "../../main/webapp/html/uispecs/objects/uispec.json", dataType: "json", success: function (data) { testUISpec = data["recordEditor"][".csc-obj... | |
SAXStrings.replace = function(strD, iB, iE, strF, strR) { if (!strD) { return "";} iB = iB || 0; iE = iE || strD.length; return strD.substring(iB, iE).split(strF).join(strR); }; | (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... | SAXStrings.replace = function(strD, iB, iE, strF, strR) { if (!strD) { return "";} iB = iB || 0; iE = iE || strD.length; return strD.substring(iB, iE).split(strF).join(strR); }; |
function replaceAttributes() { if (!trc.iselide) { out += fluid.dumpAttributes(trc.attrcopy); } dumpTemplateBody(); } | (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 replaceAttributes() { if (!trc.iselide) { out += fluid.dumpAttributes(trc.attrcopy); } dumpTemplateBody(); } |
function replaceAttributesOpen() { if (trc.iselide) { replaceAttributes(); } else { out += fluid.dumpAttributes(trc.attrcopy); out += ">"; trc.nextpos = trc.endopen.lumpindex; } } | (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 replaceAttributesOpen() { if (trc.iselide) { replaceAttributes(); } else { out += fluid.dumpAttributes(trc.attrcopy); // TODO: the parser does not ever produce empty tags out += // trc.endopen.lumpindex === trc.close.lumpindex... |
function replaceBody(value) { out += fluid.dumpAttributes(trc.attrcopy); if (!trc.iselide) { out += ">"; } out += fluid.XMLEncode(value.toString()); closeTag(); } | (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 replaceBody(value) { out += fluid.dumpAttributes(trc.attrcopy); if (!trc.iselide) { out += ">"; } out += fluid.XMLEncode(value.toString()); closeTag(); } |
evalNode = item.parentNode.replaceChild(evalNode, item); delete item; return evalNode; | var _Browser = this._RT.browser; if (!_Browser.isIE || _Browser.isIE >= 8) { item.parentNode.replaceChild(evalNode, item); } else { item.parentNode.insertBefore(evalNode, item); this._removeNode(item, false); } | replaceElement: function(item, evalNode) { evalNode = item.parentNode.replaceChild(evalNode, item); delete item; return evalNode; }, |
var _Browser = this._RT.browser; if (!_Browser.isIE || _Browser.isIE >= 8) { | replaceElement: function(item, evalNode) { var _Browser = this._RT.browser; if (!_Browser.isIE || _Browser.isIE >= 8) { //standards conform no leaking browser item.parentNode.replaceChild(evalNode, item); } else { //browsers with defect garbage collection ... | |
} else { | replaceElement: function(item, evalNode) { var _Browser = this._RT.browser; if (!_Browser.isIE || _Browser.isIE >= 8) { //standards conform no leaking browser item.parentNode.replaceChild(evalNode, item); } else { //browsers with defect garbage collection ... | |
item.parentNode.insertBefore(evalNode, item); | replaceElement: function(item, evalNode) { var _Browser = this._RT.browser; if (!_Browser.isIE || _Browser.isIE >= 8) { //standards conform no leaking browser item.parentNode.replaceChild(evalNode, item); } else { //browsers with defect garbage collection ... | |
} | replaceElement: function(item, evalNode) { var _Browser = this._RT.browser; if (!_Browser.isIE || _Browser.isIE >= 8) { //standards conform no leaking browser item.parentNode.replaceChild(evalNode, item); } else { //browsers with defect garbage collection ... | |
}, | } | replaceElement: function(item, evalNode) { // var _Browser = this._RT.browser; // if (!_Browser.isIE || _Browser.isIE >= 8) { //standards conform no leaking browser item.parentNode.replaceChild(evalNode, item); // } else { //browsers with defect garbage collection ... |
parentNode.replaceChild(resultArr[cnt], item); delete item; | this.replaceElement(item, resultArr[cnt]); | replaceElements: function (item, evalNodes) { var parentNode = item.parentNode; var evalNodesDefined = 'undefined' != typeof evalNodes.length; if (!evalNodesDefined) { throw new Error("replaceElements called while evalNodes is not an array"); } var sibling = item.nextSi... |
evalNodes = resultArr; | replaceElements: function (item, evalNodes) { var parentNode = item.parentNode; var evalNodesDefined = 'undefined' != typeof evalNodes.length; if (!evalNodesDefined) { throw new Error("replaceElements called while evalNodes is not an array"); } var sibling = item.nextSi... | |
return evalNodes; | return resultArr; | replaceElements: function (item, evalNodes) { var parentNode = item.parentNode; var evalNodesDefined = 'undefined' != typeof evalNodes.length; if (!evalNodesDefined) { throw new Error("replaceElements called while evalNodes is not an array"); } var sibling = item.nextSi... |
for (var cnt = 0; cnt < resultArr.length; cnt++) { if (cnt == 0) { this.replaceElement(item, resultArr[cnt]); } else { if (sibling) { parentNode.insertBefore(resultArr[cnt], sibling); | for (var cnt = 0; cnt < resultArr.length; cnt++) { if (cnt == 0) { this.replaceElement(item, resultArr[cnt]); | replaceElements: function (item, evalNodes) { var parentNode = item.parentNode; var evalNodesDefined = 'undefined' != typeof evalNodes.length; if (!evalNodesDefined) { throw new Error("replaceElements called while evalNodes is not an array"); } var sibling = item.nextSi... |
parentNode.appendChild(resultArr[cnt]); | if (sibling) { parentNode.insertBefore(resultArr[cnt], sibling); } else { parentNode.appendChild(resultArr[cnt]); | replaceElements: function (item, evalNodes) { var parentNode = item.parentNode; var evalNodesDefined = 'undefined' != typeof evalNodes.length; if (!evalNodesDefined) { throw new Error("replaceElements called while evalNodes is not an array"); } var sibling = item.nextSi... |
return resultArr; }, | replaceElements: function (item, evalNodes) { var parentNode = item.parentNode; var evalNodesDefined = 'undefined' != typeof evalNodes.length; if (!evalNodesDefined) { throw new Error("replaceElements called while evalNodes is not an array"); } var sibling = item.nextSi... | |
evalNode = item.parentNode.replaceChild(fragment, item); | if(item.id == 'myfaces_bodyplaceholder') { var parentNode = item.parentNode; parentNode.appendChild(fragment); evalNode = parentNode; } else { var replaceItem = myfaces._impl._util._Utils.findHtmlItemFromFragment(fragment, item.id); if(replaceItem == null)replaceItem = fragment; evalNode = item.parentNode.replaceChild... | myfaces._impl._util._Utils.replaceHtmlItem = function(request, context, itemIdToReplace, newTag, form) { try { //for webkit we have to trim otherwise he does not add the adjancent elements correctly newTag = myfaces._impl._util._LangUtils.trim(newTag); // (itemIdToReplace ins... |
if(item.id != 'myfaces_bodyplaceholder' && ('undefined' == typeof evalNode.id || null == evalNode.id || evalNode.id != item.id)) { var subNode = document.getElementById(item.id); subNode.parentNode.removeChild(subNode); evalNode.parentNode.replaceChild(subNode, evalNode); } | myfaces._impl._util._Utils.replaceHtmlItem = function(request, context, itemIdToReplace, newTag, form) { try { //for webkit we have to trim otherwise he does not add the adjancent elements correctly newTag = myfaces._impl._util._LangUtils.trim(newTag); // (itemIdToReplace ins... | |
comp[key] = val.replace(oldInd+"", newInd+""); | comp[key] = val.replace(re, newInd+""); | var replaceIndex = function (comp, oldInd, newInd) { for (var key in comp) { if (comp.hasOwnProperty(key)) { var val = comp[key]; if ((typeof(val) === "string") && (val.indexOf("${") !== -1)) { comp[key] = val.replace(oldInd+"", newInd+""); ... |
currentSibling = currentSibling.nextSibling; | jwplayer.utils.mediaparser.replaceMediaElement = function(toReplace, html) { if (jwplayer.utils.isIE()) { var endTagFound = false; var siblings = []; var currentSibling = toReplace.nextSibling; while (currentSibling && !endTagFound) { siblings.push(currentSibling); currentSibling = currentSibling.nextSi... | |
currentSibling = currentSibling.nextSibling; | jwplayer.utils.mediaparser.replaceMediaElement = function(toReplace, html) { if (jwplayer.utils.isIE()) { var endTagFound = false; var siblings = []; var currentSibling = toReplace.nextSibling; while (currentSibling && !endTagFound) { siblings.push(currentSibling); currentSibling = currentSibling.nextSi... | |
}(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... | replaceWith: function( value ) { if ( this[0] && this[0].parentNode ) { if ( jQuery.isFunction( value ) ) { return this.each(function(i) { var self = jQuery(this), old = self.html(); self.replaceWith( value.call( this, i, old ) ); }); } if ( typeof value !== "string" ) { value = jQuery(value).detach(); } return thi... | }(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... |
replaceWith: function( value ) { return this.after( value ).remove(); }, | }(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... | replaceWith: function( value ) { return this.after( value ).remove(); }, |
this.oplogSize = opts.oplogSize || 2; | ReplSetTest = function( opts ){ this.name = opts.name || "testReplSet"; this.host = opts.host || getHostName(); this.numNodes = opts.nodes || 0; this.useSeedList = opts.useSeedList || false; this.bridged = opts.bridged || false; this.ports = []; this.startPort = opts.startPort || 31000; if(thi... | |
this.ports = allocatePorts( this.numNodes , startPort ); | this.ports = allocatePorts( this.numNodes , this.startPort ); | ReplSetTest = function( opts ){ this.name = opts.name || "testReplSet"; this.host = opts.host || getHostName(); this.numNodes = opts.nodes || 0; this.bridged = opts.bridged || false; this.ports = []; this.startPort = opts.startPort || 31000; if(this.bridged) { this.bridgePorts = []; ... |
function reportPath( branch) { var path = branch.fullID; return !path ? "component tree root" : "full path " + path; } | (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 reportPath(/*UIComponent*/ branch) { var path = branch.fullID; return !path ? "component tree root" : "full path " + path; } |
that.requestChange = function(path, value, type) { var changeRequest = { path: path, value: value, type: type }; that.fireChangeRequest(changeRequest); }; | (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.requestChange = function(path, value, type) { var changeRequest = { path: path, value: value, type: type }; that.fireChangeRequest(changeRequest); }; |
} | }; | that.requestChange = function(path, value, type) { var changeRequest = { path: path, value: value, type: type }; that.fireChangeRequest(changeRequest); } |
that.applier.requestChange(elPath, callback(fluid.model.getBeanValue(that.model, elPath), index)); | that.applier.requestChange(elPath, callback(that.fetchModel(), index)); | var requestChange = function (that, callback, index) { var elPath = that.options.elPath; that.applier.requestChange(elPath, callback(fluid.model.getBeanValue(that.model, elPath), index)); }; |
that.locate("save").attr("disabled", "disabled"); | that.requestSave = function () { var ret = that.events.onSave.fire(that.model); if (ret !== false) { if (that.model.csid) { that.dataContext.update(); } else { that.applier.requestChange("csid", ""); tha... | |
fluid.log("Node emptied"); | fluid.reRender = function(templates, node, tree, options) { options = options || {}; // Empty the node first, to head off any potential id collisions when rendering node = fluid.unwrap(node); var lastFocusedElement = fluid.getLastFocusedElement? fluid.getLastFocusedElement() : null... | |
fluid.log("Markup applied"); | fluid.reRender = function(templates, node, tree, options) { options = options || {}; // Empty the node first, to head off any potential id collisions when rendering node = fluid.unwrap(node); var lastFocusedElement = fluid.getLastFocusedElement? fluid.getLastFocusedElement() : null... | |
fluid.reRender = function(templates, node, tree, options) { options = options || {}; node = fluid.unwrap(node); var lastFocusedElement = fluid.getLastFocusedElement? fluid.getLastFocusedElement() : null; var lastId; if (lastFocusedElement && fluid.dom.isContainer(node, lastFocusedElement)) { lastId = lastFocusedElemen... | (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.reRender = function(templates, node, tree, options) { options = options || {}; // Empty the node first, to head off any potential id collisions when rendering node = fluid.unwrap(node); var lastFocusedElement = fluid.getLastFocusedElement? fluid.getLastFocusedElement() : null; var... |
var fossils = {}; | var fossils = options.fossils || {}; fluid.clear(fossils); | fluid.reRender = function(templates, node, tree, options) { options = options || {}; // Empty the node first, to head off any potential id collisions when rendering node = fluid.unwrap(node); var lastFocusedElement = fluid.getLastFocusedElement? fluid.getLastFocusedElement() : null... |
xajax_doXMLHTTP('felamimail.ajaxfelamimail.addACL', document.getElementById('accountName').value, xajax.getFormValues('formAddACL') ); | window.xajax_doXMLHTTP('felamimail.ajaxfelamimail.addACL', document.getElementById('accountName').value, window.xajax.getFormValues('formAddACL') ); | function resetACLAddView(){ xajax_doXMLHTTP('felamimail.ajaxfelamimail.addACL', document.getElementById('accountName').value, xajax.getFormValues('formAddACL') ); document.getElementById('accountName').value = ''; document.getElementById('acl_l').checked = false; document.getElementById('acl_r').checked = false; docume... |
getsectors(viewable,0); | function resetmap(){ while(maplayer0.hasChildNodes()) maplayer0.removeChild(maplayer0.firstChild); while(maplayer1.hasChildNodes()) maplayer1.removeChild(maplayer1.firstChild); while(maplayer2.hasChildNodes()) maplayer2.removeChild(maplayer2.firstChild); for (key in onscreensectors){ onscreensectors[key] = '-'; ... | |
function resetmap() | function resetmap(reload) | function resetmap(){ while(maplayer0.hasChildNodes()) maplayer0.removeChild(maplayer0.firstChild); while(maplayer1.hasChildNodes()) maplayer1.removeChild(maplayer1.firstChild); while(maplayer2.hasChildNodes()) maplayer2.removeChild(maplayer2.firstChild); for (key in onscreensectors){ onscreensectors[key] = '-'; ... |
for (key in onscreensectors){ onscreensectors[key] = '-'; | for (key in sectorsstatus){ if(sectorsstatus[key] == '+'){ sectorsstatus[key] = '-'; } } if(reload){ sectorsstatus = []; | function resetmap(){ while(maplayer0.hasChildNodes()) maplayer0.removeChild(maplayer0.firstChild); while(maplayer1.hasChildNodes()) maplayer1.removeChild(maplayer1.firstChild); while(maplayer2.hasChildNodes()) maplayer2.removeChild(maplayer2.firstChild); for (key in onscreensectors){ onscreensectors[key] = '-'; ... |
resetQuery : function() { this.mSearchType = this.SEARCH_SUBSTR; this.mQueryType = this.T_SUGGESTION; this.mResultCount = 128; this.mQuery = ""; } | YahooSearchQuery.prototype={T_NONE:0x00,T_SUGGESTION:0x01,T_HISTORY:0x02,T_YAHOO_BOOKMARKS:0x04,T_FIREFOX_BOOKMARKS:0x8,T_PERSONALIZED_LINKS:0x10,T_INSTANT_WEB_RESULTS:0x20,T_FIREFOX_USER_HISTORY:0x40,T_YAHOO_BUTTON_DATA:0x80,T_VERTICAL_SEARCH:0x100,T_VERTICAL_SEARCH_ALL:0x200,T_DATA_CLASS:0x10000-1,T_YTB:0x10000,T_INQ... | resetQuery : function() { this.mSearchType = this.SEARCH_SUBSTR; this.mQueryType = this.T_SUGGESTION; this.mResultCount = 128; this.mQuery = ""; } |
same(ui, {}, 'ui hash in callback'); | ok(ui.originalPosition !== undefined, "ui.originalPosition in callback"); ok(ui.originalSize !== undefined, "ui.originalSize in callback"); ok(ui.position !== undefined, "ui.position in callback"); ok(ui.size !== undefined, "ui.size in callback"); | resize: function(ev, ui) { if (!hasResized) { ok(true, 'resizing fires resize callback'); equals(this, el[0], "context of callback"); equals(ev.type, 'dialogresize', 'event type in callback'); same(ui, {}, 'ui hash in callback'); hasResized = true; } } |
$.fn.jwplayerController.resize = function(player, width, height) { try { player.media.resize(width, height); return true; } catch (err) { $.fn.jwplayerUtils.log("error", err); } return false; }; | function resize(player) { return function(arg1, arg2) { try { switch ($.fn.jwplayerUtils.typeOf(arg1)) { case "function": player.addEventListener($.fn.jwplayer.events.JWPLAYER_RESIZE, arg1); break; case "number": player.media.resize(arg1, arg2); break; default: break; } return $.jwplayer(player.id); } catch (err) { pla... | $.fn.jwplayerController.resize = function(player, width, height) { try { player.media.resize(width, height); return true; } catch (err) { $.fn.jwplayerUtils.log("error", err); } return false; }; |
maxHeight = Math.max(maxHeight, $(this).height()); | maxHeight = Math.max(maxHeight, $(this).height("").height()); | resize: function() { var o = this.options, maxHeight; if (o.fillSpace) { if($.browser.msie) { var defOverflow = this.element.parent().css('overflow'); this.element.parent().css('overflow', 'hidden'); } maxHeight = this.element.parent().height(); if($.browser.msie) { this.element.parent().css('overflow', def... |
_css(_display.display_image, { width: width, height: height }); | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) }); _css(_display.display_image, ... | |
jwplayer.utils.stretch(_api.jwGetStretching(), _display.display_image, _width, _height, _imageWidth, _imageHeight); _css(_display.display_image, { top: _width - _imageHeight }); console.log(_width - _imageHeight); | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) }); _css(_display.display_image, ... | |
resize: function() { var o = this.options, maxHeight; if (o.fillSpace) { if($.browser.msie) { var defOverflow = this.element.parent().css('overflow'); this.element.parent().css('overflow', 'hidden'); } maxHeight = this.element.parent().height(); if($.browser.msie) { this.element.parent().css('overflow', defOverflow)... | (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... | resize: function() { var o = this.options, maxHeight; if (o.fillSpace) { if($.browser.msie) { var defOverflow = this.element.parent().css('overflow'); this.element.parent().css('overflow', 'hidden'); } maxHeight = this.element.parent().height(); if($.browser.msie) { this.element.parent().css('overflow', def... |
width: (width - 10) | width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: (width - 10) }); _css(_display.display_image, { width: width, height: height }); _css(_display.display_iconBackgroun... |
width: width | width: (width - 10) | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: width }); _css(_display.display_image, { width: width, height: height }); _css(_display.display_iconBackground, { ... |
_width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_image, { width: width, height: height }); _css(_display.display_iconBackground, { top: ((_height - api.skin.getSkinElement("display", "background").height) / 2) + "px", left: ((_width - api.skin.getSkinElem... | this.resize = function(width, height) { }; | |
top: _width - _imageHeight | top: (_height - _imageHeight) / 2 | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) }); _css(_display.display_iconBac... |
console.log(_width - _imageHeight); | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) }); _css(_display.display_iconBac... | |
_css(_display.display, { width: width, height: height | var style = _resizeBar(); _timeHandler({ id: _api.id, duration: _currentDuration, position: _currentPosition | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) }); _css(_display.display_image, ... |
_css(_display.display_text, { width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) | _bufferHandler({ id: _api.id, bufferPercent: _currentBuffer | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) }); _css(_display.display_image, ... |
_css(_display.display_image, { width: width, height: height }); _css(_display.display_iconBackground, { top: ((_height - _api.skin.getSkinElement("display", "background").height) / 2), left: ((_width - _api.skin.getSkinElement("display", "background").width) / 2) }); _stateHandler({}); | return style; | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) }); _css(_display.display_image, ... |
jwplayer.utils.stretch(_api.jwGetStretching(), _display.display_image, _width, _height, _imageWidth, _imageHeight); _css(_display.display_image, { top: (_height - _imageHeight) / 2 }); | _stretch(); | this.resize = function(width, height) { _width = width; _height = height; _css(_display.display, { width: width, height: height }); _css(_display.display_text, { width: (width - 10), top: ((_height - _display.display_text.getBoundingClientRect().height) / 2) }); _css(_display.display_iconBac... |
if (!_ready && _wrapper.parentElement !== undefined) { _ready = true; | if (_wrapper.parentElement !== undefined) { | this.resize = function(width, height) { jwplayer.html5.utils.cancelAnimation(_wrapper); if (!_ready && _wrapper.parentElement !== undefined) { _ready = true; document.getElementById(_api.id).onmousemove = _fadeOut; } _width = width; _height = height; var style = _resizeBar(); _timeHandler({ id:... |
maxHeight -= $( this ).outerHeight( true ); | var elem = $( this ), position = elem.css( "position" ); if ( position === "absolute" || position === "fixed" ) { return; } maxHeight -= elem.outerHeight( true ); | resize: function() { var options = this.options, maxHeight; if ( options.heightStyle === "fill" ) { if ( $.browser.msie ) { var defOverflow = this.element.parent().css( "overflow" ); this.element.parent().css( "overflow", "hidden"); } maxHeight = this.element.parent().height(); this.element.siblings(... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.