Get the Deferred status from $ if we have jQuery, otherwise use Backbone's * @returns {boolean} - Whether the request was deferred
()
| 8 | * @returns {boolean} - Whether the request was deferred |
| 9 | */ |
| 10 | function getDeferred() { |
| 11 | if (Bb.$) { |
| 12 | return result(Bb.$, 'Deferred', false); |
| 13 | } |
| 14 | return result(Bb, 'Deferred', false); |
| 15 | } |
| 16 | |
| 17 | |
| 18 | /** Override Backbone's `sync` method to run against localStorage |
no outgoing calls
no test coverage detected
searching dependent graphs…