(js/css) Update generated files

This commit is contained in:
InverseBot
2016-12-17 01:24:00 -05:00
parent 462d274497
commit 13a4398c4d
16 changed files with 863 additions and 697 deletions
+4 -6
View File
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.5.9
* @license AngularJS v1.5.10
* (c) 2010-2016 Google, Inc. http://angularjs.org
* License: MIT
*/
@@ -69,7 +69,7 @@ var jqLite;
* By default, `ngMessages` will only display one message for a particular key/value collection at any time. If more
* than one message (or error) key is currently true, then which message is shown is determined by the order of messages
* in the HTML template code (messages declared first are prioritised). This mechanism means the developer does not have
* to prioritise messages using custom JavaScript code.
* to prioritize messages using custom JavaScript code.
*
* Given the following error object for our example (which informs us that the field `myField` currently has both the
* `required` and `email` errors):
@@ -634,10 +634,8 @@ angular.module('ngMessages', [], function initAngularHelpers() {
* @scope
*
* @description
* `ngMessageExp` is a directive with the purpose to show and hide a particular message.
* For `ngMessageExp` to operate, a parent `ngMessages` directive on a parent DOM element
* must be situated since it determines which messages are visible based on the state
* of the provided key/value map that `ngMessages` listens on.
* `ngMessageExp` is the same as {@link directive:ngMessage `ngMessage`}, but instead of a static
* value, it accepts an expression to be evaluated for the message key.
*
* @usage
* ```html