misc fixes
This commit is contained in:
parent
565ff78139
commit
6ec375c9ce
3 changed files with 5 additions and 0 deletions
|
@ -118,6 +118,7 @@ Ox.Filter = function(options, self) {
|
||||||
Ox.FormElementGroup({
|
Ox.FormElementGroup({
|
||||||
elements: [
|
elements: [
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
|
type: 'int',
|
||||||
width: 56
|
width: 56
|
||||||
}),
|
}),
|
||||||
Ox.Select({
|
Ox.Select({
|
||||||
|
|
|
@ -484,6 +484,7 @@ Ox.ListMap = function(options, self) {
|
||||||
}), [
|
}), [
|
||||||
self.$areaInput = Ox.Input({
|
self.$areaInput = Ox.Input({
|
||||||
id: 'area',
|
id: 'area',
|
||||||
|
type: 'float'
|
||||||
}).hide()
|
}).hide()
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
@ -570,6 +571,7 @@ Ox.ListMap = function(options, self) {
|
||||||
that.$element = Ox.SplitPanel({
|
that.$element = Ox.SplitPanel({
|
||||||
elements: [
|
elements: [
|
||||||
{
|
{
|
||||||
|
collapsible: true,
|
||||||
element: Ox.SplitPanel({
|
element: Ox.SplitPanel({
|
||||||
elements: [
|
elements: [
|
||||||
{
|
{
|
||||||
|
|
|
@ -162,6 +162,8 @@ Ox.MapMarker = function(options) {
|
||||||
Ox.forEach(areaSize, function(size, area) {
|
Ox.forEach(areaSize, function(size, area) {
|
||||||
if (that.place.area > area) {
|
if (that.place.area > area) {
|
||||||
that.size = size;
|
that.size = size;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue