From ca2428f8f91ea53f3c2e0b655bf67f84000d4454 Mon Sep 17 00:00:00 2001 From: jeffthespasm Date: Mon, 19 May 2014 13:39:22 -0500 Subject: [PATCH] Update README.md --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) 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" + } + } +} +```