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

Unified Diff: appengine/config_service/ui/common/third_party/google-signin/google-signin-aware.html

Issue 2977763002: config_service: Changed lists from paper-items to paper-cards, fixed (Closed)
Patch Set: Fixed nit regarding first letter of sentence in comment. Created 3 years, 5 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
Index: appengine/config_service/ui/common/third_party/google-signin/google-signin-aware.html
diff --git a/appengine/config_service/ui/common/third_party/google-signin/google-signin-aware.html b/appengine/config_service/ui/common/third_party/google-signin/google-signin-aware.html
index 4368b2951ff1de04b15fd5ca85c604ff5b85e284..03f21163c6fc1ec5b8d489d1df08888ad387e616 100644
--- a/appengine/config_service/ui/common/third_party/google-signin/google-signin-aware.html
+++ b/appengine/config_service/ui/common/third_party/google-signin/google-signin-aware.html
@@ -230,14 +230,13 @@ limitations under the License.
signinAwares: [],
init: function() {
- var that = this;
document.addEventListener('DOMContentLoaded', function() {
- that._apiLoader = document.createElement('google-js-api');
- that._apiLoader.addEventListener('js-api-load', that.loadAuth2.bind(that));
+ this._apiLoader = document.createElement('google-js-api');
+ this._apiLoader.addEventListener('js-api-load', this.loadAuth2.bind(this));
if (Polymer.Element) {
- document.body.appendChild(that._apiLoader);
+ document.body.appendChild(this._apiLoader);
}
- })
+ }.bind(this));
},
loadAuth2: function() {
« no previous file with comments | « appengine/config_service/ui/common/auth-signin.html ('k') | appengine/config_service/ui/src/config-ui/config-file-card.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698