- added .editorconfig - updated package.json & build/npm/Plugins.js according to the following changes - updated dev dependencies to clear audits - updated daterangepicker - updated overlayScrollbars - moved flot (0.8.2) to flot-old for plugins - updated flot - updated fullcalendar - replaced icheck with icheck-bootstrap & updated demo files - added icheck-bootstrap color overrides - updated inputmask - updated ion-rangeslider - updated jquery-ui - updated bootstrap-slider tweaks & demo files - replaced jvectormap with jqvmap & updated demo files - added jquery-mapael & replaced in index2 jvectormap - updated jquery-knob - replaced pace with pace-progress - updated select2 & demo files - replaced jquery.sparkline with sparklines & updated demo files and removed jquery.sparkline demo section
31 lines
865 B
HTML
31 lines
865 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Raphael Test Suite</title>
|
|
<link rel="stylesheet" href="../../node_modules/qunitjs/qunit/qunit.css" />
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
|
|
<script type="text/javascript" src="../../node_modules/qunitjs/qunit/qunit.js"></script>
|
|
<script type="text/javascript" src="../../raphael.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
(function() {
|
|
var tests = [
|
|
"dom"
|
|
];
|
|
var typeFolder = Raphael.type.toLowerCase();
|
|
|
|
for (var i = 0; i < tests.length; i++) {
|
|
var s = document.createElement('script');
|
|
s.type = "text/javascript";
|
|
s.src = typeFolder + "/" + tests[i] + ".js";
|
|
document.body.appendChild(s);
|
|
}
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html> |