Skip to content

Commit

Permalink
Fix "Can't connect routes to server 35.0.1900.0 canary"
Browse files Browse the repository at this point in the history
Fixes #91
  • Loading branch information
NV committed Apr 17, 2014
1 parent 533369a commit 87d4b50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chrome/manifest.json
@@ -1,6 +1,6 @@
{
"name": "DevTools Autosave",
"version": "1.2.2",
"version": "1.2.3",
"description": "Saves changes in CSS and JS that was made via Chrome DevTools",

"devtools_page": "devtools.html",
Expand Down
2 changes: 1 addition & 1 deletion chrome/options.js
Expand Up @@ -518,7 +518,7 @@ Element.prototype.up = function(selector) {
return null;
};

NodeList.prototype.forEach = Array.prototype.forEach;
NodeList.prototype.forEach = HTMLCollection.prototype.forEach = Array.prototype.forEach;
NodeList.prototype.setAttribute = function(name, value) {
for (var i = this.length; i--;) {
this[i].setAttribute(name, value);
Expand Down

0 comments on commit 87d4b50

Please sign in to comment.