dotledger/dotledger

View on GitHub
app/assets/javascripts/dot_ledger/models/query_params.js

Summary

Maintainability
A
0 mins
Test Coverage
DotLedger.module('Models', function () {
  this.QueryParams = Backbone.Model.extend({
    toString: function () {
      return $.param(this.attributes).replace(/%5B%5D/g, '');
    }
  });
});