1
0
Fork 0
forked from 0x2620/oxjs

trailing comma removal,

This commit is contained in:
j 2012-05-26 15:48:19 +00:00
commit 68d50978ba
44 changed files with 87 additions and 87 deletions

View file

@ -255,7 +255,7 @@ Ox.ListMap = function(options, self) {
operator: '-',
title: 'Date Created',
visible: false,
width: 128,
width: 128
},
{
format: function(value) {
@ -265,7 +265,7 @@ Ox.ListMap = function(options, self) {
operator: '-',
title: 'Date Modified',
visible: false,
width: 128,
width: 128
}
];
@ -728,7 +728,7 @@ Ox.ListMap = function(options, self) {
resize: function() {
self.$map.resizeMap();
}
}),
})
},
{
collapsible: self.options.collapsible,

View file

@ -460,7 +460,7 @@ Ox.Map = function(options, self) {
deselectButton: Ox.Button({
title: 'close',
tooltip: 'Deselect',
type: 'image',
type: 'image'
})
.addClass('OxPlaceControl OxPlaceDeselectButton')
.bindEvent({
@ -915,7 +915,7 @@ Ox.Map = function(options, self) {
['moz', 'o', 'webkit'].forEach(function(browser) {
$element.css({
backgroundImage: '-' + browser
+ '-linear-gradient(left, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0.1) 50px)',
+ '-linear-gradient(left, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0.1) 50px)'
});
});
$element.children().css({color: 'rgb(192, 192, 192)'});

View file

@ -42,7 +42,7 @@ Ox.MapMarker = function(options) {
});
that.marker = new google.maps.Marker({
raiseOnDrag: false,
shape: {coords: [8, 8, 8], type: 'circle'},
shape: {coords: [8, 8, 8], type: 'circle'}
//title: that.place.name,
//zIndex: 1000
});

View file

@ -21,7 +21,7 @@ Ox.MapMarkerImage = (function() {
mode: 'normal', // normal, selected, editing
rectangle: false,
size: 16,
type: 'place', // place, result
type: 'place' // place, result
}, options);
var index = [

View file

@ -58,7 +58,7 @@ Ox.MapPlace = function(options) {
se: new google.maps.LatLng(that.south, that.east),
n: new google.maps.LatLng(that.north, that.lng),
nw: new google.maps.LatLng(that.north, that.west),
w: new google.maps.LatLng(that.lat, that.west),
w: new google.maps.LatLng(that.lat, that.west)
});
// fixme: use bounds.toSpan()
that.sizeNorthSouth = (that.north - that.south)

View file

@ -26,7 +26,7 @@ Ox.MapRectangle = function(options, self) {
@*/
that.rectangle = new google.maps.Rectangle({
clickable: true,
bounds: that.place.bounds,
bounds: that.place.bounds
});
/*@
markers <a> array of markers

View file

@ -113,7 +113,7 @@ Ox.MapRectangleMarker = function(options, self) {
rectangle: true,
type: that.place.id[0] == '_' ? 'result' : 'place'
}),
position: that.place.points[that.position],
position: that.place.points[that.position]
});
};