| Index: chrome/browser/resources/md_user_manager/create_profile.js
|
| diff --git a/chrome/browser/resources/md_user_manager/create_profile.js b/chrome/browser/resources/md_user_manager/create_profile.js
|
| index 141e7235fa58914d0c7abf88bf75e600f2d83712..14c0efdd8081f87d63fcc8b2cdd17ed5b74b99ea 100644
|
| --- a/chrome/browser/resources/md_user_manager/create_profile.js
|
| +++ b/chrome/browser/resources/md_user_manager/create_profile.js
|
| @@ -171,8 +171,8 @@ Polymer({
|
| * @param {!Event} event
|
| * @private
|
| */
|
| - onLearnMore_: function(event) {
|
| - // TODO(mahmadi): fire the event to show the 'learn-more-page'
|
| + onLearnMoreTap_: function(event) {
|
| + this.fire('change-page', {page: 'supervised-learn-more-page'});
|
| },
|
|
|
| /**
|
| @@ -180,7 +180,7 @@ Polymer({
|
| * @param {!Event} event
|
| * @private
|
| */
|
| - onOk_: function(event) {
|
| + onOkTap_: function(event) {
|
| this.createInProgress_ = true;
|
| signin.ProfileApi.createProfile(
|
| this.profileName_, this.profileIconUrl_, this.isSupervised_,
|
| @@ -192,7 +192,7 @@ Polymer({
|
| * @param {!Event} event
|
| * @private
|
| */
|
| - onCancel_: function(event) {
|
| + onCancelTap_: function(event) {
|
| if (this.createInProgress_) {
|
| this.createInProgress_ = false;
|
| signin.ProfileApi.cancelCreateProfile();
|
|
|