|
|
@ -8,16 +8,17 @@ |
|
|
|
var roomName; |
|
|
|
var roomName; |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
<% |
|
|
|
<% |
|
|
|
my @js = qw(js/jquery-1.11.3.js js/bootstrap.js js/notify-combined.js js/bootstrap-switch.js js/jquery.bootpag.js js/toc.js js/bootstrap-datepicker.js); |
|
|
|
my @js = qw(jquery-1.11.3.js bootstrap.js notify-combined.js bootstrap-switch.js jquery.bootpag.js toc.js bootstrap-datepicker.js); |
|
|
|
# Load supported languages for datpicker, if they exists |
|
|
|
# Load supported languages for datpicker, if they exists |
|
|
|
foreach my $l ($self->get_supported_lang){ |
|
|
|
foreach my $l ($self->get_supported_lang){ |
|
|
|
if (-e 'public/js/datepicker-locales/bootstrap-datepicker.' . $l . '.js'){ |
|
|
|
if (-e 'public/js/datepicker-locales/bootstrap-datepicker.' . $l . '.js'){ |
|
|
|
push @js, 'js/datepicker-locales/bootstrap-datepicker.' . $l . '.js'; |
|
|
|
push @js, 'datepicker-locales/bootstrap-datepicker.' . $l . '.js'; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
push @js, 'js/vroom.js'; |
|
|
|
push @js, 'vroom.js'; |
|
|
|
if (stash('page') && stash('page') eq 'room'){ |
|
|
|
if (stash('page') && stash('page') eq 'room'){ |
|
|
|
push @js, qw(js/simplewebrtc.bundle.js js/jquery.browser.js js/sprintf.js js/FileSaver.js js/jquery.tinytimer.js js/etherpad.js); |
|
|
|
push @js, qw(simplewebrtc.bundle.js jquery.browser.js sprintf.js FileSaver.js jquery.tinytimer.js etherpad.js); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@js = map { $self->url_for('/') . 'js/' . $_ } @js; |
|
|
|
%> |
|
|
|
%> |
|
|
|
<%=js @js %> |
|
|
|
<%=js @js %> |
|
|
|