(method)
| 39 | } |
| 40 | |
| 41 | function defer(method) { //wait until jquery ready |
| 42 | if (window.jQuery) { |
| 43 | method(); |
| 44 | } else { |
| 45 | setTimeout(function() { defer(method) }, 15); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | defer(function () { // load inital language |
| 50 | toggleScala() |
no outgoing calls
no test coverage detected
searching dependent graphs…