2012-08-22 04:22:43 +04:00
|
|
|
<html>
|
|
|
|
<head>
|
2012-08-27 01:29:46 +04:00
|
|
|
<script src='../src/stdlib/require.js'></script>
|
2012-08-22 04:22:43 +04:00
|
|
|
|
|
|
|
<script>
|
|
|
|
window.onload = function() {
|
|
|
|
try {
|
2012-08-27 01:10:11 +04:00
|
|
|
var bootstrapScript = window.location.search.split('=')[1]
|
|
|
|
console.log(bootstrapScript);
|
|
|
|
if (bootstrapScript) require(bootstrapScript);
|
2012-08-22 04:22:43 +04:00
|
|
|
}
|
|
|
|
catch (error) {
|
2012-08-27 01:10:11 +04:00
|
|
|
//$native.showDevTools();
|
2012-08-22 04:22:43 +04:00
|
|
|
console.error(error.stack || error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2012-08-23 23:38:52 +04:00
|
|
|
LET'S DO THIS!
|
2012-08-22 04:22:43 +04:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|