Strings y'all

This commit is contained in:
Zixaphir 2014-01-11 11:00:04 -07:00
parent 93c78e2d54
commit d8bc0616e8
3 changed files with 4 additions and 4 deletions

View File

@ -12037,7 +12037,7 @@
style = d.cookie.match(new RegExp("" + type + "\_style\=([^;]+)"));
return [(style ? style[1] : base), "" + type + "_style"];
};
style = findStyle(sfw ? [ws, 'Yotsuba B New'] : [nws, 'Yotsuba New']);
style = findStyle(sfw ? ['ws', 'Yotsuba B New'] : ['nws', 'Yotsuba New']);
$.globalEval("var style_group = '" + style[1] + "'");
mainStyleSheet = $('link[title=switch]', d.head);
newStyleSheet = $("link[title='" + style[0] + "']", d.head);

View File

@ -12026,7 +12026,7 @@
style = d.cookie.match(new RegExp("" + type + "\_style\=([^;]+)"));
return [(style ? style[1] : base), "" + type + "_style"];
};
style = findStyle(sfw ? [ws, 'Yotsuba B New'] : [nws, 'Yotsuba New']);
style = findStyle(sfw ? ['ws', 'Yotsuba B New'] : ['nws', 'Yotsuba New']);
$.globalEval("var style_group = '" + style[1] + "'");
mainStyleSheet = $('link[title=switch]', d.head);
newStyleSheet = $("link[title='" + style[0] + "']", d.head);

View File

@ -141,9 +141,9 @@ Navigate =
return [(if style then style[1] else base), "#{type}_style"]
style = findStyle if sfw
[ws, 'Yotsuba B New']
['ws', 'Yotsuba B New']
else
[nws, 'Yotsuba New']
['nws', 'Yotsuba New']
$.globalEval "var style_group = '#{style[1]}'"