Created
January 30, 2016 12:48
-
-
Save sj82516/a8abc37ebf742de72c4c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| //Right One | |
| item.attr("data-title", error); | |
| item.attr("data-placement","bottom"); | |
| item.attr("data-toggle","toggle"); | |
| item.closest("div").addClass("has-error"); | |
| item.closest("div").addClass("has-feedback"); | |
| item.closest("div").find(".glyphicon-ok").remove(); | |
| item.after('<span class="glyphicon glyphicon-remove form-control-feedback"></span>'); | |
| item.tooltip('show'); | |
| //Wrong One | |
| item.attr("data-title", error); | |
| item.attr("data-placement","bottom"); | |
| item.attr("data-toggle","toggle"); | |
| item.tooltip('show'); | |
| item.closest("div").addClass("has-error"); | |
| item.closest("div").addClass("has-feedback"); | |
| item.closest("div").find(".glyphicon-ok").remove(); | |
| item.after('<span class="glyphicon glyphicon-remove form-control-feedback"></span>'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment