pedantic style change
This commit is contained in:
parent
822d77eca6
commit
7f8f605c99
@ -4,8 +4,9 @@
|
|||||||
/* sets the sheet to the sheet in the cookie, if the user saved their
|
/* sets the sheet to the sheet in the cookie, if the user saved their
|
||||||
* preferences */
|
* preferences */
|
||||||
window.initializesheets = function() {
|
window.initializesheets = function() {
|
||||||
var sheet = window.getCookie('sheet');
|
var sheet;
|
||||||
if(sheet != '') window.setStyling(sheet);
|
if((sheet = window.getCookie('sheet')) != '')
|
||||||
|
window.setStyling(sheet);
|
||||||
};
|
};
|
||||||
|
|
||||||
/* fetches the current styling value */
|
/* fetches the current styling value */
|
||||||
|
Loading…
Reference in New Issue
Block a user