firstrun: use $.getValue, not $.config

This commit is contained in:
James Campos 2011-06-20 23:53:31 -07:00
parent b5559ca568
commit 97eb680ea4
2 changed files with 2 additions and 2 deletions

View File

@ -2674,7 +2674,7 @@
} }
$.bind(d.body, 'DOMNodeInserted', nodeInserted); $.bind(d.body, 'DOMNodeInserted', nodeInserted);
options.init(); options.init();
if (!$.config('firstrun')) { if (!$.getValue('firstrun')) {
return firstRun.init(); return firstRun.init();
} }
}, },

View File

@ -2089,7 +2089,7 @@ main =
$.bind d.body, 'DOMNodeInserted', nodeInserted $.bind d.body, 'DOMNodeInserted', nodeInserted
options.init() options.init()
unless $.config 'firstrun' unless $.getValue 'firstrun'
firstRun.init() firstRun.init()
css: ' css: '