mirror of
https://github.com/arnaucube/comunicationLeap.git
synced 2026-02-07 03:16:45 +01:00
nodejs with express server, leapmotion for movement control, and threejs for 3d render
This commit is contained in:
35
node_modules/utf8/tests/index.html
generated
vendored
Normal file
35
node_modules/utf8/tests/index.html
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>utf8.js test suite</title>
|
||||
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="qunit"></div>
|
||||
<script src="../node_modules/qunitjs/qunit/qunit.js"></script>
|
||||
<script src="../utf8.js"></script>
|
||||
<script>
|
||||
// populate `QUnit.urlParams`
|
||||
QUnit.urlParams.norequire = /[?&]norequire=true(?:&|$)/.test(location.search);
|
||||
|
||||
// load tests.js if not using require.js
|
||||
document.write(QUnit.urlParams.norequire
|
||||
? '<script src="tests.js"><\/script>'
|
||||
: '<script src="../node_modules/requirejs/require.js"><\/script>'
|
||||
);
|
||||
</script>
|
||||
<script>
|
||||
window.require && require({
|
||||
'baseUrl': '../node_modules/requirejs/',
|
||||
'urlArgs': 't=' + (+new Date),
|
||||
'paths': {
|
||||
'utf8': '../../utf8'
|
||||
}
|
||||
},
|
||||
['utf8'], function(utf8) {
|
||||
require(['tests.js']);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user