File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
assets/javascripts/views/content Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ class app.views.SettingsPage extends app.View
28
28
html .classList .toggle (' _theme-default' )
29
29
html .classList .toggle (' _theme-dark' )
30
30
app .settings .set (' dark' , !! enable)
31
+ app .appCache ? .updateInBackground ()
31
32
return
32
33
33
34
toggleLayout : (layout , enable ) ->
Original file line number Diff line number Diff line change @@ -122,6 +122,19 @@ def app
122
122
refute_includes last_response . body , 'foo'
123
123
end
124
124
125
+ it "has the word 'default' when no 'dark' cookie is set" do
126
+ get '/manifest.appcache'
127
+ assert_includes last_response . body , '# default'
128
+ refute_includes last_response . body , '# dark'
129
+ end
130
+
131
+ it "has the word 'dark' when the cookie is set" do
132
+ set_cookie ( 'dark=1' )
133
+ get '/manifest.appcache'
134
+ assert_includes last_response . body , '# dark'
135
+ refute_includes last_response . body , '# default'
136
+ end
137
+
125
138
it "sets default size" do
126
139
get '/manifest.appcache'
127
140
assert_includes last_response . body , '20rem'
Original file line number Diff line number Diff line change 1
1
CACHE MANIFEST
2
- # <%= app_size %> <%= app_layout %>
2
+ # <%= app_theme %> <%= app_size %> <%= app_layout %>
3
3
4
4
CACHE:
5
5
/
You can’t perform that action at this time.
0 commit comments