UNPKG

dojo

Version:

Dojo core is a powerful, lightweight library that makes common tasks quicker and easier. Animate elements, manipulate the DOM, and query with easy CSS syntax, all without sacrificing performance.

25 lines (23 loc) 554 B
<html> <head> <script src="../../../dojo.js"></script> <script type="text/javascript"> dojo.registerModulePath('test', './testsDOH/_base/loader/14808'); dojo.require('test.App'); (function(){ var success = 0; setTimeout(function() {!success && (dojo.byId("result").innerHTML = "FAILED");}, 1000); dojo.ready(function(){ success = 1; dojo.byId("result").innerHTML= "it worked OK" }); })(); </script> </head> <body> <h1>Ticket 14808 verification</h1> <p id="result"> loading.. </p> </body> </html>