Skip to content

Commit

Permalink
v1.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chidori committed Feb 2, 2017
1 parent 323830a commit 0140aaa
Show file tree
Hide file tree
Showing 18 changed files with 2,023 additions and 50 deletions.
11 changes: 0 additions & 11 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,6 @@
*.swp
.idea
*.pid
contrib
out
src/deps.js
*.swo
*.pyc
**/.*
npm-debug.log
build*
gjslint.cfg
modules.edn
cat.config
update-submodules
externs.js
tests
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[<img src="https://cdn.anychart.com/images/logo-transparent-segoe.png?2" width="234px" alt="AnyChart - Robust JavaScript/HTML5 Chart library for any project">](http://www.anychart.com)

AngularJS v1.x directives for AnyChart

=========
# AngularJS v1.x directives for AnyChart

AngularJS v1.x directives for AnyChart provide an easy way to use [AnyChart JavaScript Charts](http://anychart.com)
with [AngularJS Framework](https://angularjs.org/).
Expand All @@ -26,7 +24,7 @@ You can install AngularJS-plugin using **npm**, **bower** or **yarn**:

* `npm install anychart-angularjs`
* `bower install anychart-angularjs`
* `yarn install anychart-angularjs`
* `yarn add anychart-angularjs`

#### Direct download

Expand Down Expand Up @@ -281,7 +279,7 @@ charts on the anychart stage and how to add the after-draw handler.

## Contacts

* Web: [www.anychart.com](www.anychart.com)
* Web: [www.anychart.com](http://www.anychart.com)
* Email: [[email protected]](mailto:[email protected])
* Twitter: [anychart](https://twitter.com/anychart)
* Facebook: [AnyCharts](https://www.facebook.com/AnyCharts)
Expand Down
11 changes: 2 additions & 9 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@
"description": "AngularJS v1.x directives for AnyChart",
"main": "dist/anychart-angularjs.min.js",
"authors": [
"Roman Lubushkin <[email protected]>",
"Alexander Kudryavtsev <[email protected]>",
"Anton Kagakin <[email protected]>",
"Anton Saukh <[email protected]>",
"Sergey Medvedev <[email protected]>",
"Vitaly Radionov <[email protected]>",
"Eugene Averchenko <[email protected]>"
"AnyChart"
],
"license": "Apache-2.0",
"keywords": [
Expand Down Expand Up @@ -41,8 +35,7 @@
"angular",
"angularjs"
],
"homepage": "https://github.com/AnyChart/AngularJS-plugin",
"private": true,
"homepage": "https://github.com/AnyChart/AnyChart-AngularJS.git",
"ignore": [
"**/.*",
"node_modules",
Expand Down
2 changes: 1 addition & 1 deletion demos/Anychart_Load_Data_From_Json.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="lib/angular.min.js"></script>
<script src="lib/anychart-bundle.min.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Full_Custom_Stage.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script src="lib/angular.min.js"></script>
<script src="lib/anychart-bundle.min.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Gantt_Project_After_Draw.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script src="lib/anychart-bundle.min.js"></script>
<script src="res/hierarchical-data.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Gantt_Resource_Instance_Usage.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script src="lib/anychart-bundle.min.js"></script>
<script src="res/resources-simple.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Line_Chart_After_Draw.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="lib/angular.min.js"></script>
<script src="lib/anychart-bundle.min.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Line_Chart_Data_Streaming.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="lib/angular.min.js"></script>
<script src="lib/anychart-bundle.min.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Simple_Charts_On_Stage.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script src="lib/angular.min.js"></script>
<script src="lib/anychart-bundle.min.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Simple_Gantt_Project.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="lib/angular.min.js"></script>
<script src="lib/anychart-bundle.min.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Simple_Map.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script src="lib/anychart-bundle.min.js"></script>
<script src="res/australia.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Simple_Pie.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="lib/angular.min.js"></script>
<script src="lib/anychart-bundle.min.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Simple_Stock_Area.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<script src="res/csco-daily-short.js"></script>
<script src="res/ibm-daily-short.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/Software_Sales_Dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script src="lib/angular.min.js"></script>
<script src="lib/anychart-bundle.min.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion demos/World_Map_Instance_After_Draw.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script src="lib/anychart-bundle.min.js"></script>
<script src="res/world.js"></script>
<script src="../dist/anychart-angularjs.min.js"></script>

<link rel="stylesheet" href="res/anychart-ui.css">
<style>
html, body {
width: 100%;
Expand Down
Loading

0 comments on commit 0140aaa

Please sign in to comment.