Browse Source

Update libraries

christianesperar 8 years ago
parent
commit
30814a1aab

+ 0 - 4
production/form.html

@@ -1611,10 +1611,6 @@
           rating: 4
         });
 
-        $('.starrr').on('click', function (e) {
-          e.preventDefault();
-        });
-
         $('.stars').on('starrr:change', function (e, value) {
           $('.stars-count').html(value);
         });

+ 6 - 6
vendors/Chart.js/.bower.json

@@ -1,23 +1,23 @@
 {
   "name": "Chart.js",
-  "version": "2.0.2",
+  "version": "2.1.0",
   "description": "Simple HTML5 Charts using the canvas element",
   "homepage": "https://github.com/nnnick/Chart.js",
   "author": "nnnick",
+  "license": "MIT",
   "main": [
     "dist/Chart.js"
   ],
   "devDependencies": {
     "jquery": "~2.1.4"
   },
-  "_release": "2.0.2",
+  "_release": "2.1.0",
   "_resolution": {
     "type": "version",
-    "tag": "2.0.2",
-    "commit": "67625063a3c1242ca13858aa629668007b5b8106"
+    "tag": "2.1.0",
+    "commit": "2ee37e12e379ca9b8ad3be7105715bf8c543ead0"
   },
   "_source": "https://github.com/nnnick/Chart.js.git",
   "_target": "^2.0.2",
-  "_originalSource": "Chart.js",
-  "_direct": true
+  "_originalSource": "Chart.js"
 }

+ 5 - 6
vendors/Chart.js/.codeclimate.yml

@@ -1,4 +1,3 @@
----
 engines:
   duplication:
     enabled: true
@@ -11,9 +10,9 @@ engines:
     enabled: true
 ratings:
   paths:
-  - "**.js"
+  - "src/**/*.js"
 exclude_paths:
-- dist/
-- node_modules/
-- test/
-- coverage/
+- dist/**/*
+- node_modules/**/*
+- test/**/*
+- coverage/**/*

+ 1 - 2
vendors/Chart.js/.travis.yml

@@ -1,7 +1,6 @@
 language: node_js
 node_js:
-  - "5.6"
-  - "4.3"
+  - "5.10"
 
 before_install:
   - "export CHROME_BIN=/usr/bin/google-chrome"

+ 11 - 8
vendors/Chart.js/CONTRIBUTING.md

@@ -7,9 +7,9 @@ Contributions to Chart.js are welcome and encouraged, but please have a look thr
 Using issues
 ------------
 
