@@ -338,7 +338,7 @@ var App = (function ($, publ) {
338
338
}
339
339
return color ;
340
340
} ;
341
-
341
+
342
342
publ . getFontColor = function ( feature ) {
343
343
color = "#FFFFFF"
344
344
return color ;
@@ -717,7 +717,7 @@ var App = (function ($, publ) {
717
717
var value = getObjectPathValue ( item , defaults . geocoder . place_search_result_value_path ) ;
718
718
if ( display && value != null ) {
719
719
$ ( "div#places" ) . append ( '<input type="radio" name="places" value="' + value + '">'
720
- + display
720
+ + display
721
721
+ '<br>' )
722
722
}
723
723
} )
@@ -939,7 +939,7 @@ var App = (function ($, publ) {
939
939
if ( match && match . length === 2 ) {
940
940
districtInput . val ( match [ 1 ] ) ;
941
941
foundDistrict = true ;
942
- }
942
+ }
943
943
}
944
944
}
945
945
}
@@ -1023,6 +1023,7 @@ var App = (function ($, publ) {
1023
1023
function toggleAndLoadMap ( el ) {
1024
1024
var fieldset = $ ( el ) . parents ( 'fieldset' ) . first ( ) ;
1025
1025
fieldset . toggleClass ( 'collapsed' ) ;
1026
+ fieldset . children ( 'legend' ) . toggleClass ( 'icon-expended icon-collapsed' ) ;
1026
1027
fieldset . children ( 'div' ) . toggle ( ) ;
1027
1028
maps . forEach ( function ( m ) {
1028
1029
m . updateSize ( ) ;
@@ -1057,8 +1058,8 @@ var App = (function ($, publ) {
1057
1058
} ;
1058
1059
1059
1060
path = stringToPath ( path ) ;
1060
- var current = obj ;
1061
- for ( var i = 0 ; i < path . length ; i ++ ) {
1061
+ var current = obj ;
1062
+ for ( var i = 0 ; i < path . length ; i ++ ) {
1062
1063
if ( ! current [ path [ i ] ] ) {
1063
1064
return def ;
1064
1065
}
0 commit comments