OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 Polymer('gaia-whitelist-error', (function() { |
| 6 // The help topic regarding user not being in the whitelist. |
| 7 /** @const */ var HELP_CANT_ACCESS_ACCOUNT = 188036; |
| 8 |
| 9 return { |
| 10 enterpriseManaged: false, |
| 11 |
| 12 onLearnMoreClicked: function() { |
| 13 chrome.send('launchHelpApp', [HELP_CANT_ACCESS_ACCOUNT]); |
| 14 }, |
| 15 |
| 16 tryAgainButtonClicked: function() { |
| 17 $('gaia-signin').showWhitelistCheckFailedError(false); |
| 18 } |
| 19 }; |
| 20 })()); |
OLD | NEW |