This commit is contained in:
rolux 2011-10-04 02:45:29 +00:00
parent 3600620eb7
commit d9e9d56457
2 changed files with 4 additions and 5 deletions

View file

@ -107,7 +107,7 @@ pandora.ui.browser = function() {
}
}
if (pandora.user.ui.itemView == 'map') {
pandora.ui.$map.resizeMap();
pandora.$ui.map.resizeMap();
} else if (pandora.user.ui.itemView == 'calendar') {
// ...
}

View file

@ -108,7 +108,6 @@ pandora.ui.usersDialog = function() {
},
{
format: function(value) {
Ox.print('&&', value)
return $('<img>')
.attr({
src: Ox.UI.getImageURL('symbolCheck')
@ -117,7 +116,7 @@ pandora.ui.usersDialog = function() {
width: '10px',
height: '10px',
padding: '3px',
opacity: value ? 0.25 : 1
opacity: value ? 0 : 1
});
},
id: 'disabled',
@ -134,7 +133,7 @@ pandora.ui.usersDialog = function() {
{
format: function(value, data) {
return '<span style="opacity: ' + (
data.disabled ? 0.25 : 1
data.disabled ? 0.5 : 1
) + '">' + value + '</span>';
},
id: 'username',
@ -147,7 +146,7 @@ pandora.ui.usersDialog = function() {
{
format: function(value, data) {
return '<span style="opacity: ' + (
data.disabled ? 0.25 : 1
data.disabled ? 0.5 : 1
) + '">' + value + '</span>';
},
id: 'email',