Sha256: d3b073b32df8778a8721faabf6180742eeb564a64bc6f1461a9a0602b2994683
Contents?: true
Size: 702 Bytes
Versions: 1
Compression:
Stored size: 702 Bytes
Contents
/* alias away the sync method */ Backbone._sync = Backbone.sync; /* define a new sync method */ Backbone.sync = function(method, model, success, error) { /* only need a token for non-get requests */ if (method == 'create' || method == 'update' || method == 'delete') { /* grab the token from the meta tag rails embeds */ var auth_options = {}; auth_options[$("meta[name='csrf-param']").attr('content')] = $("meta[name='csrf-token']").attr('content'); /* set it as a model attribute without triggering events */ model.set(auth_options, {silent: true}); } /* proxy the call to the old sync method */ return Backbone._sync(method, model, success, error); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
laces-0.1.0 | templates/app/assets/javascripts/lib/auth_token_sync.js |