forked from 0x2620/oxjs
minor changes
This commit is contained in:
parent
8e68992ea0
commit
137944a1a7
6 changed files with 10 additions and 2 deletions
|
|
@ -48,7 +48,7 @@ Ox.Form = function(options, self) {
|
|||
self.itemIsValid[i] = item.value().length > 0;
|
||||
}
|
||||
self.itemIds[i] = item.options('id') || item.id;
|
||||
that.append(self.$items[i] = Ox.FormItem({element: item}));
|
||||
self.$items[i] = Ox.FormItem({element: item}).appendTo(that);
|
||||
item.bindEvent({
|
||||
/*
|
||||
blur: function(data) {
|
||||
|
|
|
|||
|
|
@ -138,6 +138,8 @@ Ox.PlacePicker = function(options, self) {
|
|||
self.$map = Ox.Map({
|
||||
clickable: true,
|
||||
id: self.options.id + 'Map',
|
||||
// fixme: this is retarded, allow for map without places
|
||||
places: [{south: -85, west: -179, north: -85, east: 179}]
|
||||
//places: [self.options.value]
|
||||
})
|
||||
.css({
|
||||
|
|
|
|||
|
|
@ -231,6 +231,7 @@ Ox.Range = function(options, self) {
|
|||
}
|
||||
|
||||
function setTrackColors() {
|
||||
// fixme: remove outdated -webkit format, and add -o
|
||||
self.$track.css({
|
||||
backgroundImage: $.browser.mozilla ?
|
||||
('-moz-linear-gradient(left, ' +
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue