Skip to content
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.

Commit

Permalink
[Framework] Fixed line endings (CRLF -> LF)
Browse files Browse the repository at this point in the history
  • Loading branch information
James Keshavarzi committed May 31, 2012
1 parent 155ce93 commit da98fc4
Show file tree
Hide file tree
Showing 40 changed files with 6,575 additions and 6,575 deletions.
46 changes: 23 additions & 23 deletions dependencies/bootstrap/index.html
@@ -1,23 +1,23 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, target-densitydpi=device-dpi, width=device-width">
<title>WebWorks For BBX Bootstrap</title>
<script src="./require.js"></script>
<script src="./webplatform.js"></script>
<script src="./frameworkModules.js"></script>
<script>
function start() {
//Must load jnext first, as there seemed to be a race condition for if it was defined before it was used
require("lib/jnext.js");
require(frameworkModules, function () {
require('lib/framework').start();
});
}
</script>
</head>
<body onload="start();">
I am the man behind the curtain.
</body>
</html>
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, target-densitydpi=device-dpi, width=device-width">
<title>WebWorks For BBX Bootstrap</title>
<script src="./require.js"></script>
<script src="./webplatform.js"></script>
<script src="./frameworkModules.js"></script>
<script>
function start() {
//Must load jnext first, as there seemed to be a race condition for if it was defined before it was used
require("lib/jnext.js");
require(frameworkModules, function () {
require('lib/framework').start();
});
}
</script>
</head>
<body onload="start();">
I am the man behind the curtain.
</body>
</html>

0 comments on commit da98fc4

Please sign in to comment.