Skip to content

Commit

Permalink
concat js files
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamc committed May 3, 2016
1 parent 99d5f94 commit dc3d39b
Show file tree
Hide file tree
Showing 2 changed files with 119 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _complex_numbers/understanding-complex-numbers.textile
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,12 @@ h3. {{ page.title }}
<script>
window.addEventListener(
'load', function(event) {
/* ["/js/all_complex_numbers.js"] */
["/js/d3.v3.min.js", "/js/complex_numbers.js"].forEach(function(script_src_url) {
/* ["/js/d3.v3.min.js", "/js/complex_numbers.js"] */
["/js/all_complex_numbers.js"].forEach(function(script_src_url) {
var script_element = window.document.createElement('script')
script_element.src = script_src_url
script_element.type = 'text/javascript'
script_element.async = false
script_element.async = true
window.document.body.appendChild(script_element)
})
}
Expand Down
Loading

0 comments on commit dc3d39b

Please sign in to comment.