Skip to content
This repository was archived by the owner on Dec 31, 2022. It is now read-only.

Commit 765b925

Browse files
committed
minor updates to readme
1 parent cf68b3b commit 765b925

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@ The defining characteristic of LABjs is the ability to load *all* JavaScript fil
77

88
For instance, the following "<script> tag soup":
99

10-
<script type="text/javascript" src="http://remote.tld/jquery.js"></script>
11-
<script type="text/javascript" src="local/plugin1.jquery.js"></script>
12-
<script type="text/javascript" src="local/plugin2.jquery.js"></script>
13-
<script type="text/javascript" src="local/init.js"></script>
14-
<script type="text/javascript">
10+
<script src="http://remote.tld/jquery.js"></script>
11+
<script src="local/plugin1.jquery.js"></script>
12+
<script src="local/plugin2.jquery.js"></script>
13+
<script src="local/init.js"></script>
14+
<script>
1515
initMyPage();
1616
</script>
1717

1818

1919
With LABjs becomes:
2020

21-
<script type="text/javascript" src="LAB.js"></script>
22-
<script type="text/javascript">
21+
<script src="LAB.js"></script>
22+
<script>
2323
$LAB
2424
.script("http://remote.tld/jquery.js").wait()
2525
.script("/local/plugin1.jquery.js")
2626
.script("/local/plugin2.jquery.js").wait()
2727
.script("/local/init.js").wait(function(){
28-
initMyPage();
28+
initMyPage();
2929
});
3030
</script>
3131

0 commit comments

Comments
 (0)