Repository: airavata-php-gateway Updated Branches: refs/heads/develop f6b4e4418 -> fc36f7374
adding missing brackets 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/fc36f737 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/fc36f737 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/fc36f737 Branch: refs/heads/develop Commit: fc36f737467e92060bf3b3fb0157574d9a51229b Parents: f6b4e44 Author: scnakandala <[email protected]> Authored: Fri Dec 2 16:14:37 2016 -0500 Committer: scnakandala <[email protected]> Committed: Fri Dec 2 16:14:37 2016 -0500 ---------------------------------------------------------------------- app/views/admin/manage-experiments.blade.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/fc36f737/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 624d33f..0115e32 100644 --- a/app/views/admin/manage-experiments.blade.php +++ b/app/views/admin/manage-experiments.blade.php @@ -470,10 +470,11 @@ to be uncommented when actually in use. url: 'experimentStatistics?fromTime=' + startTime + '&' + 'toTime=' + endTime, type: 'get', success: function (data) { - if( msg == null) + if( msg == null){ start = new Date(startTime + ' UTC'); end = new Date(endTime + ' UTC'); msg = "Experiment Statistics from " + start.toString() + " to " + end.toString(); + } $(".experiment-statistics").html( "<h2 class='text-center'>" + msg + "</h2><hr/>" + data); } }).complete(function () {
