Skip to content

Commit

Permalink
Added gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmadigan committed Oct 17, 2012
1 parent d51a637 commit 8cca835
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cloud/wufoo_config.js
client/default/js/wufoo_config.js
3 changes: 2 additions & 1 deletion client/default/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ input[type=text] {
height: 25px;
}

#versionNum {
#fh_app_version {
text-align: center;
font-size: 10px;
font-family: Verdana;
}
2 changes: 1 addition & 1 deletion client/default/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h4>Below are your pending submissions</h4>
</div>
</div>

<div id="versionNum"></div>
<div id="fh_app_version"></div>
<div class="ts" display="none"></div>

<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
Expand Down
9 changes: 4 additions & 5 deletions client/default/js/wufoo.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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');
},

Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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);
},

Expand Down

0 comments on commit 8cca835

Please sign in to comment.