merge changes
This commit is contained in:
commit
5adf1a52fb
1 changed files with 53 additions and 54 deletions
|
@ -107,7 +107,7 @@ Ox.UI(function() {
|
||||||
},
|
},
|
||||||
accountDialogOptions: function(action, value) {
|
accountDialogOptions: function(action, value) {
|
||||||
//Ox.print('ACTION', action)
|
//Ox.print('ACTION', action)
|
||||||
app.$ui.accountForm && app.$ui.accountForm.remove();
|
app.$ui.accountForm && app.$ui.accountForm.removeElement();
|
||||||
var buttons = {
|
var buttons = {
|
||||||
login: ['register', 'reset'],
|
login: ['register', 'reset'],
|
||||||
register: ['login'],
|
register: ['login'],
|
||||||
|
@ -191,7 +191,7 @@ Ox.UI(function() {
|
||||||
//Ox.Event.unbind('usernameOrEmailInput')
|
//Ox.Event.unbind('usernameOrEmailInput')
|
||||||
}
|
}
|
||||||
//Ox.print('REMOVING ITEM', item.options('id'));
|
//Ox.print('REMOVING ITEM', item.options('id'));
|
||||||
item.remove();
|
item.removeElement();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
var items = {
|
var items = {
|
||||||
|
@ -491,13 +491,14 @@ Ox.UI(function() {
|
||||||
orientation: 'vertical'
|
orientation: 'vertical'
|
||||||
});
|
});
|
||||||
that.display = function() {
|
that.display = function() {
|
||||||
|
// fixme: move animation into Ox.App
|
||||||
app.$ui.body.css({opacity: 0});
|
app.$ui.body.css({opacity: 0});
|
||||||
that.appendTo(app.$ui.body);
|
that.appendTo(app.$ui.body);
|
||||||
app.$ui.body.animate({opacity: 1}, 1000);
|
app.$ui.body.animate({opacity: 1}, 1000);
|
||||||
return that;
|
return that;
|
||||||
}
|
}
|
||||||
that.reload = function() {
|
that.reload = function() {
|
||||||
app.$ui.appPanel.remove();
|
app.$ui.appPanel.removeElement();
|
||||||
app.$ui.appPanel = ui.appPanel().appendTo(app.$ui.body);
|
app.$ui.appPanel = ui.appPanel().appendTo(app.$ui.body);
|
||||||
return that;
|
return that;
|
||||||
}
|
}
|
||||||
|
@ -1409,13 +1410,13 @@ Ox.UI(function() {
|
||||||
UI.set(['lists', id].join('|'), app.config.user.ui.lists['']); // fixme: necessary?
|
UI.set(['lists', id].join('|'), app.config.user.ui.lists['']); // fixme: necessary?
|
||||||
URL.set('?find=list:' + id)
|
URL.set('?find=list:' + id)
|
||||||
Ox.Request.clearCache(); // fixme: remove
|
Ox.Request.clearCache(); // fixme: remove
|
||||||
$list.reloadList().bindEvent({load: load});
|
$list.reloadList().bindEventOnce({
|
||||||
function load(event, data) {
|
load: function(event, data) {
|
||||||
$list.gainFocus()
|
$list.gainFocus()
|
||||||
.options({selected: [id]})
|
.options({selected: [id]})
|
||||||
.editCell(id, 'name');
|
.editCell(id, 'name');
|
||||||
$list.unbindEvent({load: load}) // fixme: need bindEventOnce
|
}
|
||||||
}
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1489,13 +1490,13 @@ Ox.UI(function() {
|
||||||
id = result.data.id;
|
id = result.data.id;
|
||||||
URL.set('?find=list:' + id)
|
URL.set('?find=list:' + id)
|
||||||
Ox.Request.clearCache(); // fixme: remove
|
Ox.Request.clearCache(); // fixme: remove
|
||||||
$list.reloadList().bindEvent({load: load});
|
$list.reloadList().bindEventOnce({
|
||||||
function load(event, data) {
|
load: function(event, data) {
|
||||||
$list.gainFocus()
|
$list.gainFocus()
|
||||||
.options({selected: [id]})
|
.options({selected: [id]})
|
||||||
.editCell(id, 'name');
|
.editCell(id, 'name');
|
||||||
$list.unbindEvent({load: load}) // fixme: need bindEventOnce
|
}
|
||||||
}
|
});
|
||||||
});
|
});
|
||||||
} else if (data.id == 'browse') {
|
} else if (data.id == 'browse') {
|
||||||
alert('??')
|
alert('??')
|
||||||
|
@ -1513,19 +1514,19 @@ Ox.UI(function() {
|
||||||
});
|
});
|
||||||
//$sections.push(app.$ui.section[i]);
|
//$sections.push(app.$ui.section[i]);
|
||||||
app.$ui.folderList[folder.id] = ui.folderList(folder.id)
|
app.$ui.folderList[folder.id] = ui.folderList(folder.id)
|
||||||
.bindEvent({init: init})
|
.bindEventOnce({
|
||||||
|
init: function(event, data) {
|
||||||
|
Ox.print('init', i, counter)
|
||||||
|
if (++counter == 3) {
|
||||||
|
app.$ui.folder.forEach(function($folder) {
|
||||||
|
that.append($folder);
|
||||||
|
});
|
||||||
|
resizeFolders();
|
||||||
|
selectList(); //fixme: doesn't work
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
.appendTo(app.$ui.folder[i].$content);
|
.appendTo(app.$ui.folder[i].$content);
|
||||||
function init(event, data) {
|
|
||||||
Ox.print('init', i, counter)
|
|
||||||
if (++counter == 3) {
|
|
||||||
app.$ui.folder.forEach(function($folder) {
|
|
||||||
that.append($folder);
|
|
||||||
});
|
|
||||||
resizeFolders();
|
|
||||||
selectList(); //fixme: doesn't work
|
|
||||||
}
|
|
||||||
app.$ui.folderList[folder.id].unbindEvent({init: init}); // fixme: need bindEventOnce
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
that.toggle = function() {
|
that.toggle = function() {
|
||||||
|
@ -1730,7 +1731,7 @@ Ox.UI(function() {
|
||||||
app.ui.infoRatio = result.data.item.stream.aspectRatio;
|
app.ui.infoRatio = result.data.item.stream.aspectRatio;
|
||||||
var width = that.width() || 256,
|
var width = that.width() || 256,
|
||||||
height = width / app.ui.infoRatio + 16;
|
height = width / app.ui.infoRatio + 16;
|
||||||
app.$ui.infoStill.remove();
|
app.$ui.infoStill.removeElement();
|
||||||
app.$ui.infoStill = ui.flipbook(app.user.ui.item)
|
app.$ui.infoStill = ui.flipbook(app.user.ui.item)
|
||||||
.appendTo(that.$element);
|
.appendTo(that.$element);
|
||||||
app.$ui.infoStill.css({
|
app.$ui.infoStill.css({
|
||||||
|
@ -1963,11 +1964,11 @@ Ox.UI(function() {
|
||||||
var infoSize = Math.round(data / app.ui.infoRatio) + 16;
|
var infoSize = Math.round(data / app.ui.infoRatio) + 16;
|
||||||
app.user.ui.sidebarSize = data;
|
app.user.ui.sidebarSize = data;
|
||||||
if (data < app.ui.sectionButtonsWidth && app.$ui.sectionButtons) {
|
if (data < app.ui.sectionButtonsWidth && app.$ui.sectionButtons) {
|
||||||
app.$ui.sectionButtons.remove();
|
app.$ui.sectionButtons.removeElement();
|
||||||
delete app.$ui.sectionButtons;
|
delete app.$ui.sectionButtons;
|
||||||
app.$ui.sectionbar.append(app.$ui.sectionSelect = ui.sectionSelect());
|
app.$ui.sectionbar.append(app.$ui.sectionSelect = ui.sectionSelect());
|
||||||
} else if (data >= app.ui.sectionButtonsWidth && app.$ui.sectionSelect) {
|
} else if (data >= app.ui.sectionButtonsWidth && app.$ui.sectionSelect) {
|
||||||
app.$ui.sectionSelect.remove();
|
app.$ui.sectionSelect.removeElement();
|
||||||
delete app.$ui.sectionSelect;
|
delete app.$ui.sectionSelect;
|
||||||
app.$ui.sectionbar.append(app.$ui.sectionButtons = ui.sectionButtons());
|
app.$ui.sectionbar.append(app.$ui.sectionButtons = ui.sectionButtons());
|
||||||
}
|
}
|
||||||
|
@ -2361,7 +2362,7 @@ Ox.UI(function() {
|
||||||
pandora.api.getItem(data.ids[0], function(result) {
|
pandora.api.getItem(data.ids[0], function(result) {
|
||||||
app.ui.infoRatio = result.data.item.stream.aspectRatio;
|
app.ui.infoRatio = result.data.item.stream.aspectRatio;
|
||||||
var height = app.$ui.info.width() / app.ui.infoRatio + 16;
|
var height = app.$ui.info.width() / app.ui.infoRatio + 16;
|
||||||
app.$ui.infoStill.remove();
|
app.$ui.infoStill.removeElement();
|
||||||
app.$ui.infoStill = ui.flipbook(data.ids[0])
|
app.$ui.infoStill = ui.flipbook(data.ids[0])
|
||||||
.appendTo(app.$ui.info.$element);
|
.appendTo(app.$ui.info.$element);
|
||||||
app.$ui.infoStill.css({
|
app.$ui.infoStill.css({
|
||||||
|
@ -3000,15 +3001,13 @@ Ox.UI(function() {
|
||||||
Ox.print('AAAAA')
|
Ox.print('AAAAA')
|
||||||
app.$ui.placesElement
|
app.$ui.placesElement
|
||||||
.reloadList()
|
.reloadList()
|
||||||
.bindEvent({loadlist: load});
|
.bindEventOnce({
|
||||||
Ox.print('BBBBB')
|
loadlist: function() {
|
||||||
function load(event, data) {
|
app.$ui.placesElement
|
||||||
Ox.print('LOAD')
|
.focusList()
|
||||||
app.$ui.placesElement
|
.options({selected: [id]});
|
||||||
.focusList()
|
}
|
||||||
.options({selected: [id]})
|
});
|
||||||
.unbindEvent({loadlist: load}); // fixme: need bindEventOnce
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
removeplace: function(event, data) {
|
removeplace: function(event, data) {
|
||||||
|
@ -3017,12 +3016,12 @@ Ox.UI(function() {
|
||||||
Ox.Request.clearCache(); // fixme: remove
|
Ox.Request.clearCache(); // fixme: remove
|
||||||
app.$ui.placesElement
|
app.$ui.placesElement
|
||||||
.reloadList()
|
.reloadList()
|
||||||
.bindEvent({loadlist: load});
|
.bindEventOnce({
|
||||||
function load(event, data) {
|
loadlist: function(event, data) {
|
||||||
app.$ui.placesElement
|
app.$ui.placesElement
|
||||||
.focusList()
|
.focusList();
|
||||||
.unbindEvent({loadlist: load}); // fixme: need bindEventOnce
|
}
|
||||||
}
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
@ -3478,14 +3477,14 @@ Ox.UI(function() {
|
||||||
init: function(event, data) {
|
init: function(event, data) {
|
||||||
app.$ui.folderList[listData.status]
|
app.$ui.folderList[listData.status]
|
||||||
.value(listData.id, 'items', data.items);
|
.value(listData.id, 'items', data.items);
|
||||||
},
|
}
|
||||||
load: load
|
})
|
||||||
|
.bindEventOnce({
|
||||||
|
load: function(event, data) {
|
||||||
|
app.$ui.list.gainFocus().options({selected: [data.items]});
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.reloadList();
|
.reloadList();
|
||||||
function load(event, data) {
|
|
||||||
app.$ui.list.gainFocus().options({selected: [data.items]});
|
|
||||||
app.$ui.list.unbindEvent({load: load}); // fixme: need bindEventOnce
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function resizeGroups(width) {
|
function resizeGroups(width) {
|
||||||
|
|
Loading…
Reference in a new issue