()
| 16 | |
| 17 | // TODO: Find a different way to log info in IE6. |
| 18 | function info() { |
| 19 | if (CONSOLE_LOG_APPLY) { |
| 20 | console.log.apply(console, arguments); |
| 21 | } else { |
| 22 | console.log(arguments); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | function info_IE6() { |
| 27 | var log = $('log'); |
no outgoing calls
no test coverage detected