Repository: airavata-php-gateway Updated Branches: refs/heads/master a50baf6f4 -> 54ec98065
fixing AIRAVATA-1766 Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/d31ecace Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/d31ecace Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/d31ecace Branch: refs/heads/master Commit: d31ecace7bd636c7587c6fffcf00487a346379ac Parents: a50baf6 Author: Supun Nakandala <[email protected]> Authored: Tue Jul 14 20:39:21 2015 +0530 Committer: Supun Nakandala <[email protected]> Committed: Tue Jul 14 20:39:21 2015 +0530 ---------------------------------------------------------------------- app/views/partials/experiment-info.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/d31ecace/app/views/partials/experiment-info.blade.php ---------------------------------------------------------------------- diff --git a/app/views/partials/experiment-info.blade.php b/app/views/partials/experiment-info.blade.php index e388230..761a505 100644 --- a/app/views/partials/experiment-info.blade.php +++ b/app/views/partials/experiment-info.blade.php @@ -129,11 +129,11 @@ type="submit" class="btn btn-success" value="Launch" - title="Launch the experiment" <?php if (!$expVal["editable"]) echo 'disabled' ?>> + title="Launch the experiment" <?php if (!$expVal["editable"]) echo 'style="display: none"' ?>> <a href="{{URL::to('/') }}/experiment/cancel?expId={{ $experiment->experimentID }}" class="btn btn-default" role="button" - title="Edit the experiment's settings" <?php if (!$expVal["cancelable"]) echo 'disabled' ?>> + tit le="Edit the experiment's settings" <?php if (!$expVal["cancelable"]) echo 'style="display: none"' ?>> <input name="cancel" type="submit" class="btn btn-warning" value="Cancel" <?php if (!$expVal["cancelable"]) echo 'disabled'; ?> > </a> @@ -147,7 +147,7 @@ <a href="{{URL::to('/') }}/experiment/edit?expId={{ $experiment->experimentID }}" class="btn btn-default" role="button" - title="Edit the experiment's settings" <?php if (!$expVal["editable"]) echo 'disabled' ?>> + title="Edit the experiment's settings" <?php if (!$expVal["editable"]) echo 'style="display: none"' ?>> <span class="glyphicon glyphicon-pencil"></span> Edit </a>
