aboutsummaryrefslogtreecommitdiffstats
path: root/pages
diff options
context:
space:
mode:
authorStephen Blott2016-03-04 06:30:09 +0000
committerStephen Blott2016-03-04 06:30:09 +0000
commit36d9b07f7617b18706f9523cfee121a0e2cf61b0 (patch)
treece64d6228ca0a893c26c916c86b89bcdd914c3ea /pages
parent7f0fccf363ce887d8d9b1b92494ab94547931150 (diff)
downloadvimium-36d9b07f7617b18706f9523cfee121a0e2cf61b0.tar.bz2
Do not use standalone @.
The styles guide says not to use standalone `@`. So this changes the occurrences I could find (with sed) to `this`. Occurrences within files with major outstanding PRs are omitted.
Diffstat (limited to 'pages')
-rw-r--r--pages/options.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/options.coffee b/pages/options.coffee
index 51400740..a82c3807 100644
--- a/pages/options.coffee
+++ b/pages/options.coffee
@@ -21,7 +21,7 @@ class Option
@element = $(@field)
@element.addEventListener "change", @onUpdated
@fetch()
- Option.all.push @
+ Option.all.push this
# Fetch a setting from localStorage, remember the @previous value and populate the DOM element.
# Return the fetched value.