Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Bug 1211767 - [smart-system] Use the same naming for Firefox Account …
Browse files Browse the repository at this point in the history
…files as the ones in apps/system
  • Loading branch information
begeeben committed Oct 6, 2015
1 parent 8c58d62 commit e264322
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tv_apps/smart-system/fxa/js/fxam_server_request.js
Expand Up @@ -28,7 +28,7 @@
}

function _ensureFxaClient(callback) {
window.parent.LazyLoader.load('../js/fxa_client.js', function() {
window.parent.LazyLoader.load('../js/fx_accounts_client.js', function() {
callback && callback();
});
}
Expand Down
4 changes: 2 additions & 2 deletions tv_apps/smart-system/index.html
Expand Up @@ -343,8 +343,8 @@

<!-- Firefox Accounts -->
<link rel="stylesheet" type="text/css" href="style/firefox_account/firefox_account_container.css">
<script defer src="js/fxa_ui.js"></script>
<script defer src="js/fxa_manager.js"></script>
<script defer src="js/fx_accounts_u_i.js"></script>
<script defer src="js/fx_accounts_manager.js"></script>

<!-- App Usage Metrics -->
<script defer src="js/app_usage_metrics.js"></script>
Expand Down
Expand Up @@ -81,7 +81,7 @@ var FxAccountsManager = {
case 'logout':
case 'resendVerificationEmail':
(function(methodName) {
LazyLoader.load('js/fxa_client.js', function() {
LazyLoader.load('js/fx_accounts_client.js', function() {
FxAccountsClient[methodName](function(data) {
self.sendPortMessage({ methodName: methodName, data: data });
}, function(error) {
Expand Down
@@ -1,7 +1,7 @@
/* global FxAccountsClient */
'use strict';

requireApp('smart-system/js/fxa_client.js');
requireApp('smart-system/js/fx_accounts_client.js');

var MockEventListener = {};
var MockDispatchedEvents = [];
Expand Down

0 comments on commit e264322

Please sign in to comment.