You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ma...@apache.org on 2014/05/08 22:52:07 UTC

git commit: Fixed wrapped sandbox link.

Repository: incubator-aurora
Updated Branches:
  refs/heads/master b126242d6 -> f561fbdd2


Fixed wrapped sandbox link.

Testing Done:
Tested on local laptop.

Bugs closed: AURORA-396

Reviewed at https://reviews.apache.org/r/21145/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/f561fbdd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/f561fbdd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/f561fbdd

Branch: refs/heads/master
Commit: f561fbdd2defc7b1902e9f3f3a3b425976138f0f
Parents: b126242
Author: Suman Karumuri <ma...@apache.org>
Authored: Thu May 8 13:34:34 2014 -0700
Committer: Suman Karumuri <sk...@twitter.com>
Committed: Thu May 8 13:34:34 2014 -0700

----------------------------------------------------------------------
 .../aurora/scheduler/http/ui/taskSandbox.html   | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/f561fbdd/src/main/resources/org/apache/aurora/scheduler/http/ui/taskSandbox.html
----------------------------------------------------------------------
diff --git a/src/main/resources/org/apache/aurora/scheduler/http/ui/taskSandbox.html b/src/main/resources/org/apache/aurora/scheduler/http/ui/taskSandbox.html
index 65fb8f0..ae10d91 100644
--- a/src/main/resources/org/apache/aurora/scheduler/http/ui/taskSandbox.html
+++ b/src/main/resources/org/apache/aurora/scheduler/http/ui/taskSandbox.html
@@ -1,13 +1,11 @@
-<div class='row'>
-  <div class='span2'>
-    <span ng-if='dataRow.sandboxExists'>
-      <a ng-href='http://{{formatedValue}}:1338/task/{{dataRow.taskId}}'>
-        {{formatedValue}}
-      </a>
-    </span>
-
-    <span ng-if='!dataRow.sandboxExists'>
+<div>
+  <span ng-if='dataRow.sandboxExists'>
+    <a ng-href='http://{{formatedValue}}:1338/task/{{dataRow.taskId}}'>
       {{formatedValue}}
-    </span>
-  </div>
+    </a>
+  </span>
+
+  <span ng-if='!dataRow.sandboxExists'>
+    {{formatedValue}}
+  </span>
 </div>