()
| 1256 | |
| 1257 | // helper fn for console logging |
| 1258 | function log() { |
| 1259 | if (!$.fn.ajaxSubmit.debug) { |
| 1260 | return; |
| 1261 | } |
| 1262 | var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,''); |
| 1263 | if (window.console && window.console.log) { |
| 1264 | window.console.log(msg); |
| 1265 | } |
| 1266 | else if (window.opera && window.opera.postError) { |
| 1267 | window.opera.postError(msg); |
| 1268 | } |
| 1269 | } |
| 1270 | })); |
| 1271 |
no outgoing calls
no test coverage detected