From d49cf9ee614f1d42ae06468e43e4214ad2fca9df Mon Sep 17 00:00:00 2001 From: Adam Young Date: Fri, 14 Jan 2011 12:16:25 -0500 Subject: lint clean added a config file for running jsl. run 'jsl -conf jsl.conf' and see that there are no error messages. --- install/static/webui.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'install/static/webui.js') diff --git a/install/static/webui.js b/install/static/webui.js index e5e5f57e..1f45f0b1 100644 --- a/install/static/webui.js +++ b/install/static/webui.js @@ -1,3 +1,6 @@ +/*jsl:import ipa.js */ +/*jsl:import navigation.js */ + /* Authors: * Pavel Zuna * @@ -137,7 +140,7 @@ $(function() { nav_create(self_serv_tab_set, navigation, 'tabs'); var state = {'user-pkey':IPA.whoami_pkey , - 'user-facet': jQuery.bbq.getState('user-facet') || + 'user-facet': $.bbq.getState('user-facet') || 'details'}; $.bbq.pushState(state); } @@ -158,14 +161,12 @@ $(function() { }); /* main loop (hashchange event handler) */ -function window_hashchange(evt) -{ +function window_hashchange(evt){ nav_update_tabs(); } /* builder function for unimplemented tab content */ -function unimplemented_tab(jobj) -{ +function unimplemented_tab(jobj){ jobj.text('Not implemented yet!'); } -- cgit