UNPKG

content-ready

Version:

[ABANDONED] Listen for moment when content of element is ready (even with all images).

24 lines 612 B
<html> <head> <title> Tests </title> <link rel="stylesheet" href="../node_modules/mocha/mocha.css" /> </head> <body> <div id="mocha"></div> <div id="test"></div> <script src="../node_modules/mocha/mocha.js"></script> <script src="../node_modules/chai/chai.js"></script> <script> mocha.ui('bdd'); mocha.reporter('html'); var expect = chai.expect; </script> <script src="jquery.js"></script> <script src="modules.js"></script> <script src="Ready.js"></script> <script> if (window.mochaPhantomJS) { mochaPhantomJS.run(); } else { mocha.run(); } </script> </body> </html>