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

Side by Side Diff: appengine/swarming/ui/res/imp/botpage/bot-page-summary.html

Issue 2991303002: Add in OAuth authentication to Isolate Polymer UI (Closed)
Patch Set: Fix GET request for server_details Created 3 years, 4 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 unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 This in an HTML Import-able file that contains the definition 2 This in an HTML Import-able file that contains the definition
3 of the following elements: 3 of the following elements:
4 4
5 <bot-page-summary> 5 <bot-page-summary>
6 6
7 Usage: 7 Usage:
8 8
9 <bot-page-summary></bot-page-summary> 9 <bot-page-summary></bot-page-summary>
10 10
(...skipping 16 matching lines...) Expand all
27 27
28 Methods: 28 Methods:
29 None. 29 None.
30 30
31 Events: 31 Events:
32 None. 32 None.
33 --> 33 -->
34 <link rel="import" href="/res/imp/bower_components/paper-checkbox/paper-checkbox .html"> 34 <link rel="import" href="/res/imp/bower_components/paper-checkbox/paper-checkbox .html">
35 35
36 <link rel="import" href="/res/imp/common/single-page-style.html"> 36 <link rel="import" href="/res/imp/common/single-page-style.html">
37 <link rel="import" href="/res/imp/common/sort-toggle.html"> 37 <link rel="import" href="/res/imp/shared/sort-toggle.html">
38 <link rel="import" href="/res/imp/common/url-param.html"> 38 <link rel="import" href="/res/imp/shared/url-param.html">
39 39
40 <link rel="import" href="bot-page-shared-behavior.html"> 40 <link rel="import" href="bot-page-shared-behavior.html">
41 41
42 <dom-module id="bot-page-summary"> 42 <dom-module id="bot-page-summary">
43 <template> 43 <template>
44 <style include="single-page-style"> 44 <style include="single-page-style">
45 .wrapper { 45 .wrapper {
46 display: table; 46 display: table;
47 margin-left: auto; 47 margin-left: auto;
48 margin-bottom: 10px; 48 margin-bottom: 10px;
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 } 391 }
392 e.preventDefault(); 392 e.preventDefault();
393 e.stopPropagation(); 393 e.stopPropagation();
394 this.set("_sortstr", e.detail.name + ":" + e.detail.direction); 394 this.set("_sortstr", e.detail.name + ":" + e.detail.direction);
395 }, 395 },
396 396
397 }); 397 });
398 })(); 398 })();
399 </script> 399 </script>
400 </dom-module> 400 </dom-module>
OLDNEW
« no previous file with comments | « appengine/swarming/ui/res/imp/botpage/bot-page.html ('k') | appengine/swarming/ui/res/imp/common/auth-signin.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698