incorporated the sharing modal
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/a91aaae7 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/a91aaae7 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/a91aaae7 Branch: refs/heads/grouper-integration Commit: a91aaae7a24f1c7dee7ac0283cb92b3830610a66 Parents: ded24f1 Author: Jeff Kinnison <[email protected]> Authored: Wed Jun 29 13:13:53 2016 -0400 Committer: Jeff Kinnison <[email protected]> Committed: Wed Jun 29 13:13:53 2016 -0400 ---------------------------------------------------------------------- app/views/project/create.blade.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/a91aaae7/app/views/project/create.blade.php ---------------------------------------------------------------------- diff --git a/app/views/project/create.blade.php b/app/views/project/create.blade.php index 5b47beb..8b3ebec 100755 --- a/app/views/project/create.blade.php +++ b/app/views/project/create.blade.php @@ -2,6 +2,7 @@ @section('page-header') @parent +{{ HTML::style('css/sharing.css') }} @stop @section('content') @@ -24,6 +25,10 @@ placeholder="Optional: Enter a short description of the project" maxlength="200"></textarea> </div> + <div class="form-group"> + <button id="project-share">Share With Other Users</button> + </div> + <input name="save" type="submit" class="btn btn-primary create-project" value="Save"> <input name="clear" type="reset" class="btn btn-default" value="Clear"> @@ -41,4 +46,5 @@ $(this).val($.trim($(this).val())); }); </script> -@stop \ No newline at end of file +{{ HTML::script('js/sharing/share.js') }} +@stop
