File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 146
146
if ( ! inputBinding ) return ;
147
147
var currentLocation = GmUtility . locationFromLatLng ( gmapContext . location ) ;
148
148
if ( inputBinding . latitudeInput ) {
149
- inputBinding . latitudeInput . val ( currentLocation . latitude ) ;
149
+ inputBinding . latitudeInput . val ( currentLocation . latitude ) . change ( ) ;
150
150
}
151
151
if ( inputBinding . longitudeInput ) {
152
- inputBinding . longitudeInput . val ( currentLocation . longitude ) ;
152
+ inputBinding . longitudeInput . val ( currentLocation . longitude ) . change ( ) ;
153
153
}
154
154
if ( inputBinding . radiusInput ) {
155
- inputBinding . radiusInput . val ( gmapContext . radius ) ;
155
+ inputBinding . radiusInput . val ( gmapContext . radius ) . change ( ) ;
156
156
}
157
157
if ( inputBinding . locationNameInput ) {
158
- inputBinding . locationNameInput . val ( gmapContext . locationName ) ;
158
+ inputBinding . locationNameInput . val ( gmapContext . locationName ) . change ( ) ;
159
159
}
160
160
}
161
161
You can’t perform that action at this time.
0 commit comments