resthub / resthub-backbone-stack

RESThub Backbone.js stack
http://resthub.org/docs/backbone/
Other
56 stars 26 forks source link

Document manual patches #144

Open sdeleuze opened 10 years ago

sdeleuze commented 10 years ago

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

//if (typeof module !== 'undefined' && module.exports) {
//    module.exports = async;
//}
//else {
    root.async = async;
//