mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Updated AdminLTE to 3.04 assets, added search to side bar, added company select drop down on sidebar. removed extra delete under edit contact
This commit is contained in:
31
plugins/raphael/dev/test/index.html
Normal file
31
plugins/raphael/dev/test/index.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user