mirror of https://github.com/dani/vroom.git
Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
526 B
13 lines
526 B
<script type="text/javascript">
|
|
<%
|
|
my $url = $self->url_for('/');
|
|
$url .= ($url =~ m/\/$/) ? '' : '/';
|
|
%>
|
|
var rootUrl = '<%= $url %>';
|
|
</script>
|
|
<% foreach my $js (qw(simplewebrtc.bundle.js jquery-1.11.1.min.js bootstrap.min.js
|
|
notify-combined.min.js jquery.browser.min.js sprintf.js
|
|
FileSaver.js vroom.js)){
|
|
%>
|
|
<script type="text/javascript" src="/js/<%= $js %>?<%= $self->get_mtime("js/$js") %>"></script>
|
|
<% } %>
|
|
|