(options, settings)
| 535 | } |
| 536 | |
| 537 | function extend(options, settings) { |
| 538 | for (var field in settings) { |
| 539 | if (!settings.hasOwnProperty(field)) continue; |
| 540 | options[field] = (typeof options[field] === "undefined") ? settings[field] : options[field]; |
| 541 | } |
| 542 | } |
| 543 | }, |
| 544 | |
| 545 | jsonHandler: function(ClassRegistry) { |
no outgoing calls
no test coverage detected