NV / chrome-devtools-autosave

Auto-saving CSS and JavaScript changes from the Chrome Developer Tools
MIT License
1.04k stars 89 forks source link

Fix for missing experimental object #25

Closed drewcovi closed 12 years ago

drewcovi commented 12 years ago

needed to get this up and running in short order, from what I can tell, re-adding experimental object seemed to solve the issue. although also did some quick updates to the options panel as well, to sort out any other possible causes, but i dont think those changes will have any real impact :)

paulirish commented 12 years ago

right now canary has it sans-experimental but we gotta wait 6 weeks for it to hit stable.

probably best to use whichever is present.

var devtools = chrome.devtools || chrome.experimental.devtools
drewcovi commented 12 years ago

figured that might have been the case, ill update it to that.

drewcovi commented 12 years ago

all happy now.

paulirish commented 12 years ago

word. lgtm

NV commented 12 years ago

The extension breakes in Chrome 17 (stable at the moment). Chrome 18+ works well.

There is no need for chrome.devtools || chrome.experimental.devtools since Chrome 18+ have chrome.experimental.devtools working.

Changes in options.html doesn’t affect anything at all.

NV commented 12 years ago

Thanks for heads up!