Skip to content

Commit

Permalink
Update caption_view.php
Browse files Browse the repository at this point in the history
Send button never get enabled, because it's a jquery-ui button
  • Loading branch information
s4mdf0o1 committed Jan 14, 2014
1 parent 4e3a06b commit c7c679f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/admin/dataentry/caption_view.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ function activateSubmit(me)
{
if (me.value != '')
{
document.getElementById('submitdata').disabled = false;
$('#submitdata').button("option", "disabled", false);
}
else
{
document.getElementById('submitdata').disabled = true;
$('#submitdata').button("option", "disabled", true);
}
}
//--></script>
Expand Down Expand Up @@ -78,4 +78,4 @@ function activateSubmit(me)
</tr>

<tr class='data-entry-separator'><td colspan='3'></td></tr>
<?php } ?>
<?php } ?>

0 comments on commit c7c679f

Please sign in to comment.