another global var

This commit is contained in:
rolux 2011-11-06 22:03:24 +00:00
parent 5929e34dc8
commit cfe7282a24
2 changed files with 29 additions and 26 deletions

View file

@ -270,8 +270,7 @@ pandora.ui.folders = function() {
}).bindEvent({ }).bindEvent({
click: function() { click: function() {
var $dialog = Ox.Dialog({ var $dialog = Ox.Dialog({
buttons: Ox.merge( buttons: title != 'Featured Lists' ? [
title != 'Featured Lists' ? [
Ox.Button({title: 'Sign Up...'}).bindEvent({ Ox.Button({title: 'Sign Up...'}).bindEvent({
click: function() { click: function() {
$dialog.close(); $dialog.close();
@ -284,16 +283,19 @@ pandora.ui.folders = function() {
pandora.$ui.accountDialog = pandora.ui.accountDialog('signin').open(); pandora.$ui.accountDialog = pandora.ui.accountDialog('signin').open();
} }
}), }),
{} {},
] : [], Ox.Button({title: 'Not Now'}).bindEvent({
[ click: function() {
$dialog.close();
}
})
] : [
Ox.Button({title: 'Close'}).bindEvent({ Ox.Button({title: 'Close'}).bindEvent({
click: function() { click: function() {
$dialog.close(); $dialog.close();
} }
}) })
] ],
),
content: Ox.Element() content: Ox.Element()
.append( .append(
$('<img>') $('<img>')

View file

@ -20,11 +20,12 @@ pandora.ui.rightPanel = function() {
}) })
.bindEvent({ .bindEvent({
resize: function(data) { resize: function(data) {
var clipsItems, previousClipsItems;
if (!pandora.user.ui.item) { if (!pandora.user.ui.item) {
pandora.resizeFilters(); pandora.resizeFilters();
pandora.$ui.list.size(); pandora.$ui.list.size();
if (pandora.user.ui.listView == 'clips') { if (pandora.user.ui.listView == 'clips') {
var clipsItems = pandora.getClipsItems(); clipsItems = pandora.getClipsItems();
previousClipsItems = pandora.getClipsItems(pandora.$ui.list.options('width')); previousClipsItems = pandora.getClipsItems(pandora.$ui.list.options('width'));
pandora.$ui.list.options({width: data.size}); pandora.$ui.list.options({width: data.size});
if (clipsItems != previousClipsItems) { if (clipsItems != previousClipsItems) {