File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ define(function () {
23
23
24
24
//DEFINIR COMO FUNCION
25
25
return function ( ) {
26
- //HASH CHANGE EVENT
26
+ //EVENTO DE CAMBIO DE HASH
27
27
$ ( window ) . on ( "hashchange" , function ( ) {
28
28
window . router . actualizar ( ) ;
29
29
} ) ;
@@ -32,15 +32,15 @@ define(function () {
32
32
window . router . actualizar ( 'inicio' ) ;
33
33
} ;
34
34
35
- //OBTENER EL MÓDULO VISTA
35
+ //OBTENER EL MODULO VISTA
36
36
function _getNombreVista ( def ) {
37
37
38
38
var hash = _getUrlParameter ( location . hash , "view" ) || def ;
39
39
if ( ! hash ) {
40
40
return ;
41
41
}
42
42
43
- //AÑADIR CLASE 'vista_'
43
+ //ANHADIR CLASE 'vista_'
44
44
//https://stackoverflow.com/questions/2644299/jquery-removeclass-wildcard
45
45
$ ( "html" ) . removeClass ( function ( index , className ) {
46
46
return ( className . match ( / ( ^ | \s ) v i s t a _ \S + / g) || [ ] ) . join ( ' ' ) ;
You can’t perform that action at this time.
0 commit comments