Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4192 Rev 4398
Línea 1... Línea 1...
1
<?php
1
<?php
Línea 2... Línea 2...
2
 
2
 
Línea -... Línea 3...
-
 
3
$routeEvents = $this->url('calendar/events');
-
 
4
 
Línea 3... Línea 5...
3
$routeEvents = $this->url('calendar/events');
5
$this->headLink()->appendStylesheet($this->basePath('vendors/nprogress/nprogress.css'));
4
 
-
 
5
 
-
 
6
$this->headLink()->appendStylesheet($this->basePath('vendors/fullcalendar/fullcalendar.css'));
-
 
Línea 7... Línea 6...
7
//$this->headLink()->appendStylesheet($this->basePath('vendors/fullcalendar-scheduler/dist/scheduler.css'));
6
$this->inlineScript()->appendFile($this->basePath('vendors/nprogress/nprogress.js'));
8
//$this->headLink()->appendStylesheet($this->basePath('vendors/iCheck/skins/flat/green.css'));
7
 
9
 
8
$this->headLink()->appendStylesheet($this->basePath('vendors/fullcalendar/fullcalendar.css'));
10
 
-
 
11
$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar/lib/moment.min.js'));
-
 
12
$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar/fullcalendar.js'));
9
 
Línea 13... Línea 10...
13
$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar/locale/es-us.js'));
10
$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar/lib/moment.min.js'));
Línea 44... Línea 41...
44
          ,eventRender: function(eventObj, \$el) {
41
          ,eventRender: function(eventObj, \$el) {
45
            $('.popover').remove();
42
            $('.popover').remove();
46
            \$el.popover({
43
            \$el.popover({
47
                title: eventObj.title,
44
                title: eventObj.title,
48
                content: eventObj.agenda,
45
                content: eventObj.agenda,
49
                trigger: 'hover',
46
                trigger: 'click', // 'hover',
50
                placement: 'top',
47
                placement: 'top',
51
                container: 'body',
48
                container: 'body',
-
 
49
 
52
                popperOptions : {
50
                popperOptions : {
53
                    removeOnDestroy: true
51
                    removeOnDestroy: true
54
                },  
52
                },  
55
                options : {
53
                options : {
56
                    removeOnDestroy: true
54
                    removeOnDestroy: true
Línea 59... Línea 57...
59
            });
57
            });
60
        },
58
        },
Línea 61... Línea 59...
61
 
59
 
Línea -... Línea 60...
-
 
60
    });
-
 
61
 
-
 
62
 
-
 
63
   
-
 
64
    $('body').on('click', 'a.goto-backend', function(e) {
-
 
65
        e.preventDefault();
-
 
66
        var action = $(this).attr('href');
-
 
67
 
-
 
68
        NProgress.start();
-
 
69
        $.ajax({
-
 
70
            'dataType'  : 'json',
-
 
71
            'method'    : 'get',
-
 
72
            'url'       :  action,
-
 
73
            'data'      :  $('#form').serialize(),
-
 
74
        }).done(function(response) {
-
 
75
            if(response['success']) {
-
 
76
              window.open(response['data'], '_backend')
-
 
77
            } else {
-
 
78
                $.fn.showError(response['data']);
-
 
79
            }
-
 
80
        }).fail(function( jqXHR, textStatus, errorThrown) {
-
 
81
            $.fn.showError(textStatus);
-
 
82
        }).always(function() {
-
 
83
            NProgress.done();
-
 
84
        });
-
 
85
 
-
 
86
    });
-
 
87
 
Línea 62... Línea 88...
62
    });
88
 
63
 
89
 
64
    
90