Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1964)

Unified Diff: app/subapps/browser/views/sidebar.js

Issue 8600043: Removes remaining references to charm slider
Patch Set: Removes remaining references to charm slider Created 11 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « app/subapps/browser/templates/sidebar.handlebars ('k') | test/data/sidebar_editorial.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « app/subapps/browser/templates/sidebar.handlebars ('k') | test/data/sidebar_editorial.json » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b