OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 function getAppsCallback(data) { | 5 function getAppsCallback(data) { |
6 logEvent('recieved apps'); | 6 logEvent('recieved apps'); |
7 var appsSection = $('apps-section'); | 7 var appsSection = $('apps'); |
8 var appsSectionContent = $('apps-section-content'); | 8 var appsSectionContent = $('apps-maxiview'); |
9 var appsMiniview = appsSection.getElementsByClassName('miniview')[0]; | 9 var appsMiniview = appsSection.getElementsByClassName('miniview')[0]; |
10 appsSectionContent.textContent = ''; | 10 appsSectionContent.textContent = ''; |
11 appsMiniview.textContent = ''; | 11 appsMiniview.textContent = ''; |
12 | 12 |
13 if (data.apps.length == 0) { | 13 if (data.apps.length == 0) { |
14 appsSection.classList.add('disabled'); | 14 appsSection.classList.add('disabled'); |
15 return; | 15 return; |
16 } | 16 } |
17 | 17 |
18 data.apps.forEach(function(app) { | 18 data.apps.forEach(function(app) { |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 }, | 140 }, |
141 | 141 |
142 createWebStoreElement: function() { | 142 createWebStoreElement: function() { |
143 return this.createElement_({ | 143 return this.createElement_({ |
144 'id': 'web-store-entry', | 144 'id': 'web-store-entry', |
145 'name': localStrings.getString('web_store_title'), | 145 'name': localStrings.getString('web_store_title'), |
146 'launch_url': localStrings.getString('web_store_url') | 146 'launch_url': localStrings.getString('web_store_url') |
147 }); | 147 }); |
148 } | 148 } |
149 }; | 149 }; |
OLD | NEW |