AIRAVATA-2270 removing extraneous stuff

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/71d4f7f7
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/71d4f7f7
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/71d4f7f7

Branch: refs/heads/develop
Commit: 71d4f7f7ab213fd8e788e6d809172f9330b2a93e
Parents: aeb5e49f
Author: Marcus Christie <[email protected]>
Authored: Wed Dec 14 15:18:33 2016 -0500
Committer: Marcus Christie <[email protected]>
Committed: Wed Dec 14 15:18:33 2016 -0500

----------------------------------------------------------------------
 app/views/admin/manage-experiments.blade.php | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/71d4f7f7/app/views/admin/manage-experiments.blade.php
----------------------------------------------------------------------
diff --git a/app/views/admin/manage-experiments.blade.php 
b/app/views/admin/manage-experiments.blade.php
index 2cc8c22..bb1fe9c 100644
--- a/app/views/admin/manage-experiments.blade.php
+++ b/app/views/admin/manage-experiments.blade.php
@@ -442,18 +442,15 @@ to be uncommented when actually in use.
 
         var expId = $(".experimentId").val();
         var expHTMLId = util.sanitizeHTMLId(expId);
-        console.log("expHTMLId", expHTMLId);
         if( $("#" + expHTMLId).length <= 0){
             $(".loading-img").removeClass("hide");
             $.ajax({
                 url: 'experiment/summary?expId=' + encodeURIComponent(expId),
                 type: 'get',
                 success: function (data) {
-                    //$(".experiment-info").html(data);
                     $("#myTabs").append('<li role="presentation"><a href="#' + 
expHTMLId + '" aria-controls="' + expHTMLId + '" role="tab" 
data-toggle="tab"><span class="expid-label"></span><button type="button" 
style="margin-left:10px;" class="close pull-right close-tab" 
aria-label="Close"><span aria-hidden="true">&times;</span></button></a></li>');
                     // Set expId with .text() so it gets properly escaped
                     $('#myTabs a[href="#' + expHTMLId + '"] 
.expid-label').text(expId);
-                    // $(".tab-content").append('<div role="tabpanel" 
class="tab-pane" id="' + expHTMLId + '">' + data + '</div>');
                     $(".tab-content").append('<div role="tabpanel" 
class="tab-pane" id="' + expHTMLId + '"></div>');
                     $(".tab-content #" + expHTMLId).html(data);
                     $('#myTabs a[href="#' + expHTMLId + '"]').tab('show'); // 
Select tab by name

Reply via email to