Backbon validation patches
backbone.paginator.js
- dataType: 'jsonp' -> dataType: 'json' (at 2 different places)
- firstPage: 0, -> firstPage: 1, (at 2 different places)
async.js
In order to make async.js working fine with require.js, you should comment some line at the top of the file :
.. code-block:: javascript
//if (typeof module !== 'undefined' && module.exports) {
// module.exports = async;
//}
//else {
root.async = async;
//
Backbon validation patches
backbone.paginator.js
async.js
In order to make async.js working fine with require.js, you should comment some line at the top of the file :
.. code-block:: javascript