Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16918 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16918 Rev 16929
Línea 17... Línea 17...
17
 
17
 
18
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
18
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
Línea 19... Línea -...
19
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
20
 
-
 
21
 
-
 
-
 
19
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
20
 
-
 
21
 
Línea 22... Línea 22...
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
22
 
23
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
23
 
Línea 24... Línea 24...
24
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
24
 
Línea 74... Línea 74...
74
                error.insertAfter(element.parent());
74
                error.insertAfter(element.parent());
Línea 75... Línea 75...
75
                
75
                
76
            }
76
            }
Línea 77... Línea 77...
77
        });
77
        });
78
    
-
 
79
    
-
 
80
        $.fn.showFormErrorValidator = function(fieldname, errors) {
-
 
81
            var field = $(fieldname);
-
 
82
            if(field) {
-
 
83
                $(field).addClass('is-invalid');
-
 
84
    
-
 
85
 
-
 
86
                var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
-
 
87
                error.insertAfter(field.parent());
-
 
88
                
-
 
89
            }
-
 
90
        };
-
 
Línea 91... Línea 78...
91
 
78
    
92
 
79