diff --git a/README.md b/README.md index db523c7..5147130 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -backgrid-sum +backgrid-sum (v0.1.1) ============ #### Step 1) @@ -60,3 +60,21 @@ var grid = new Backgrid.Grid({ `columnsToSum` is optional. If omitted, all columns will be summed. #### multiplier `multiplier` is optional. It can be a `Number`, or it can be a `String` representing the `name` of the column. + +### Installing with bower +Add `"backgrid-sum": "~0.1.1"` to the `dependencies` section of your `bower.json`. + +#### Using lodash instead of underscore +If you're using lodash, just override the dependencies in your `bower.json`: +```javascript +"overrides": { + "backgrid-sum": { + "dependencies": { + "lodash": "*", + "backbone": "~1.1.0", + "jquery": "~2.0.3", + "backgrid": "~0.3.5" + } + } +} +```