that..css -> that.css
This commit is contained in:
parent
590ba4c3f2
commit
d046574ac2
1 changed files with 3 additions and 3 deletions
|
@ -117,7 +117,7 @@ Ox.Map = function(options, self) {
|
|||
.triggerEvent('submit', {value: self.options.find});
|
||||
},
|
||||
height: function() {
|
||||
that.$element.css({height: self.options.height + 'px'});
|
||||
that.css({height: self.options.height + 'px'});
|
||||
that.resizeMap();
|
||||
},
|
||||
places: function() {
|
||||
|
@ -158,7 +158,7 @@ Ox.Map = function(options, self) {
|
|||
// ...
|
||||
},
|
||||
width: function() {
|
||||
that.$element.css({width: self.options.width + 'px'});
|
||||
that.css({width: self.options.width + 'px'});
|
||||
that.resizeMap();
|
||||
}
|
||||
})
|
||||
|
@ -367,7 +367,7 @@ Ox.Map = function(options, self) {
|
|||
src: Ox.PATH + 'Ox.Geo/png/icons/16/NTHH.png'
|
||||
})
|
||||
.css({float: 'left', margin: '4px 2px 4px 4px'})
|
||||
.appendTo(self.$statusbar.$element);
|
||||
.appendTo(self.$statusbar);
|
||||
self.$placeNameInput = Ox.Input({
|
||||
placeholder: 'Name',
|
||||
width: 96
|
||||
|
|
Loading…
Reference in a new issue