Repository: airavata-php-gateway Updated Branches: refs/heads/develop d36574e5b -> 424e82758
AIRAVATA-2216 Sharing button's type is button This fixes the problem where clicking on the sharing button could inadvertently submit the form if the page is still loading. 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/ece7a9e5 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/ece7a9e5 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/ece7a9e5 Branch: refs/heads/develop Commit: ece7a9e53f125420526b7eda3833b4ce80c0c8fc Parents: de3ac07 Author: Marcus Christie <[email protected]> Authored: Mon Nov 14 17:23:03 2016 -0500 Committer: Marcus Christie <[email protected]> Committed: Mon Nov 14 17:23:03 2016 -0500 ---------------------------------------------------------------------- app/views/partials/sharing-display-body.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/ece7a9e5/app/views/partials/sharing-display-body.blade.php ---------------------------------------------------------------------- diff --git a/app/views/partials/sharing-display-body.blade.php b/app/views/partials/sharing-display-body.blade.php index 7a494fe..dbb7b69 100644 --- a/app/views/partials/sharing-display-body.blade.php +++ b/app/views/partials/sharing-display-body.blade.php @@ -1,6 +1,6 @@ @if($form) <label for="project-share">Sharing Settings</label><br /> -<button class="btn btn-default" name="project-share" id="project-share">Share With Other Users</button><br /> +<button type="button" class="btn btn-default" name="project-share" id="project-share">Share With Other Users</button><br /> @else <h3>Sharing Details</h3> @endif
