Skip to content

Commit

Permalink
Fixed issue: save button doesn't show in URL Parameters dialog
Browse files Browse the repository at this point in the history
This works, but we might want to look for a better solution.
9351790#commitcomment-1722014
  • Loading branch information
aaronschmitz committed Aug 16, 2012
1 parent a541050 commit 82d31f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/admin/surveysettings.js
Expand Up @@ -53,7 +53,7 @@ $(document).ready(function(){
$('#btnSave').click(saveParameter);
$('#addnewsurvey').submit(PostParameterGrid);
$( "#tabs" ).bind( "tabsselect", function(event, ui) {
if (ui.index>4)
if (ui.index!=5)
{$('#btnSave').hide();}
else
{$('#btnSave').show();}
Expand Down

0 comments on commit 82d31f3

Please sign in to comment.