Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4131 Rev 4141
Línea 14... Línea 14...
14
//$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar-scheduler/dist/scheduler.js'));
14
//$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar-scheduler/dist/scheduler.js'));
15
//$this->inlineScript()->appendFile($this->basePath('vendors/iCheck/icheck.min.js'));
15
//$this->inlineScript()->appendFile($this->basePath('vendors/iCheck/icheck.min.js'));
16
$this->inlineScript()->appendFile($this->basePath('vendors/popper/umd/popper.js'));
16
$this->inlineScript()->appendFile($this->basePath('vendors/popper/umd/popper.js'));
Línea 17... Línea -...
17
 
-
 
18
 
-
 
19
$this->headLink()->appendStylesheet($this->basePath('vendors/select2/dist/css/select2.min.css'));
-
 
20
$this->headLink()->appendStylesheet($this->basePath('vendors/select2-bootstrap4/dist/select2-bootstrap4.min.css'));
-
 
21
$this->inlineScript()->appendFile($this->basePath('vendors/select2/dist/js/select2.min.js'));
-
 
22
 
-
 
23
$this->inlineScript()->appendFile($this->basePath('vendors/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
17
 
Línea 24... Línea 18...
24
 
18
 
25
$defaultDate = date('Y-m-d');
19
$defaultDate = date('Y-m-d');
26
 
20
 
Línea 45... Línea 39...
45
            url: '$routeEvents',
39
            url: '$routeEvents',
46
            error: function() {
40
            error: function() {
47
              $('#script-warning').show();
41
              $('#script-warning').show();
48
            }
42
            }
49
          }
43
          }
50
/*
-
 
51
          ,eventRender: function(eventObj, \$el) {
44
          ,eventRender: function(eventObj, \$el) {
52
            $('.popover').remove();
45
            $('.popover').remove();
53
            \$el.popover({
46
            \$el.popover({
54
                title: eventObj.title,
47
                title: eventObj.name,
55
                content: eventObj.description,
48
                content: eventObj.agenda,
56
                trigger: 'hover',
49
                trigger: 'hover',
57
                placement: 'top',
50
                placement: 'top',
58
                container: 'body',
51
                container: 'body',
59
                popperOptions : {
52
                popperOptions : {
60
                    removeOnDestroy: true
53
                    removeOnDestroy: true
Línea 62... Línea 55...
62
                options : {
55
                options : {
63
                    removeOnDestroy: true
56
                    removeOnDestroy: true
64
                },  
57
                },  
65
                 html: true
58
                 html: true
66
            });
59
            });
67
        },*/
60
        },
Línea 68... Línea 61...
68
 
61