diff options
author | Marvin Borner | 2020-03-13 22:20:40 +0100 |
---|---|---|
committer | Marvin Borner | 2020-03-13 22:20:40 +0100 |
commit | a840a022669adcc88fba3339378a0328d7b3032e (patch) | |
tree | 4a88c90bd2d55674d80cf16792262c9ce8a696d8 /test/test-dependencies.html | |
parent | 00b0ace3863952ce95df4430d203686fd27bfc20 (diff) |
Well, this is the actual first commit ig
Diffstat (limited to 'test/test-dependencies.html')
-rw-r--r-- | test/test-dependencies.html | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/test/test-dependencies.html b/test/test-dependencies.html deleted file mode 100644 index 49aaf60..0000000 --- a/test/test-dependencies.html +++ /dev/null @@ -1,54 +0,0 @@ -<!doctype html> -<html lang="en"> - - <head> - <meta charset="utf-8"> - - <title>reveal.js - Test Dependencies</title> - - <link rel="stylesheet" href="../css/reveal.css"> - <link rel="stylesheet" href="qunit-2.5.0.css"> - </head> - - <body style="overflow: auto;"> - - <div id="qunit"></div> - <div id="qunit-fixture"></div> - - <div class="reveal" style="display: none;"> - - <div class="slides"> - - <section>Slide content</section> - - </div> - - </div> - - <script src="../js/reveal.js"></script> - <script src="qunit-2.5.0.js"></script> - - <script> - window.externalScriptSequence = ''; - - Reveal.addEventListener( 'ready', function() { - - QUnit.module( 'Dependencies' ); - - QUnit.test( 'Load synchronous scripts', function( assert ) { - assert.strictEqual( window.externalScriptSequence, 'ABC', 'Loaded and executed in order' ); - }); - - } ); - - Reveal.initialize({ - dependencies: [ - { src: 'assets/external-script-a.js' }, - { src: 'assets/external-script-b.js' }, - { src: 'assets/external-script-c.js' } - ] - }); - </script> - - </body> -</html> |