misc bugfixes
This commit is contained in:
parent
0f3b554dcb
commit
78f132f792
3 changed files with 1 additions and 3 deletions
|
@ -49,7 +49,6 @@ pandora.ui.findElement = function() {
|
||||||
that.update();
|
that.update();
|
||||||
pandora.$ui.filterDialog = pandora.ui.filterDialog().open();
|
pandora.$ui.filterDialog = pandora.ui.filterDialog().open();
|
||||||
} else {
|
} else {
|
||||||
Ox.Log('FIND', 'select change', pandora.$ui.findInput.value())
|
|
||||||
pandora.$ui.findInput.options({
|
pandora.$ui.findInput.options({
|
||||||
autocomplete: autocompleteFunction(),
|
autocomplete: autocompleteFunction(),
|
||||||
placeholder: ''
|
placeholder: ''
|
||||||
|
@ -109,7 +108,6 @@ pandora.ui.findElement = function() {
|
||||||
findKey = Ox.getObjectById(pandora.site.findKeys, key);
|
findKey = Ox.getObjectById(pandora.site.findKeys, key);
|
||||||
value === '' && Ox.Log('', 'Warning: autocomplete function should never be called with empty value');
|
value === '' && Ox.Log('', 'Warning: autocomplete function should never be called with empty value');
|
||||||
if (findKey.autocomplete) {
|
if (findKey.autocomplete) {
|
||||||
Ox.Log('AUTO', '_list/select', pandora.user.ui._list, pandora.$ui.findListSelect.value())
|
|
||||||
pandora.api.autocomplete({
|
pandora.api.autocomplete({
|
||||||
key: key,
|
key: key,
|
||||||
query: {
|
query: {
|
||||||
|
|
|
@ -784,6 +784,7 @@ pandora.ui.infoView = function(data) {
|
||||||
change: function(event) {
|
change: function(event) {
|
||||||
var rightsLevel = event.value
|
var rightsLevel = event.value
|
||||||
$rightsLevelElement = getRightsLevelElement(rightsLevel);
|
$rightsLevelElement = getRightsLevelElement(rightsLevel);
|
||||||
|
Ox.print(rightsLevel, '...', $rightsLevelElement)
|
||||||
$rightsLevelSelect
|
$rightsLevelSelect
|
||||||
.css({background: $rightsLevelElement.css('background')})
|
.css({background: $rightsLevelElement.css('background')})
|
||||||
.data({OxColor: $rightsLevelElement.data('OxColor')})
|
.data({OxColor: $rightsLevelElement.data('OxColor')})
|
||||||
|
|
|
@ -64,7 +64,6 @@ pandora.ui.tv = function() {
|
||||||
volume: function(data) {
|
volume: function(data) {
|
||||||
pandora.UI.set('videoVolume', data.volume);
|
pandora.UI.set('videoVolume', data.volume);
|
||||||
},
|
},
|
||||||
// FIXME: does not work
|
|
||||||
key_escape: that.fadeOutScreen
|
key_escape: that.fadeOutScreen
|
||||||
})
|
})
|
||||||
.appendTo(that);
|
.appendTo(that);
|
||||||
|
|
Loading…
Reference in a new issue