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') { if (pandora.user.ui.itemView == 'map') {
pandora.ui.$map.resizeMap(); pandora.$ui.map.resizeMap();
} else if (pandora.user.ui.itemView == 'calendar') { } else if (pandora.user.ui.itemView == 'calendar') {
// ... // ...
} }

View file

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