rem
stringlengths 0
126k
| add
stringlengths 0
441k
| context
stringlengths 13
136k
| meta
stringlengths 132
347
|
---|---|---|---|
if (typeof textAreaInit != 'undefined') {
|
if (typeof textAreaAutoAttach != 'undefined') {
|
a.onclick = function() { toggleClass(this.parentNode.parentNode, 'collapsed'); if (!hasClass(this.parentNode.parentNode, 'collapsed')) { collapseScrollIntoView(this.parentNode.parentNode); if (typeof textAreaInit != 'undefined') { // Add the grippie to a textarea in a collapsed fieldset. textAreaAutoAttach(null, this.parentNode.parentNode); } } this.blur(); return false; };
|
3650 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3650/a4fd2d666c55132dcb490fddbfd024a056197790/collapse.js/buggy/misc/collapse.js
|
response = response.replace(/[\f\n\r\t\v]/g, ' ');
|
button.onclick = function() { // Prepare variables for use in anonymous function. var button = this; var action = button.form.action; var target = button.form.target; // Redirect form submission this.form.action = uri; this.form.target = 'redirect-target'; handler.onsubmit(); // Set iframe handler for later window.iframeHandler = function () { var iframe = $('redirect-target'); // Restore form submission button.form.action = action; button.form.target = target; // Get response from iframe body try { response = (iframe.contentWindow || iframe.contentDocument || iframe).document.body.innerHTML; if (window.opera) { // Opera-hack: it returns innerHTML sanitized. response = response.replace(/"/g, '"'); } } catch (e) { response = null; } // Recreate the iframe: re-using an old iframe can sometimes cause browser bugs. createIframe(); response = parseJson(response); // Check response code if (response.status == 0) { handler.onerror(response.data); return; } handler.oncomplete(response.data); } return true; }
|
3650 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3650/2d1aeff2d1c6d0538ca44a9ed3b47a5481362f67/drupal.js/buggy/misc/drupal.js
|
|
element = Event.findElement(event, 'LI');
|
var element = Event.findElement(event, 'LI');
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.stop(event);
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
element = Event.findElement(event, 'LI');
|
var element = Event.findElement(event, 'LI');
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.stop(event);
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
element = Event.findElement(event, 'LI');
|
var element = Event.findElement(event, 'LI');
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.stop(event);
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
addBreakpointSupport();
|
addBreakpointSupport(getIframeDocument(getTestFrame()));
|
aLink.onclick = function(eventObj) { srcObj = null; // For mozilla-like browsers if (eventObj) srcObj = eventObj.target; // For IE-like browsers else if (getSuiteFrame().contentWindow.event) srcObj = getSuiteFrame().contentWindow.event.srcElement; // The target row (the event source is not consistently reported by browsers) row = srcObj.parentNode.parentNode.rowIndex || srcObj.parentNode.parentNode.parentNode.rowIndex; currentRowInSuite = row; // If the row has a stored results table, use that if (suiteTable.rows[row].cells[1]) { var bodyElement = getIframeDocument(getTestFrame()).body; // Create a div element to hold the results table. var tableNode = getIframeDocument(getTestFrame()).createElement("div"); var resultsCell = suiteTable.rows[row].cells[1]; tableNode.innerHTML = resultsCell.innerHTML; // Append this text node, and remove all the preceding nodes. bodyElement.appendChild(tableNode); while (bodyElement.firstChild != bodyElement.lastChild) { bodyElement.removeChild(bodyElement.firstChild); } addBreakpointSupport(); } // Otherwise, just open up the fresh page. else { getTestFrame().src = suiteTable.rows[row].cells[0].getElementsByTagName("a")[0].href; } return false; };
|
4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/0310a5cc1f4cefa5a905d20a0377865784ae9511/selenium-testrunner.js/clean/code/javascript/core/scripts/selenium-testrunner.js
|
button.onclick = function() { // Prepare vars for use in anonymous function. var button = this; var action = button.form.action; var target = button.form.target; // Redirect form submission this.form.action = uri; this.form.target = 'redirect-target'; handler.onsubmit(); // Set iframe handler for later window.iframeHandler = function (data) { // Restore form submission button.form.action = action; button.form.target = target; handler.oncomplete(data); } return true; }
|
3650 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3650/f6764cfbd8dcdedd05263711a41fcedb72dda2ab/drupal.js/clean/misc/drupal.js
|
||
element = Event.findElement(event, 'LI');
|
var element = Event.findElement(event, 'LI');
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.stop(event);
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
element = Event.findElement(event, 'LI');
|
var element = Event.findElement(event, 'LI');
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.stop(event);
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
Element.addClassName(this.trElement, "breakpoint");
|
addClassName(this.trElement, "breakpoint");
|
onClick: function() { if (this.trElement.isBreakpoint == undefined) { this.trElement.isBreakpoint = true; Element.addClassName(this.trElement, "breakpoint"); } else { this.trElement.isBreakpoint = undefined; Element.removeClassName(this.trElement, "breakpoint"); } },
|
4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/697a29d268d2448c4391184afe752f6497773118/selenium-testrunner.js/buggy/code/javascript/core/scripts/selenium-testrunner.js
|
Element.removeClassName(this.trElement, "breakpoint");
|
removeClassName(this.trElement, "breakpoint");
|
onClick: function() { if (this.trElement.isBreakpoint == undefined) { this.trElement.isBreakpoint = true; Element.addClassName(this.trElement, "breakpoint"); } else { this.trElement.isBreakpoint = undefined; Element.removeClassName(this.trElement, "breakpoint"); } },
|
4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/697a29d268d2448c4391184afe752f6497773118/selenium-testrunner.js/buggy/code/javascript/core/scripts/selenium-testrunner.js
|
element = Event.findElement(event, 'LI');
|
var element = Event.findElement(event, 'LI');
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.stop(event);
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
this.select_entry(); Event.stop(event);
|
this.selectEntry(); this.hide();
|
onClick: function(event) { var element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); Event.stop(event); },
|
742 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/742/3f913f897829fb026ef98df2d57f8da94ee5339d/controls.js/clean/public/javascripts/controls.js
|
element = Event.findElement(event, 'LI');
|
var element = Event.findElement(event, 'LI');
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.stop(event);
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
Element.setStyle(this.trElement, {"background-color" : "#cccccc"});
|
Element.setStyle(this.trElement, {"background-color" : breakpointColor});
|
onClick: function() { if (this.trElement.isBreakpoint == undefined) { this.trElement.isBreakpoint = true; this.trElement.beforeBackgroundColor = Element.getStyle(this.trElement, "backgroundColor"); Element.setStyle(this.trElement, {"background-color" : "#cccccc"}); } else { this.trElement.isBreakpoint = undefined; Element.setStyle(this.trElement, {"background-color" : this.trElement.beforeBackgroundColor}); } },
|
4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/e2eb21074bf7581587b9dfcaf14a5a5ba0e29ea1/selenium-testrunner.js/buggy/code/javascript/core/scripts/selenium-testrunner.js
|
this.prev_onclick();
|
this.prev_onclick();
|
element.onclick = function() { this.prev_onclick(); this.target.onElementEvent(); }
|
742 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/742/3f913f897829fb026ef98df2d57f8da94ee5339d/prototype.js/buggy/public/javascripts/prototype.js
|
element = Event.findElement(event, 'LI');
|
var element = Event.findElement(event, 'LI');
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.stop(event);
|
onClick: function(event) { element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.select_entry(); },
|
5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
Event.stop(event);
|
onClick: function(event) { var element = Event.findElement(event, 'LI'); this.index = element.autocompleteIndex; this.selectEntry(); Event.stop(event); },
|
4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/5a45eb11da3ae77cf833a9235e4ceb455fe0cb58/controls.js/clean/src/controls.js
|
|
image.src = "images/plus.gif";
|
image.src = "../images/plus.gif";
|
trigger.onclick = function() { var display = menu.style.display; if (display == "block") { image.src = "images/plus.gif"; menu.style.display = "none"; document.cookie = module + "=none"; } else { image.src = "images/minus.gif"; menu.style.display = "block"; document.cookie = module + "=block"; } return false; }
|
3564 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3564/742f365f4e145bf922e4b57ece62b7049b49e3f0/dashboard.js/buggy/live/trunk/js/dashboard.js
|
image.src = "images/minus.gif";
|
image.src = "../images/minus.gif";
|
trigger.onclick = function() { var display = menu.style.display; if (display == "block") { image.src = "images/plus.gif"; menu.style.display = "none"; document.cookie = module + "=none"; } else { image.src = "images/minus.gif"; menu.style.display = "block"; document.cookie = module + "=block"; } return false; }
|
3564 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3564/742f365f4e145bf922e4b57ece62b7049b49e3f0/dashboard.js/buggy/live/trunk/js/dashboard.js
|
addBreakpointSupport(getIframeDocument(getTestFrame()));
|
addBreakpointSupport(testIFrame.getDocument());
|
aLink.onclick = function(eventObj) { srcObj = null; // For mozilla-like browsers if (eventObj) srcObj = eventObj.target; // For IE-like browsers else if (getSuiteFrame().contentWindow.event) srcObj = getSuiteFrame().contentWindow.event.srcElement; // The target row (the event source is not consistently reported by browsers) row = srcObj.parentNode.parentNode.rowIndex || srcObj.parentNode.parentNode.parentNode.rowIndex; currentRowInSuite = row; // If the row has a stored results table, use that if (suiteTable.rows[row].cells[1]) { var bodyElement = testIFrame.getDocument().body; // Create a div element to hold the results table. var tableNode = testIFrame.getDocument().createElement("div"); var resultsCell = suiteTable.rows[row].cells[1]; tableNode.innerHTML = resultsCell.innerHTML; // Append this text node, and remove all the preceding nodes. bodyElement.appendChild(tableNode); while (bodyElement.firstChild != bodyElement.lastChild) { bodyElement.removeChild(bodyElement.firstChild); } addBreakpointSupport(getIframeDocument(getTestFrame())); } // Otherwise, just open up the fresh page. else { testIFrame.setLocation(suiteTable.rows[row].cells[0].getElementsByTagName("a")[0].href); } return false; };
|
4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/88bac40924c762a8a54555c9bcd205264ecd3a87/selenium-testrunner.js/buggy/code/javascript/core/scripts/selenium-testrunner.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/railties/html/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/railties/html/javascripts/controls.js
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/railties/html/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/railties/html/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/dc5cb4614f3246b69c0e36028662452fc7374433/controls.js/buggy/src/controls.js
|
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/railties/html/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/railties/html/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/railties/html/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/railties/html/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if (this.options.update) $(this.options.update).setHTML(this.transport.responseText);
|
if (this.options.update) $(this.options.update).setHTML(this.response.text); if (this.options.evalResponse) eval(this.response.text);
|
onComplete: function(){ if (this.options.update) $(this.options.update).setHTML(this.transport.responseText); if (this.options.evalScripts) this.evalScripts.delay(30, this); },
|
5409 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5409/ee45bcbdda9f41e1d047aeccacc4bf8768c2c67b/Ajax.js/buggy/Remote/Ajax.js
|
this.fireEvent('onComplete', [this.response.text, this.response.xml], 20);
|
onComplete: function(){ if (this.options.update) $(this.options.update).setHTML(this.transport.responseText); if (this.options.evalScripts) this.evalScripts.delay(30, this); },
|
5409 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5409/ee45bcbdda9f41e1d047aeccacc4bf8768c2c67b/Ajax.js/buggy/Remote/Ajax.js
|
|
onComplete: function(request) { this.updateChoices(request.responseText); }
|
onComplete: function(transport) { this.leaveEditMode(); this.options.onComplete.bind(this)(transport, this.element); },
|
onComplete: function(request) { this.updateChoices(request.responseText); }
|
742 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/742/3f913f897829fb026ef98df2d57f8da94ee5339d/controls.js/clean/public/javascripts/controls.js
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
if (this.options.update) $(this.options.update).setHTML(this.transport.responseText);
|
if (this.options.update) $(this.options.update).setHTML(this.response.text); if (this.options.evalResponse) eval(this.response.text);
|
onComplete: function(){ if (this.options.update) $(this.options.update).setHTML(this.transport.responseText); if (this.options.evalScripts) this.evalScripts.delay(30, this); },
|
6991 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6991/ee45bcbdda9f41e1d047aeccacc4bf8768c2c67b/Ajax.js/clean/Remote/Ajax.js
|
this.fireEvent('onComplete', [this.response.text, this.response.xml], 20);
|
onComplete: function(){ if (this.options.update) $(this.options.update).setHTML(this.transport.responseText); if (this.options.evalScripts) this.evalScripts.delay(30, this); },
|
6991 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6991/ee45bcbdda9f41e1d047aeccacc4bf8768c2c67b/Ajax.js/clean/Remote/Ajax.js
|
|
if(!this.changed) {
|
if(!this.changed && this.has_focus) {
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this));
|
this.addObservers(entry);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/0ffcceffac52cc4ed373eb9db27d6c776b5d96b7/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/railties/html/javascripts/controls.js
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/railties/html/javascripts/controls.js
|
Element.cleanWhitespace(this.update.firstChild);
|
onComplete: function(request) { if(!this.changed) { this.update.innerHTML = request.responseText; if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; Event.observe(entry, "mouseover", this.onHover.bindAsEventListener(this)); Event.observe(entry, "click", this.onClick.bindAsEventListener(this)); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/c9f2389c010ba9364a4454b45b3cedd4dd273c38/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/actionpack/lib/action_view/helpers/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/clean/railties/html/javascripts/controls.js
|
if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
this.updateChoices(request.responseText); }
|
onComplete: function(request) { if(!this.changed && this.has_focus) { this.update.innerHTML = request.responseText; Element.cleanWhitespace(this.update); Element.cleanWhitespace(this.update.firstChild); if(this.update.firstChild && this.update.firstChild.childNodes) { this.entry_count = this.update.firstChild.childNodes.length; for (var i = 0; i < this.entry_count; i++) { entry = this.get_entry(i); entry.autocompleteIndex = i; this.addObservers(entry); } } else { this.entry_count = 0; } this.stopIndicator(); this.index = 0; this.render(); } },
|
5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/controls.js/buggy/railties/html/javascripts/controls.js
|
SeleniumIDE.onContentLoaded = function(event) {
|
SeleniumIDE.Overlay.onContentLoaded = function(event) {
|
SeleniumIDE.onContentLoaded = function(event) { var isRootDocument = false; var browsers = window.getBrowser().browsers; for (var i = 0; i < browsers.length; i++) { var cw = browsers[i].contentWindow; if (cw && cw.document == event.target) { isRootDocument = true; } } SeleniumIDE.Loader.reloadRecorder(window.getBrowser().contentWindow, isRootDocument); var contextMenu = window.document.getElementById("contentAreaContextMenu"); if (contextMenu) { contextMenu.addEventListener("popupshowing", SeleniumIDE.testRecorderPopup, false); contextMenu.addEventListener("command", SeleniumIDE.appendCheck, false); }}
|
4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/4a3a9cf68d815a1584afc61dc59fe1e423c410e1/selenium-ide-overlay.js/buggy/src/content/selenium-ide-overlay.js
|
contextMenu.addEventListener("popupshowing", SeleniumIDE.testRecorderPopup, false); contextMenu.addEventListener("command", SeleniumIDE.appendCheck, false);
|
contextMenu.addEventListener("popupshowing", SeleniumIDE.Overlay.testRecorderPopup, false); contextMenu.addEventListener("command", SeleniumIDE.Overlay.appendCheck, false);
|
SeleniumIDE.onContentLoaded = function(event) { var isRootDocument = false; var browsers = window.getBrowser().browsers; for (var i = 0; i < browsers.length; i++) { var cw = browsers[i].contentWindow; if (cw && cw.document == event.target) { isRootDocument = true; } } SeleniumIDE.Loader.reloadRecorder(window.getBrowser().contentWindow, isRootDocument); var contextMenu = window.document.getElementById("contentAreaContextMenu"); if (contextMenu) { contextMenu.addEventListener("popupshowing", SeleniumIDE.testRecorderPopup, false); contextMenu.addEventListener("command", SeleniumIDE.appendCheck, false); }}
|
4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/4a3a9cf68d815a1584afc61dc59fe1e423c410e1/selenium-ide-overlay.js/buggy/src/content/selenium-ide-overlay.js
|
setTimeout(cronjob, that.getRefresh);
|
setTimeout(cronjob, that.getRefresh());
|
that.onDOMContentLoad = function(event) { if (event.originalTarget.nodeName != "#document") { return; } var doc = event.originalTarget; var id = cron[doc.ItsAllText_CronJobID]; if (!id) { id = cron.push(null); doc.ItsAllText_CronJobID = id; } //that.log('onDOMContentLoad: start',id); var lasttime = new Date().valueOf(); /** * This sets up the autorefresh for a given page. */ var cronjob = function () { var last = cron[id]; if(!last || last == lasttime) { that.refreshDocument(doc); lasttime = new Date().valueOf(); cron[id] = lasttime; setTimeout(cronjob, that.getRefresh); } }; cronjob(); /* TODO: Put edit button inside the lower right side of the text area. */ //that.log('onDOMContentLoad: done',id); return; };
|
4463 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4463/facd4869ff3b083d21afb437ee474592eec22518/itsalltext.js/buggy/chrome/content/itsalltext.js
|
if (doc) {
|
if (doc.location) {
|
that.onDOMContentLoad = function(event) { if (event.originalTarget.nodeName != "#document") { return; } var doc = event.originalTarget; function startswith(needle, haystack) { needle = needle.toString(); haystack = haystack.toString(); return haystack.substring(0,needle.length) == needle; } if (startswith('chrome://', doc.URL) || startswith('about:', doc.URL) ) { return; // Ignore these URLs } var id = null; that.refreshDocument(doc); id = setInterval(function() { if (doc) { that.debug('document %s %o "%s"', id, doc, doc.URL); that.refreshDocument(doc); } else { that.debug('document %s (cancelled)', id); clearInterval(id); } }, that.getRefresh()); return; };
|
4463 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4463/e9eb291a28222ca7f80d50f18421033f68792329/itsalltext.js/buggy/chrome/content/itsalltext.js
|
win.onDragEnd = function(x, y) { win.style.opacity = Drag.opacity; }
|
win.onDragEnd = function(x, y) { document.getElementById(iframe).style.display= "block"; el.style.opacity= 1; }
|
win.onDragEnd = function(x, y) { win.style.opacity = Drag.opacity; }
|
4636 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4636/f407cff01a2b1afdae1bacfe7c1673bba412f8e8/webconf.js/clean/weblets/webconf/webconf.js
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.