Index: app/subapps/browser/views/sidebar.js |
=== modified file 'app/subapps/browser/views/sidebar.js' |
--- app/subapps/browser/views/sidebar.js 2013-04-09 14:14:28 +0000 |
+++ app/subapps/browser/views/sidebar.js 2013-04-09 20:50:14 +0000 |
@@ -80,24 +80,22 @@ |
// display. |
this.get('store').sidebarEditorial({ |
'success': function(data) { |
- // XXX: j.c.sackett Apr 9, 2013: Remove all references to "slider" |
- // once Charmworld API is updated |
- var sliderCharms = this.get('store').resultsToCharmlist( |
- data.result.slider); |
- var sliderContainer = container.one('.bws-left .slider'); |
- var sliderCharmContainer = new Y.juju.widgets.browser.CharmContainer({ |
+ var featuredCharms = this.get('store').resultsToCharmlist( |
+ data.result.featured); |
+ var featuredContainer = container.one('.bws-left .featured'); |
+ var featuredCharmContainer = new widgets.browser.CharmContainer({ |
name: 'Featured Charms', |
cutoff: 1, |
- children: sliderCharms.map(function(charm) { |
+ children: featuredCharms.map(function(charm) { |
return charm.getAttrs(); }) |
}); |
- sliderCharmContainer.render(sliderContainer); |
+ featuredCharmContainer.render(featuredContainer); |
// Add in the charm tokens for the new as well. |
var newContainer = container.one('.bws-left .new'); |
var newCharms = this.get('store').resultsToCharmlist( |
data.result['new']); |
- var newCharmContainer = new Y.juju.widgets.browser.CharmContainer({ |
+ var newCharmContainer = new widgets.browser.CharmContainer({ |
name: 'New Charms', |
cutoff: 2, |
children: newCharms.map(function(charm) { |
@@ -108,8 +106,8 @@ |
// Add the charms to the cache for use in other views. |
// Start with a reset to empty any current cached models. |
this._cacheCharms.reset(newCharms); |
- this._cacheCharms.add(sliderCharms); |
- this.charmContainers = [newCharmContainer, sliderCharmContainer]; |
+ this._cacheCharms.add(featuredCharms); |
+ this.charmContainers = [newCharmContainer, featuredCharmContainer]; |
}, |
'failure': function(data, request) { |