diff options
author | Daniel Friesel <derf@finalrewind.org> | 2016-07-05 09:11:10 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2016-07-05 09:11:10 +0200 |
commit | 08ef617249b99001a7df4f1fda418891cd8f260a (patch) | |
tree | b7d4a8b3e3a15e26ace936eb9058c407d3715d75 /templates/layouts | |
parent | e5cf04d3f805b17d048c4c044818b0be3c21044b (diff) |
autocomplete test. not sure if want.
Diffstat (limited to 'templates/layouts')
-rw-r--r-- | templates/layouts/default.html.ep | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index 90a405e..f773f9a 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -10,11 +10,14 @@ %= stylesheet '/static/default.css' + %= stylesheet '/static/jquery-ui.min.css' % my $force_mobile = param('force_mobile') // -1; % if ($force_mobile == 1 or ($self->browser->mobile and $force_mobile != 0)) { %= stylesheet '/static/mobile.css' % } %= javascript '/static/jquery-1.10.2.min.js' + %= javascript '/static/jquery-ui.min.js' + %= javascript '/static/autocomplete.js' %= javascript '/static/collapse.js' %= javascript '/static/marquee.js' %= javascript begin @@ -54,7 +57,7 @@ %= select_field station => stash('stationlist') % } % else { - %= text_field 'station' + %= text_field 'station', class => 'station' % } </div> </div> |