Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Unified Diff: appengine/swarming/ui/res/imp/common/common-behavior.html

Issue 2410573002: Make new UI be the default UI (Closed)
Patch Set: simplify regex Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/swarming/ui/build/elements.html ('k') | appengine/swarming/ui/res/imp/common/swarming-app.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/ui/res/imp/common/common-behavior.html
diff --git a/appengine/swarming/ui/res/imp/common/common-behavior.html b/appengine/swarming/ui/res/imp/common/common-behavior.html
index 1a7e506fb4b8e57566214d62f985af438e13d6e1..68712d51a2f3dc7b1db7eaa7f64c166f56602a4b 100644
--- a/appengine/swarming/ui/res/imp/common/common-behavior.html
+++ b/appengine/swarming/ui/res/imp/common/common-behavior.html
@@ -26,7 +26,7 @@
if (!bot_id) {
return undefined;
}
- return "/newui/bot?id=" + bot_id;
+ return "/bot?id=" + bot_id;
},
// Create a link to a bot list with the preloaded filters and columns.
@@ -43,7 +43,7 @@
f: fArr,
c: columns,
}
- return "/newui/botlist?" + sk.query.fromParamSet(obj);
+ return "/botlist?" + sk.query.fromParamSet(obj);
},
// Create a link to a bot in Google Cloud Console. Cloud console will try
@@ -127,7 +127,7 @@
// abcefgh0, not abcefgh1 or abcefgh2.
taskId = taskId.substring(0, taskId.length - 1) + "0";
}
- return "/newui/task?id=" + taskId;
+ return "/task?id=" + taskId;
},
// _timeDiffApprox returns the approximate difference between now and
« no previous file with comments | « appengine/swarming/ui/build/elements.html ('k') | appengine/swarming/ui/res/imp/common/swarming-app.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698