File tree 1 file changed +1
-14
lines changed
1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import * as dayjs from 'dayjs'
4
4
5
5
import 'leaflet' ;
6
6
import 'leaflet/dist/leaflet.css' ;
7
- import { initializeSingleAutoComplete } from './suggest/locations' ;
7
+ import { initializeSingleAutoComplete } from '.. /suggest/locations' ;
8
8
import 'leaflet.fullscreen' ;
9
9
import 'leaflet.fullscreen/Control.FullScreen.css' ;
10
10
import { default as rangeSlider } from 'rangeslider-pure' ;
@@ -114,16 +114,3 @@ const radioHandler = (event) => {
114
114
for ( let radio of accommodationRadiobuttons ) {
115
115
radio . addEventListener ( "click" , radioHandler )
116
116
}
117
-
118
- const showPasswordButton = document . getElementById ( "password_show_hide" ) ;
119
-
120
- const showHidePassword = ( event ) => {
121
- console . log ( "clicked: " , event . target ) ;
122
- if ( event . target . type === 'text' ) {
123
- event . target . type = 'password' ;
124
- } else {
125
- event . target . type = 'text' ;
126
- }
127
- }
128
-
129
- showPasswordButton . addEventListener ( "click" , showHidePassword ) ;
You can’t perform that action at this time.
0 commit comments