-The [issue tracker](https://github.com/nnnick/Chart.js/issues) is the preferred channel for reporting bugs, requesting new features and submitting pull requests.
+The [issue tracker](https://github.com/chartjs/Chart.js/issues) is the preferred channel for reporting bugs, requesting new features and submitting pull requests.
 
-If you're suggesting a new chart type, please take a look at [writing new chart types](https://github.com/nnnick/Chart.js/blob/master/docs/06-Advanced.md#writing-new-chart-types) in the documentation, and some of the [community extensions](https://github.com/nnnick/Chart.js/blob/master/docs/06-Advanced.md#community-extensions) that have been created already.
+If you're suggesting a new chart type, please take a look at [writing new chart types](https://github.com/chartjs/Chart.js/blob/master/docs/07-Advanced.md#writing-new-chart-types) in the documentation or consider [creating a plugin](https://github.com/chartjs/Chart.js/blob/master/docs/07-Advanced.md#creating-plugins).
 
 To keep the library lightweight for everyone, it's unlikely we'll add many more chart types to the core of Chart.js, but issues are a good medium to design and spec out how new chart types could work and look.
 
@@ -41,21 +41,24 @@ Pull requests
 
 Clear, concise pull requests are excellent at continuing the project's community driven growth. But please review [these guidelines](https://github.com/blog/1943-how-to-write-the-perfect-pull-request) and the guidelines below before starting work on the project.
 
-Guidlines:
+Be advised that **Chart.js 1.0.2 is in feature-complete status**. Pull requests adding new features to the 1.x branch will be disregarded.
+
+Guidelines:
 
  - Please create an issue first:
    - For bugs, we can discuss the fixing approach
    - For enhancements, we can discuss if it is within the project scope and avoid duplicate effort
- - Please make changes to the files in [`/src`](https://github.com/nnnick/Chart.js/tree/master/src), not `Chart.js` or `Chart.min.js` in the repo root directory, this avoids merge conflicts
+ - Please make changes to the files in [`/src`](https://github.com/chartjs/Chart.js/tree/master/src), not `Chart.js` or `Chart.min.js` in the repo root directory, this avoids merge conflicts
  - Tabs for indentation, not spaces please
- - If adding new functionality, please also update the relevant `.md` file in [`/docs`](https://github.com/nnnick/Chart.js/tree/master/docs)
+ - If adding new functionality, please also update the relevant `.md` file in [`/docs`](https://github.com/chartjs/Chart.js/tree/master/docs)
  - Please make your commits in logical sections with clear commit messages
 
-Joining the Project
+Joining the project
 -------------
- - Active committers and contributors are invited to introduce yourself and request commit access to this project.  Please send an email to hello@nickdownie.com or file an issue. 
+ - Active committers and contributors are invited to introduce yourself and request commit access to this project.  Please send an email to hello@nickdownie.com or file an issue.
+ - We have a very active Slack community that you can join at https://chartjs-slack-automation.herokuapp.com. If you think you can help, we'd love to have you!
 
 License
 -------
 
-By contributing your code, you agree to license your contribution under the [MIT license](https://github.com/nnnick/Chart.js/blob/master/LICENSE.md).
+By contributing your code, you agree to license your contribution under the [MIT license](https://github.com/chartjs/Chart.js/blob/master/LICENSE.md).

+ 2 - 1
vendors/Chart.js/LICENSE.md

@@ -1,4 +1,5 @@
-Copyright (c) 2013-2015 Nick Downie
+The MIT License (MIT)
+Copyright (c) 2013-2016 Nick Downie
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 

+ 17 - 26
vendors/Chart.js/README.md

@@ -1,45 +1,36 @@
-# Chart.js 
-
-[![Build Status](https://travis-ci.org/nnnick/Chart.js.svg?branch=v2.0-dev)](https://travis-ci.org/nnnick/Chart.js) [![Code Climate](https://codeclimate.com/github/nnnick/Chart.js/badges/gpa.svg)](https://codeclimate.com/github/nnnick/Chart.js)[![Coverage Status](https://coveralls.io/repos/nnnick/Chart.js/badge.svg?branch=v2.0-dev)](https://coveralls.io/r/nnnick/Chart.js?branch=v2.0-dev)
+# Chart.js
 
+[![Build Status](https://travis-ci.org/chartjs/Chart.js.svg?branch=master)](https://travis-ci.org/chartjs/Chart.js) [![Code Climate](https://codeclimate.com/github/nnnick/Chart.js/badges/gpa.svg)](https://codeclimate.com/github/nnnick/Chart.js) [![Coverage Status](https://coveralls.io/repos/github/chartjs/Chart.js/badge.svg?branch=master)](https://coveralls.io/github/chartjs/Chart.js?branch=master)
 
+[![Chart.js on Slack](https://img.shields.io/badge/slack-Chart.js-blue.svg)](https://chartjs-slack-automation.herokuapp.com/)
 
 *Simple HTML5 Charts using the canvas element* [chartjs.org](http://www.chartjs.org)
 
-## v2.0 Beta
-
-Current Release: [2.0.0-beta2](https://github.com/nnnick/Chart.js/releases/tag/2.0.0-beta2)
-
-The next generation and release of Chart.js has been well under way this year and we are very close to releasing some amazing new features including, but not limited to:
-- Rewritten, optimized, and unit-tested
-- New and improved scales (log, time, linear, category, multiple scales)
-- Improved responsiveness and resizing
-- Powerful support for adding, removing, changing, and updating data on the fly
-- Animations on all elements, colors and tooltips
-- Powerful customization when you need it. Automatic and dynamic when you don't.
-- Excellent support for modern frameworks and modular build systems.
-- Even more extensible via new element controllers, combo chart support, and hook system
-- Bug fixes not addressed in 1.x, and much, much more...
+## Installation
 
-#####Contributing to 2.0
-Submit PR's to the v2.0-dev branch.
+To download a zip, go to the Chart.js on Github
 
-#####Building and Testing
-`gulp build`, `gulp test`
+To install via npm / bower:
 
-## v1.x Status: Feature Complete
-We are now treating v1.x as feature complete.  PR's for bug fixes are welcome, but we urge any open PR's for v1.x features to be refactored and resubmitted for v2.x (if the feature has not already been implemented).
+```bash
+npm install chart.js --save
+bower install Chart.js --save
+```
+CDN: https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.0.0/Chart.js
 
 ## Documentation
 
-You can find documentation at [chartjs.org/docs](http://www.chartjs.org/docs/). The markdown files that build the site are available under `/docs`. Please note - in some of the json examples of configuration you might notice some liquid tags - this is just for the generating the site html, please disregard.
+You can find documentation at [www.chartjs.org/docs](http://www.chartjs.org/docs). The markdown files that build the site are available under `/docs`. Previous version documentation is available at [www.chartjs.org/docs/#notes-previous-versions](http://www.chartjs.org/docs/#notes-previous-versions).
 
-## Bugs, issues and contributing
+## Contributing
 
-Before submitting an issue or a pull request to the project, please take a moment to look over the [contributing guidelines](https://github.com/nnnick/Chart.js/blob/master/CONTRIBUTING.md) first.
+Before submitting an issue or a pull request to the project, please take a moment to look over the [contributing guidelines](https://github.com/chartjs/Chart.js/blob/master/CONTRIBUTING.md) first.
 
 For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](http://stackoverflow.com/questions/tagged/chartjs).
 
+## Building and Testing
+`gulp build`, `gulp test`
+
 ## License
 
 Chart.js is available under the [MIT license](http://opensource.org/licenses/MIT).

+ 2 - 1
vendors/Chart.js/bower.json

@@ -1,9 +1,10 @@
 {
   "name": "Chart.js",
-  "version": "2.0.2",
+  "version": "2.1.0",
   "description": "Simple HTML5 Charts using the canvas element",
   "homepage": "https://github.com/nnnick/Chart.js",
   "author": "nnnick",
+  "license": "MIT",
   "main": [
     "dist/Chart.js"
   ],

File diff suppressed because it is too large
+ 467 - 140
vendors/Chart.js/dist/Chart.bundle.js


File diff suppressed because it is too large
+ 0 - 0
vendors/Chart.js/dist/Chart.bundle.min.js


Some files were not shown because too many files changed in this diff