Skip to content

Commit

Permalink
remove some http: to fix urlscheme against security issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gmella committed Jan 17, 2025
1 parent ed6088e commit f7f5a6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/app.xql
Original file line number Diff line number Diff line change
Expand Up @@ -314,13 +314,13 @@ declare function app:getApplicationDetail($node as node(), $model as map(*)) {
declare variable $app:code :=<div>

<!-- skip the following line if your page already integrates the jQuery library -->
<script type="text/javascript" src="http://voar.jmmc.fr/api/jquery-1.11.1.min.js"/>
<script type="text/javascript" src="https://voar.jmmc.fr/api/jquery-1.11.1.min.js"/>

<!-- define an ul element with uniq id -->
<ul id="sampListByMtype"></ul>

<!-- load the main javascript and call functions over the previously defined ul -->
<script type="text/javascript" src="http://voar.jmmc.fr/api/voar-0.3.js"/>
<script type="text/javascript" src="https://voar.jmmc.fr/api/voar-0.3.js"/>
<script type="text/javascript">

<![CDATA[ $("#sampListByMtype").appendAppList({'mtype':'table.load.votable'}) ]]>
Expand Down

0 comments on commit f7f5a6b

Please sign in to comment.