aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
AgeCommit message (Collapse)Author
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-24Use insertCSS() API instead of manually created style element.Jez Ng
For some reason addCssToPage seemed to break on Chrome 24. Closes #676.
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-12Use block stringsDarren Jeacocke
2012-09-09More lint fixes.Jez Ng
2012-09-09Add more tests, and remove old settings code.Jez Ng
2012-09-09Merge branch '1.39'Jez Ng
2012-09-09Fix default hint styling.Jez Ng
2012-09-08Merge branch 'next-release'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-09-08Set up PhantomJS testing.Jez Ng
2012-09-08Fix completion key generation.Jez Ng
2012-09-04Style fixes.Jez Ng
Errors were detected using coffeelint.
2012-09-04More misc cleanups.Jez Ng
2012-09-03Merge pull request #640 from mgarriott/get_showadvanced_from_settingsJez Ng
The help dialog now gets showAdvancedCommands directly from settings.
2012-09-03Make hints tests pass again.Jez Ng
Convert them to Coffeescript at the same time. We really need to set up some automated way of running these tests, to ensure they don't keep breaking.
2012-09-03Fixes and cleanups for main.coffee.Jez Ng
2012-09-03The help dialog now gets showAdvancedCommands directly from settings.Matt Garriott
2012-09-01Specifically create a "newtab" page, as suggested by #630Phil Crosby
2012-09-01Add a few missed exports to main.coffeePhil Crosby
2012-09-01Remove an old upgrade codepath for version 1.21.Phil Crosby
We're on 1.37 now so I think we're in the clear.
2012-09-01port main.js to main.coffee. All coffeescript all the time.Phil Crosby
2012-08-25The help dialog will now properly read the user's preference for showing ↵Matt Garriott
advanced commands.
2012-08-20Point options link in help dialog to new location.Jez Ng
2012-08-19Merge pull request #618 from dmacdougall/browser_action_iconPhil Crosby
Re-enable browser action icon
2012-08-19Tabs -> spaces.Jez Ng
2012-08-18Re-enable browser action with new iconsDaniel MacDougall
2012-08-06vomnibar: New tabs for 'O' and 'B'Carl Helmertz
'B' is a new command for searching for a bookmark and opens it in a new tab. 'O' now searches through history and bookmarks and opens the selected item in a new tab. Previously, it started vomnibar with the current URI selected and opened the selection in the same tab. This fixes #594. Signed-off-by: Carl Helmertz <helmertz@gmail.com>
2012-08-04Re-expose defaults -- options.js needs it.Jez Ng
2012-08-04Convert one-shot ports to requests. Closes #8 (!!)Jez Ng
2012-08-04Convert 'getScrollPosition' from port to request.Jez Ng
2012-08-04Improve encapsulation of Settings.Jez Ng
We should eventually do this for the other modules as well.
2012-08-04linkHintCss should be accessed via settings. Closes #605.Jez Ng
2012-08-04Miscellaneous cleanups.Jez Ng
* " -> &quot; because my syntax highlighting gets confused * Remove inline onclick handlers as part of manifest v2 upgrade
2012-07-26Upgrade to manifest version 2.Jez Ng
I use the beta channel by default, and it no longer allows me to run development builds with the old manifest version.
2012-07-22Use vimium-specific class names, and use vimium reset. Now the vomnibar is ↵Phil Crosby
more resistant to a site's css. Previously the vomnibar didn't look great on Quora because of this.
2012-07-06Bookmarks mode in Vomnibarilya
2012-07-06Use more Coffeescript idioms.Jez Ng
2012-07-04Use block strings for settingsDarren Jeacocke
2012-06-17Use the browser's built-in bind() instead of our proxy()Phil Crosby
2012-06-12Upcase the vomnibar command name.Phil Crosby
We'll want to revert this later, to divorce the name of the command from the implementation.
2012-06-12Uppercase linkhints. This will break a few people's bindings.Phil Crosby
We should avoid revealing our implementation in the future.
2012-06-12Uppercase utils -> UtilsPhil Crosby
2012-06-12Port settings.js to coffeescriptPhil Crosby
2012-06-12Port commands.js to coffeescriptPhil Crosby
2012-06-10Add a few comments and eliminate an unnecessary parameter.Phil Crosby
2012-06-10hide relevancy. It's a debug option.Phil Crosby
2012-06-10Complete tabs in the omnibar.Phil Crosby
Right now this is triggered on Shift+T. Firefox also does tab matching in their omnibar. I'm not sure if collapsing the two searches into one UI is a good idea.
2012-06-10Ensure matches are case insensitive, and cache regexp's so they're not ↵Phil Crosby
created excessively.