-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1315e3
commit fc177c0
Showing
20 changed files
with
540 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"name": "angular-flot", | ||
"main": "angular-flot.js", | ||
"version": "0.0.1", | ||
"version": "0.0.17", | ||
"authors": [ | ||
"Lorenzo Villani <[email protected]>" | ||
], | ||
"description": "An Angular directive to wrap Flotcharts.", | ||
"license": "MIT", | ||
"homepage": "http://github.com/develersrl/angular-flot", | ||
"_release": "0.0.1", | ||
"_release": "0.0.17", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "v0.0.1", | ||
"commit": "de31ffa9d787c887da8a35cdcbc6dd3189d1a447" | ||
"tag": "v0.0.17", | ||
"commit": "93d0e5e532c85948a9913b1bba17cafa1d8d258f" | ||
}, | ||
"_source": "https://github.com/develersrl/angular-flot.git", | ||
"_target": "0.0.1", | ||
"_target": "0.0.x", | ||
"_originalSource": "angular-flot" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Change Log | ||
|
||
All notable changes to this project are documented in this file. | ||
|
||
## 0.0.17 - 2017-04-19 | ||
|
||
### Added | ||
|
||
* Minified version of `angular-flot.js`. | ||
|
||
|
||
## 0.0.16 - 2016-01-10 | ||
|
||
* No functional changes. Bumped copyright year and added license header to angular-flot.js. | ||
|
||
|
||
## 0.0.15 - 2015-11-24 | ||
|
||
* Use `$timeout` instead of `scope.$apply` in event handlers. See also issue #30. | ||
|
||
|
||
## 0.0.13 - 2015-09-17 | ||
|
||
* Properly destroy the plot when the directive is being destroyed. Contributed by @Botffy. | ||
|
||
|
||
## 0.0.11 - 2015-09-12 | ||
|
||
* Watch width and height attributes. Contributed by @gudubeth. | ||
|
||
|
||
## 0.0.10 - 2015-07-23 | ||
|
||
* Prevent double initialization when both a dataset and plot options are given. Thanks to @liuce for | ||
the patch. | ||
|
||
|
||
## 0.0.9 - 2015-06-30 | ||
|
||
* Switch to semistandard-format (that performs semicolon insertion) to reformat source code since | ||
the lack of semicolon broke some builds. | ||
|
||
|
||
## 0.0.8 - 2015-06-29 | ||
|
||
* Added pie chart example. | ||
* Added categories chart example. | ||
* Removed development dependency on CoffeeScript. Use plain old ES5. | ||
* Forward "plotclick" and "plothover" events to controller (thanks to Itsiki Avidan) [#21, #22]. | ||
|
||
|
||
## 0.0.6 - 2014-09-18 | ||
|
||
### Changed | ||
|
||
* __BREAKING CHANGE__: Initial watch is done with scope.$watch instead of scope.$watchCollection. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Contributing | ||
|
||
We accept contributions of every kind: documentation, code, artwork. Any help is greatly | ||
appreciated. This document contains everything needed to get started with your first contribution. | ||
|
||
|
||
## Contributing Code | ||
|
||
We keep the source code on [GitHub](https://www.github.com/) and take contributions through | ||
[GitHub pull requests](https://help.github.com/articles/using-pull-requests). | ||
|
||
For smaller patches and bug fixes just go ahead and either report an issue or submit a pull | ||
request. | ||
|
||
It is usually a good idea to discuss major changes with the developers, this will help us | ||
determine whether the contribution would be a good fit for the project and if it is likely to be | ||
accepted. There's nothing worse than seeing your hard work being rejected because it falls outside | ||
of the scope of the project. | ||
|
||
Make sure your editor respects the [EditorConfig](http://editorconfig.org/) configuration file we | ||
put at the root of the repository. | ||
|
||
We follow [GitHub Flow](http://scottchacon.com/2011/08/31/github-flow.html) as our git workflow of | ||
choice which boils down to: | ||
|
||
* The `master` branch is always stable and deployable. | ||
* To work on something new, branch off `master` and give the new branch a descriptive name (e.g.: | ||
`sort-packages-by-name`, `issue-32`, etc). | ||
* Regularly __rebase__ that branch against `master` and push your work to a branch with the same | ||
name on the server. | ||
* When you need feedback, help or think you are ready, | ||
[submit a pull request](https://help.github.com/articles/using-pull-requests). | ||
* Once the branch has been merged (or rebased) into `master`, delete it from both your local and | ||
remote repository. | ||
|
||
We invite you to follow | ||
[these guidelines](http://who-t.blogspot.de/2009/12/on-commit-messages.html) to write useful | ||
commit messages. | ||
|
||
Additionally, you don't need to add entries to the [CHANGELOG.md](CHANGELOG.md) file, this is our | ||
responsibility. | ||
|
||
|
||
## Reading List | ||
|
||
* [GitHub Flow](http://scottchacon.com/2011/08/31/github-flow.html) | ||
* [Keep a Changelog](http://keepachangelog.com/) | ||
* [On Commit Messages](http://who-t.blogspot.de/2009/12/on-commit-messages.html) | ||
* [Semantic Versioning](http://semver.org/) |
2 changes: 1 addition & 1 deletion
2
...app/bower_components/angular-flot/LICENSE → ...bower_components/angular-flot/LICENSE.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 0 additions & 48 deletions
48
angular/app/bower_components/angular-flot/angular-flot.coffee
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.