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
|
||||
* preferences */
|
||||
window.initializesheets = function() {
|
||||
var sheet = window.getCookie('sheet');
|
||||
if(sheet != '') window.setStyling(sheet);
|
||||
var sheet;
|
||||
if((sheet = window.getCookie('sheet')) != '')
|
||||
window.setStyling(sheet);
|
||||
};
|
||||
|
||||
/* fetches the current styling value */
|
||||
|
Loading…
Reference in New Issue
Block a user