UNPKG

only.js

Version:

Automatically load and execute selector-based dependencies

55 lines (44 loc) 1.56 kB
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Only.js tests (Only.js with dependency via data attribute)</title> <script src="../src/Only.js" data-only="test-4-dependency-via-data-attribute.js"></script> <!-- testing conditional dependency loading from within injected script --> <script> var timeDiff = function(){ var d, time; return { setStartTime:function (){ d = new Date(); time = d.getTime(); }, getDiff:function (){ d = new Date(); return (d.getTime()-time); } }; }(); function done() { var log_value_text = "Loading/Execution Time: "+timeDiff.getDiff()+"\n"; (function fn(){ var load_log = document.getElementById("load_log"); if (load_log !== null) load_log.value += log_value_text; else setTimeout(fn,10); })(); } timeDiff.setStartTime(); </script> </head> <body> <h1>Only.js tests (Only.js with dependency via data attribute)</h1> <img src="img1.jpg" width="100" hspace="5" alt="image 1" title="size: 379kb" /> <img src="img2.jpg" width="100" hspace="5" alt="image 2" title="size: 20kb" /> <br /> <form name="log_form"> <label> <textarea id="load_log" name="load_log" cols="80" rows="10"></textarea> </label> </form> </body> </html>