From 8cca8358c4ed3a955d467db55c43b3129a10f4d4 Mon Sep 17 00:00:00 2001 From: Jason Madigan Date: Wed, 17 Oct 2012 10:30:54 +0100 Subject: [PATCH] Added gitignore --- .gitignore | 2 ++ client/default/css/style.css | 3 ++- client/default/index.html | 2 +- client/default/js/wufoo.js | 9 ++++----- 4 files changed, 9 insertions(+), 7 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..7411b403 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +cloud/wufoo_config.js +client/default/js/wufoo_config.js diff --git a/client/default/css/style.css b/client/default/css/style.css index cd17522a..4d6e86d8 100755 --- a/client/default/css/style.css +++ b/client/default/css/style.css @@ -211,7 +211,8 @@ input[type=text] { height: 25px; } -#versionNum { +#fh_app_version { + text-align: center; font-size: 10px; font-family: Verdana; } diff --git a/client/default/index.html b/client/default/index.html index 621cf3c2..0af057b5 100755 --- a/client/default/index.html +++ b/client/default/index.html @@ -36,7 +36,7 @@

Below are your pending submissions

-
+
diff --git a/client/default/js/wufoo.js b/client/default/js/wufoo.js index 0410f36f..08b9f352 100644 --- a/client/default/js/wufoo.js +++ b/client/default/js/wufoo.js @@ -15,8 +15,7 @@ var WufooController = { this.bind(); this.getFormList(true); $fh.fh_timeout = 120000; - jQuery('#versionNum').html('Version: ' + fh_app_version); - + jQuery('#fh_app_version').html('Version: ' + fh_app_version); }, bind: function() { @@ -70,7 +69,7 @@ var WufooController = { this.hideAll(); jQuery('.ts').val(""); jQuery('#fh_wufoo_form_list').show(); - jQuery('#versionNum').show(); + jQuery('#fh_app_version').show(); this.makeActive('fh_wufoo_home'); }, @@ -193,7 +192,7 @@ var WufooController = { }, hideAll: function() { - jQuery('#fh_wufoo_content, #fh_wufoo_drafts_list, #fh_wufoo_form_list, #fh_wufoo_pending_list, #versionNum').hide(); + jQuery('#fh_wufoo_content, #fh_wufoo_drafts_list, #fh_wufoo_form_list, #fh_wufoo_pending_list, #fh_app_version').hide(); }, makeActive: function(active_item) { @@ -601,7 +600,7 @@ var WufooController = { showFormList: function() { jQuery('#fh_wufoo_form_list').show(); - jQuery('#versionNum').show(); + jQuery('#fh_app_version').show(); window.scrollTo(0, 0); },