aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/settings.coffee
AgeCommit message (Collapse)Author
2014-09-06Structured passkeys; changes following code review; major rewrite of options.Stephen Blott
2014-09-02Structured passkeys, internally and on the options and popup pages.Stephen Blott
2014-08-23Allow passing of keys to the underlying page.Stephen Blott
2014-05-29Adding in search engines feature to fix #1009mike-work
2014-04-30Tweak a few commentsPhil Crosby
2014-04-27Response to @philc's comments regarding sync.Stephen Blott
2014-04-19Settings tests pass, Sync still has an error.Stephen Blott
2014-04-19Code review of Sync().Stephen Blott
2014-04-18Code review of Sync().Stephen Blott
2014-04-18Initial synchronization commit.Stephen Blott
Synchronization is via `chrome.storage.sync.*`; data is cached in `localStorage`.
2013-07-22Remove Google Reader rule.Robin Choudhury
Since Google Reader has been discontinued, there is no reason to add this rule to the excludedUrls.
2012-11-03scrollStepSize migration will now be done in v1.43.Jez Ng
2012-10-29Convert strings to numbers when saving options page.Jez Ng
This avoids the need to continually re-parse the strings each time we load the option value.
2012-10-29Make the numbers used in the filtered link hints configurable.Jez Ng
Closes #380.
2012-10-28Make the default value for scrollStepSize a string.Stephen Blott
This interacts with these lines from settings.coffee: don't store the value if it is equal to the default, so we can change the defaults in the future if (value == @defaults[key]) @clear(key) If the default value is numeric, then this test NEVER succeeds (because "==" is compiled to "===", and the types don't match). So, scrollStepSize is stored in localStorage even if it has its default value. Which obviates the intention of the line quoted above.
2012-10-23Code cleanup, as requested by in3/Jez Ng here:Stephen Blott
- https://github.com/philc/vimium/pull/682.
2012-10-21Missed off one key line in previous commit.Stephen Blott
2012-09-09More lint fixes.Jez Ng
2012-09-09Add more tests, and remove old settings code.Jez Ng
2012-09-09Fix default hint styling.Jez Ng
2012-09-08Change the default CSS template.Jez Ng
'background-color' is no longer sufficient to override our default styling. Refs #626.
2012-08-04Re-expose defaults -- options.js needs it.Jez Ng
2012-08-04Improve encapsulation of Settings.Jez Ng
We should eventually do this for the other modules as well.
2012-07-04Use block strings for settingsDarren Jeacocke
2012-06-12Uppercase utils -> UtilsPhil Crosby
2012-06-12Port settings.js to coffeescriptPhil Crosby