You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a select element is required, a validate-popover node is created for each one of the select's options. Thats because of the following statement:
hide_validate_popover: function(element) {
var ele, _i, _len, _results;
if (element.length > 1) {..
Where element is not the jquery object, but the actual html node.
The text was updated successfully, but these errors were encountered:
When a select element is required, a validate-popover node is created for each one of the select's options. Thats because of the following statement:
hide_validate_popover: function(element) {
var ele, _i, _len, _results;
if (element.length > 1) {..
Where element is not the jquery object, but the actual html node.
The text was updated successfully, but these errors were encountered: