[FIX] Web: qweb-test.js.html: use local copy of jquery and qunit

Use the local copy of those libraries instead of fetching them at runtime.
This fix was required for Debian packaging. It fixes the
privacy-breach-may-use-debian-package lintian error.
This commit is contained in:
Aaron Bohy 2015-01-07 10:47:21 +01:00
parent ef986fe9de
commit 629572cb76
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
<!doctype html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.15.0.css" type="text/css" media="screen"/>
<script type="text/javascript" src="http://code.jquery.com/qunit/qunit-1.15.0.js"></script>
<script src="/web/static/lib/jquery/jquery.js"></script>
<link rel="stylesheet" href="/web/static/lib/qunit/qunit.css" type="text/css" media="screen"/>
<script type="text/javascript" src="/web/static/lib/qunit/qunit.js"></script>
<script type="text/javascript" src="qweb2.js"></script>