Skip to content

Commit

Permalink
Merge pull request #21 from ngoldman/bower
Browse files Browse the repository at this point in the history
add bower dependencies
  • Loading branch information
paulcpederson committed Jun 3, 2014
2 parents db624af + 763846b commit 18c7e8e
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.grunt
.sass-cache
node_modules
node_modules
bower_components
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# Angular-Dimple Changelog

# v1.0.2
* add bower dependencies

# v1.0.1
* add bower manifest
* add changelog
* add label attribute to scatter-plots

# v1.0.0
* support for graph, axis, and legened
* support for graph, axis, and legend
* support for bar, stacked, bar, area, stacked area, line, and scatter-plots
* full documentation

Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@

A simple angular library wrapping dimple charts as angular directives.

## Setup
## Install

### Manual

To get setup, simply:

1. Make sure you have d3 and dimple
2. Download the minified javascript in dist
3. Include the library as a module in your app

### Bower

```
bower install angular-dimple
```

## Use

All the angular directives behave in pretty much the same way. Simply use the directive, passing in a model from your scope as the `data=` attribute.
Expand Down
10 changes: 7 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-dimple",
"version": "1.0.1",
"version": "1.0.2",
"main": "dist/angular-dimple.js",
"homepage": "http://esripdx.github.io/angular-dimple/",
"authors": [
Expand All @@ -24,5 +24,9 @@
"source",
"test",
"site"
]
}
],
"dependencies": {
"d3": "~3.4.8",
"dimple": "~2.0.0"
}
}
2 changes: 1 addition & 1 deletion dist/angular-dimple.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Angular-Dimple - 1.0.0 - 2014-05-30
/*! Angular-Dimple - 1.0.2 - 2014-05-30
* https://github.com/esripdx/angular-dimple
* Licensed ISC */
angular.module('angular-dimple.core', [])
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-dimple",
"version": "1.0.1",
"version": "1.0.2",
"description": "Angular.js wrapper for the Dimple charting language",
"repository": "https://github.com/esripdx/angular-dimple",
"license": "ISC",
Expand Down
2 changes: 1 addition & 1 deletion site/js/lib/angular-dimple.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Angular-Dimple - 1.0.0 - 2014-05-30
/*! Angular-Dimple - 1.0.2 - 2014-05-30
* https://github.com/esripdx/angular-dimple
* Licensed ISC */
angular.module('angular-dimple.core', [])
Expand Down

0 comments on commit 18c7e8e

Please sign in to comment.