Skip to content

Commit

Permalink
Update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
hueitan committed Jul 2, 2014
1 parent a3fbc29 commit 2b1e06e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dist/angular-validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
/**
* Allow user to set a custom Expression, do remember set the default message using setDefaultMsg
* @param obj
* @returns {*}
*/
this.setExpression = function (obj) {
angular.extend(expression, obj);
Expand All @@ -86,6 +87,7 @@
/**
* Allow user to set default message
* @param obj
* @returns {*}
*/
this.setDefaultMsg = function (obj) {
angular.extend(defaultMsg, obj);
Expand All @@ -106,6 +108,7 @@
/**
* Override the errorHTML function
* @param func
* @returns {*}
*/
this.setErrorHTML = function (func) {
if (func.constructor !== Function) {
Expand All @@ -131,6 +134,7 @@
/**
* Override the successHTML function
* @param func
* @returns {*}
*/
this.setSuccessHTML = function (func) {
if (func.constructor !== Function) {
Expand Down Expand Up @@ -276,7 +280,7 @@
$timeout = $injector.get('$timeout');

/**
* Do this function iff validation valid
* Do this function if validation valid
* @param element
* @param validMessage
* @param validation
Expand All @@ -298,7 +302,7 @@


/**
* Do this function iff validation invalid
* Do this function if validation invalid
* @param element
* @param validMessage
* @param validation
Expand Down

0 comments on commit 2b1e06e

Please sign in to comment.