rem
stringlengths 0
126k
| add
stringlengths 0
441k
| context
stringlengths 13
136k
| meta
stringlengths 132
347
|
---|---|---|---|
debug("setLineNumberStatus: checking ie for split workaround: '" + lastChar + "'"); | debug.print("setLineNumberStatus: checking ie for split workaround: '" + lastChar + "'"); | function setLineNumberStatus() { var lineStatus = document.getElementById(g_cq_textarea_status); if (lineStatus == null) { alert("null textarea_status!"); return; } var buf = getBuffer(); if (buf == null) { alert("null buffer!"); return; } // must handle this differently for gecko vs IE6 //debug("setLineNumberStatus: buf.selectionStart = " + buf.selectionStart); if (!document.selection) { // gecko? is that you? } else { // set it up, using IE5+ API // http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/obj_textrange.asp //debug("setLineNumberStatus: document.selection = " + document.selection); if (document.selection){ var range = document.selection.createRange(); var storedRange = range.duplicate(); storedRange.moveToElementText(buf); storedRange.setEndPoint('EndToEnd', range); debug("setLineNumberStatus: storedRange.text = '" + storedRange.text + "'"); debug("setLineNumberStatus: storedRange.text.length = " + storedRange.text.length + ", range.text.length=" + range.text.length + ", buf.value.length = " + buf.value.length); // set start and end points, ala gecko buf.selectionStart = storedRange.text.length - range.text.length; //buf.selectionEnd = buf.selectionStart + range.text.length; } else { alert("setLineNumberStatus: no selectionStart or document.selection!"); return; } } // now we can pretend to be gecko var start = buf.selectionStart; // figure out where start is, in the query var textToStart = buf.value.substr(0, start); var linesArray = textToStart.split(/\r\n|\r|\n/); var lineNumber = linesArray.length; // because of the earlier substr() call, // the last line ends at selectionStart var charPosition = linesArray[lineNumber - 1].length; // TODO: at the start of a line, firefox returns an empty string // meanwhile, IE6 swallows the whitespace... // seems to be in the selection-range API, not in split(), // so this workaround doesn't work! if (false && is.ie) { var start = textToStart.length - 1; debug("setLineNumberStatus: checking ie for split workaround: " + start); var lastChar = textToStart.substr(start, 1); debug("setLineNumberStatus: checking ie for split workaround: '" + lastChar + "'"); if (lastChar == "\n") { lineNumber++; charPosition = 0; debug("setLineNumberStatus: corrected lineNumber = " + lineNumber); } } debug("setLineNumberStatus:" + " selectionStart = " + buf.selectionStart + ", selectionEnd = " + buf.selectionEnd + ", textToStart = " + textToStart + ", lastLine = " + linesArray[lineNumber - 1] ); lineStatus.innerHTML = "" + lineNumber + "," + charPosition;} | 952 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/952/499e513a3cc333dbcb784318ca05ad90a90b7c8e/cq.js/clean/cq.js |
debug("setLineNumberStatus: corrected lineNumber = " + lineNumber); | debug.print("setLineNumberStatus: corrected lineNumber = " + lineNumber); | function setLineNumberStatus() { var lineStatus = document.getElementById(g_cq_textarea_status); if (lineStatus == null) { alert("null textarea_status!"); return; } var buf = getBuffer(); if (buf == null) { alert("null buffer!"); return; } // must handle this differently for gecko vs IE6 //debug("setLineNumberStatus: buf.selectionStart = " + buf.selectionStart); if (!document.selection) { // gecko? is that you? } else { // set it up, using IE5+ API // http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/obj_textrange.asp //debug("setLineNumberStatus: document.selection = " + document.selection); if (document.selection){ var range = document.selection.createRange(); var storedRange = range.duplicate(); storedRange.moveToElementText(buf); storedRange.setEndPoint('EndToEnd', range); debug("setLineNumberStatus: storedRange.text = '" + storedRange.text + "'"); debug("setLineNumberStatus: storedRange.text.length = " + storedRange.text.length + ", range.text.length=" + range.text.length + ", buf.value.length = " + buf.value.length); // set start and end points, ala gecko buf.selectionStart = storedRange.text.length - range.text.length; //buf.selectionEnd = buf.selectionStart + range.text.length; } else { alert("setLineNumberStatus: no selectionStart or document.selection!"); return; } } // now we can pretend to be gecko var start = buf.selectionStart; // figure out where start is, in the query var textToStart = buf.value.substr(0, start); var linesArray = textToStart.split(/\r\n|\r|\n/); var lineNumber = linesArray.length; // because of the earlier substr() call, // the last line ends at selectionStart var charPosition = linesArray[lineNumber - 1].length; // TODO: at the start of a line, firefox returns an empty string // meanwhile, IE6 swallows the whitespace... // seems to be in the selection-range API, not in split(), // so this workaround doesn't work! if (false && is.ie) { var start = textToStart.length - 1; debug("setLineNumberStatus: checking ie for split workaround: " + start); var lastChar = textToStart.substr(start, 1); debug("setLineNumberStatus: checking ie for split workaround: '" + lastChar + "'"); if (lastChar == "\n") { lineNumber++; charPosition = 0; debug("setLineNumberStatus: corrected lineNumber = " + lineNumber); } } debug("setLineNumberStatus:" + " selectionStart = " + buf.selectionStart + ", selectionEnd = " + buf.selectionEnd + ", textToStart = " + textToStart + ", lastLine = " + linesArray[lineNumber - 1] ); lineStatus.innerHTML = "" + lineNumber + "," + charPosition;} | 952 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/952/499e513a3cc333dbcb784318ca05ad90a90b7c8e/cq.js/clean/cq.js |
debug("setLineNumberStatus:" + " selectionStart = " + buf.selectionStart + ", selectionEnd = " + buf.selectionEnd + ", textToStart = " + textToStart + ", lastLine = " + linesArray[lineNumber - 1] ); | debug.print("setLineNumberStatus:" + " selectionStart = " + buf.selectionStart + ", selectionEnd = " + buf.selectionEnd + ", lastLine = " + linesArray[lineNumber - 1] ); | function setLineNumberStatus() { var lineStatus = document.getElementById(g_cq_textarea_status); if (lineStatus == null) { alert("null textarea_status!"); return; } var buf = getBuffer(); if (buf == null) { alert("null buffer!"); return; } // must handle this differently for gecko vs IE6 //debug("setLineNumberStatus: buf.selectionStart = " + buf.selectionStart); if (!document.selection) { // gecko? is that you? } else { // set it up, using IE5+ API // http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/obj_textrange.asp //debug("setLineNumberStatus: document.selection = " + document.selection); if (document.selection){ var range = document.selection.createRange(); var storedRange = range.duplicate(); storedRange.moveToElementText(buf); storedRange.setEndPoint('EndToEnd', range); debug("setLineNumberStatus: storedRange.text = '" + storedRange.text + "'"); debug("setLineNumberStatus: storedRange.text.length = " + storedRange.text.length + ", range.text.length=" + range.text.length + ", buf.value.length = " + buf.value.length); // set start and end points, ala gecko buf.selectionStart = storedRange.text.length - range.text.length; //buf.selectionEnd = buf.selectionStart + range.text.length; } else { alert("setLineNumberStatus: no selectionStart or document.selection!"); return; } } // now we can pretend to be gecko var start = buf.selectionStart; // figure out where start is, in the query var textToStart = buf.value.substr(0, start); var linesArray = textToStart.split(/\r\n|\r|\n/); var lineNumber = linesArray.length; // because of the earlier substr() call, // the last line ends at selectionStart var charPosition = linesArray[lineNumber - 1].length; // TODO: at the start of a line, firefox returns an empty string // meanwhile, IE6 swallows the whitespace... // seems to be in the selection-range API, not in split(), // so this workaround doesn't work! if (false && is.ie) { var start = textToStart.length - 1; debug("setLineNumberStatus: checking ie for split workaround: " + start); var lastChar = textToStart.substr(start, 1); debug("setLineNumberStatus: checking ie for split workaround: '" + lastChar + "'"); if (lastChar == "\n") { lineNumber++; charPosition = 0; debug("setLineNumberStatus: corrected lineNumber = " + lineNumber); } } debug("setLineNumberStatus:" + " selectionStart = " + buf.selectionStart + ", selectionEnd = " + buf.selectionEnd + ", textToStart = " + textToStart + ", lastLine = " + linesArray[lineNumber - 1] ); lineStatus.innerHTML = "" + lineNumber + "," + charPosition;} | 952 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/952/499e513a3cc333dbcb784318ca05ad90a90b7c8e/cq.js/clean/cq.js |
OpenLayers.Layer.prototype.setMap.apply(this, arguments); | OpenLayers.Layer.EventPane.prototype.setMap.apply(this, arguments); | setMap:function(map) { OpenLayers.Layer.prototype.setMap.apply(this, arguments); // once our layer has been added to the map, we can load it this.loadGMap(); }, | 2031 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2031/8f33a633aa6d5eb5b7fd38f5342b2d65e1bafc3f/Google.js/clean/lib/OpenLayers/Layer/Google.js |
OpenLayers.Control.prototype.draw.apply(this, arguments); | OpenLayers.Control.prototype.setMap.apply(this, arguments); | setMap: function() { OpenLayers.Control.prototype.draw.apply(this, arguments); this.map.events.register( 'mousemove', this, this.mousemove); }, | 2032 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2032/a9baa4798f493b91b9eccd13d717b0ccd08e4acc/MousePosition.js/clean/lib/OpenLayers/Control/MousePosition.js |
this.map.events.register("addlayer", this, this.loadGMap); | this.loadGMap(); | setMap:function(map) { OpenLayers.Layer.prototype.setMap.apply(this, arguments); // once our layer has been added to the map, we can create the vemap this.map.events.register("addlayer", this, this.loadGMap); }, | 2031 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2031/f3a072b151fd0fb48097965647921f2ea0396651/Google.js/buggy/lib/OpenLayers/Layer/Google.js |
OpenLayers.Layer.prototype.setMap.apply(this, arguments); | OpenLayers.Layer.EventPane.prototype.setMap.apply(this, arguments); | setMap:function(map) { OpenLayers.Layer.prototype.setMap.apply(this, arguments); // once our layer has been added to the map, we can load it this.loadGMap(); }, | 2032 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2032/8f33a633aa6d5eb5b7fd38f5342b2d65e1bafc3f/Google.js/clean/lib/OpenLayers/Layer/Google.js |
if(this.shouldCalcResolutions()) { this.options.resolutions = [this.extent.getWidth() / this.size.w]; | if( this.options.maxResolution == null ) { this.options.maxResolution = this.extent.getWidth() / this.size.w; | setMap: function(map) { // If nothing to do with resolutions has been set, assume a single // resolution determined by extent/size if(this.shouldCalcResolutions()) { this.options.resolutions = [this.extent.getWidth() / this.size.w]; } OpenLayers.Layer.prototype.setMap.apply(this, arguments); }, | 2031 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2031/3d58bc669814790e7f7cd02571ace1be6bae8d16/Image.js/buggy/lib/OpenLayers/Layer/Image.js |
OpenLayers.Control.prototype.draw.apply(this, arguments); | OpenLayers.Control.prototype.setMap.apply(this, arguments); | setMap: function() { OpenLayers.Control.prototype.draw.apply(this, arguments); this.map.events.register( 'mousemove', this, this.mousemove); }, | 2031 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2031/a9baa4798f493b91b9eccd13d717b0ccd08e4acc/MousePosition.js/clean/lib/OpenLayers/Control/MousePosition.js |
if(this.shouldCalcResolutions()) { this.options.resolutions = [this.extent.getWidth() / this.size.w]; | if( this.options.maxResolution == null ) { this.options.maxResolution = this.extent.getWidth() / this.size.w; | setMap: function(map) { // If nothing to do with resolutions has been set, assume a single // resolution determined by extent/size if(this.shouldCalcResolutions()) { this.options.resolutions = [this.extent.getWidth() / this.size.w]; } OpenLayers.Layer.prototype.setMap.apply(this, arguments); }, | 2032 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2032/3d58bc669814790e7f7cd02571ace1be6bae8d16/Image.js/clean/lib/OpenLayers/Layer/Image.js |
this.map.events.register("addlayer", this, this.loadVEMap); | this.loadVEMap(); | setMap:function(map) { OpenLayers.Layer.prototype.setMap.apply(this, arguments); // once our layer has been added to the map, we can create the vemap this.map.events.register("addlayer", this, this.loadVEMap); }, | 2032 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2032/f3a072b151fd0fb48097965647921f2ea0396651/VirtualEarth.js/buggy/lib/OpenLayers/Layer/VirtualEarth.js |
this.map.events.register("addlayer", this, this.loadGMap); | this.loadGMap(); | setMap:function(map) { OpenLayers.Layer.prototype.setMap.apply(this, arguments); // once our layer has been added to the map, we can create the vemap this.map.events.register("addlayer", this, this.loadGMap); }, | 2032 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2032/f3a072b151fd0fb48097965647921f2ea0396651/Google.js/clean/lib/OpenLayers/Layer/Google.js |
this.map.events.register("addlayer", this, this.loadVEMap); | this.loadVEMap(); | setMap:function(map) { OpenLayers.Layer.prototype.setMap.apply(this, arguments); // once our layer has been added to the map, we can create the vemap this.map.events.register("addlayer", this, this.loadVEMap); }, | 2031 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2031/f3a072b151fd0fb48097965647921f2ea0396651/VirtualEarth.js/buggy/lib/OpenLayers/Layer/VirtualEarth.js |
this.trElement.cells[2].innerHTML = message; | setText(this.trElement.cells[2], message); | setMessage: function(message) { this.trElement.cells[2].innerHTML = message; }, | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/afbf996d10e64e19064fc4c66b03687c00ba5994/selenium-testrunner.js/buggy/code/javascript/core/scripts/selenium-testrunner.js |
this.map.events.triggerEvent("changelayer"); | setName: function(newName) { this.name = newName; }, | 2031 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2031/a6af08b0920c002f2d79d9608d12e6492d30ca3b/Layer.js/clean/lib/OpenLayers/Layer.js |
|
this.map.events.triggerEvent("changelayer"); | setName: function(newName) { this.name = newName; }, | 2032 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2032/a6af08b0920c002f2d79d9608d12e6492d30ca3b/Layer.js/clean/lib/OpenLayers/Layer.js |
|
this.map.events.triggerEvent("changelayer"); | if (this.map != null) this.map.events.triggerEvent("changelayer"); | setName: function(newName) { this.name = newName; this.map.events.triggerEvent("changelayer"); }, | 2031 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2031/45bea9f9f4d3ce639785896cbe25fcc43d5a7a65/Layer.js/buggy/lib/OpenLayers/Layer.js |
this.map.events.triggerEvent("changelayer"); | if (this.map != null) this.map.events.triggerEvent("changelayer"); | setName: function(newName) { this.name = newName; this.map.events.triggerEvent("changelayer"); }, | 2032 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2032/45bea9f9f4d3ce639785896cbe25fcc43d5a7a65/Layer.js/clean/lib/OpenLayers/Layer.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
if (!this.currentStyle || !this.currentStyle.hasLayout) this.style.zoom = 1; | setOpacity: function(opacity){ if (opacity == 0){ if(this.style.visibility != "hidden") this.style.visibility = "hidden"; } else { if(this.style.visibility != "visible") this.style.visibility = "visible"; } if (window.ie) this.style.filter = "alpha(opacity=" + opacity*100 + ")"; this.style.opacity = this.opacity = opacity; return this; }, | 5409 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5409/f8e20cd11320fa43b4a01379300b6f0feb62ac38/Element.js/clean/Native/Element.js |
|
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
} | } | setOpacity:function(opacity) { if (opacity != undefined) { this.opacity = opacity; } if (this.div != null) { if (this.contentDiv != null) { Rico.Corner.changeOpacity(this.contentDiv, this.opacity); } } }, | 2032 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2032/08b8a7af76902fcb836b51c593917f4730bfe456/AnchoredBubble.js/buggy/lib/OpenLayers/Popup/AnchoredBubble.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
if(opacity<0.0001) opacity = 0; | setOpacity: function(opacity) { if(opacity==1.0) { this.element.style.opacity = '0.999999'; this.element.style.filter = null; } else { this.element.style.opacity = opacity; this.element.style.filter = "alpha(opacity:"+opacity*100+")"; } } | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/cd20286092d311391869aa6031bdd86b5e047d0f/effects.js/clean/src/effects.js |
|
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
setOpacity: function(opacity) { opacity = (opacity == 1) ? 0.99999 : opacity; this.element.style.opacity = opacity; this.element.style.filter = "alpha(opacity:"+opacity*100+")"; } | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); } else { if(value < 0.00001) value = 0; els.opacity = value; if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; } } | setOpacity: function(opacity) { opacity = (opacity == 1) ? 0.99999 : opacity; this.element.style.opacity = opacity; this.element.style.filter = "alpha(opacity:"+opacity*100+")"; } | 742 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/742/3f913f897829fb026ef98df2d57f8da94ee5339d/effects.js/buggy/public/javascripts/effects.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
Rico.Corner.changeOpacity(this.contentDiv, this.opacity); | OpenLayers.Rico.Corner.changeOpacity(this.contentDiv, this.opacity); | setOpacity:function(opacity) { if (opacity != undefined) { this.opacity = opacity; } if (this.div != null) { if (this.contentDiv != null) { Rico.Corner.changeOpacity(this.contentDiv, this.opacity); } } }, | 2031 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2031/112978ac3d807e4a8b7e412ef2f585650c0506d8/AnchoredBubble.js/clean/lib/OpenLayers/Popup/AnchoredBubble.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
opacity = (opacity == 1) ? 0.99999 : opacity; this.element.style.opacity = opacity; this.element.style.filter = "alpha(opacity:"+opacity*100+")"; | if(opacity==1.0) { this.element.style.opacity = null; this.element.style.filter = null; } else { this.element.style.opacity = opacity; this.element.style.filter = "alpha(opacity:"+opacity*100+")"; } | setOpacity: function(opacity) { opacity = (opacity == 1) ? 0.99999 : opacity; this.element.style.opacity = opacity; this.element.style.filter = "alpha(opacity:"+opacity*100+")"; } | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/27843cc794ea572255b05d7eb65aaef3e9da252e/effects.js/clean/src/effects.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
Rico.Corner.changeOpacity(this.contentDiv, this.opacity); | OpenLayers.Rico.Corner.changeOpacity(this.contentDiv, this.opacity); | setOpacity:function(opacity) { if (opacity != undefined) { this.opacity = opacity; } if (this.div != null) { if (this.contentDiv != null) { Rico.Corner.changeOpacity(this.contentDiv, this.opacity); } } }, | 2032 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2032/112978ac3d807e4a8b7e412ef2f585650c0506d8/AnchoredBubble.js/clean/lib/OpenLayers/Popup/AnchoredBubble.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/railties/html/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
if (!this.currentStyle || !this.currentStyle.hasLayout) this.style.zoom = 1; | setOpacity: function(opacity){ if (opacity == 0){ if(this.style.visibility != "hidden") this.style.visibility = "hidden"; } else { if(this.style.visibility != "visible") this.style.visibility = "visible"; } if (window.ie) this.style.filter = "alpha(opacity=" + opacity*100 + ")"; this.style.opacity = this.opacity = opacity; return this; }, | 6991 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6991/f8e20cd11320fa43b4a01379300b6f0feb62ac38/Element.js/buggy/Native/Element.js |
|
0.999999 : null }); if(/MSIE/.test(navigator.userAgent)) | 0.999999 : 1.0 }); if(/MSIE/.test(navigator.userAgent) && !window.opera) | Element.setOpacity = function(element, value){ element= $(element); if (value == 1){ Element.setStyle(element, { opacity: (/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ? 0.999999 : null }); if(/MSIE/.test(navigator.userAgent)) Element.setStyle(element, {filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')}); } else { if(value < 0.00001) value = 0; Element.setStyle(element, {opacity: value}); if(/MSIE/.test(navigator.userAgent)) Element.setStyle(element, { filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + 'alpha(opacity='+value*100+')' }); }} | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/fce48e55d59a646bd3ea2817c880d210f19a9c85/effects.js/clean/src/effects.js |
if(/MSIE/.test(navigator.userAgent)) | if(/MSIE/.test(navigator.userAgent) && !window.opera) | Element.setOpacity = function(element, value){ element= $(element); if (value == 1){ Element.setStyle(element, { opacity: (/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ? 0.999999 : null }); if(/MSIE/.test(navigator.userAgent)) Element.setStyle(element, {filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')}); } else { if(value < 0.00001) value = 0; Element.setStyle(element, {opacity: value}); if(/MSIE/.test(navigator.userAgent)) Element.setStyle(element, { filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + 'alpha(opacity='+value*100+')' }); }} | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/fce48e55d59a646bd3ea2817c880d210f19a9c85/effects.js/clean/src/effects.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/railties/html/javascripts/util.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/buggy/actionpack/lib/action_view/helpers/javascripts/util.js |
} | } | setOpacity:function(opacity) { if (opacity != undefined) { this.opacity = opacity; } if (this.div != null) { if (this.contentDiv != null) { Rico.Corner.changeOpacity(this.contentDiv, this.opacity); } } }, | 2031 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2031/08b8a7af76902fcb836b51c593917f4730bfe456/AnchoredBubble.js/buggy/lib/OpenLayers/Popup/AnchoredBubble.js |
els.filter = null; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,''); | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
els.filter = "alpha(opacity:"+value*100+")"; | if(/MSIE/.test(navigator.userAgent)) els.filter = Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + "alpha(opacity="+value*100+")"; | Element.setOpacity = function(element, value){ element= $(element); var els = element.style; if (value == 1){ els.opacity = '0.999999'; els.filter = null; } else { if(value < 0.00001) value = 0; els.opacity = value; els.filter = "alpha(opacity:"+value*100+")"; } } | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/7d101d58400acaff232091485c8e140f0a37cbaf/util.js/clean/actionpack/lib/action_view/helpers/javascripts/util.js |
if (value == 1){ Element.setStyle(element, {opacity: 0.999999}); | if (value == 1){ Element.setStyle(element, { opacity: (/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ? 0.999999 : null }); | Element.setOpacity = function(element, value){ element= $(element); if (value == 1){ Element.setStyle(element, {opacity: 0.999999}); if(/MSIE/.test(navigator.userAgent)) Element.setStyle(element, {filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')}); } else { if(value < 0.00001) value = 0; Element.setStyle(element, {opacity: value}); if(/MSIE/.test(navigator.userAgent)) Element.setStyle(element, { filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'') + 'alpha(opacity='+value*100+')' }); } } | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/8a4fb45ee0b786c0e161966a0e39bf1fb97c0a2a/effects.js/buggy/src/effects.js |
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/actionpack/lib/action_view/helpers/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/actionpack/lib/action_view/helpers/javascripts/effects.js |
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/railties/html/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/railties/html/javascripts/effects.js |
fps: 25.0, | fps: 25.0, | setOptions: function(options) { this.options = Object.extend({ transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, sync: false, // true for combining from: 0.0, to: 1.0, delay: 0.0 }, options || {}); }, | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/cd20286092d311391869aa6031bdd86b5e047d0f/effects.js/clean/src/effects.js |
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/railties/html/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/railties/html/javascripts/effects.js |
contentType: 'application/x-www-form-urlencoded', | setOptions: function(options) { this.options = { method: 'post', asynchronous: true, parameters: '' } Object.extend(this.options, options || {}); }, | 2320 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2320/19200c26046dc00f15305e03b7c1d28b4c38c952/prototype.js/clean/web/scripts/prototype.js |
|
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/actionpack/lib/action_view/helpers/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/actionpack/lib/action_view/helpers/javascripts/effects.js |
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/railties/html/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/railties/html/javascripts/effects.js |
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/railties/html/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/railties/html/javascripts/effects.js |
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/actionpack/lib/action_view/helpers/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/actionpack/lib/action_view/helpers/javascripts/effects.js |
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/railties/html/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/railties/html/javascripts/effects.js |
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/actionpack/lib/action_view/helpers/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/actionpack/lib/action_view/helpers/javascripts/effects.js |
this.options = { | this.options = Object.extend({ | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/actionpack/lib/action_view/helpers/javascripts/effects.js |
}.extend(options || {}); | }, options || {}); | setOptions: function(options) { this.options = { transition: Effect.Transitions.sinoidal, duration: 1.0, // seconds fps: 25.0, // max. 100fps sync: false, // true for combining from: 0.0, to: 1.0 }.extend(options || {}); }, | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/actionpack/lib/action_view/helpers/javascripts/effects.js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.