Blame view

app/partials/scheduler/scheduler.html 2.37 KB
feacde5ff   Rishav   setup acuefuel in...
1
2
3
4
5
6
7
8
  <style type="text/css">
     .newUlView {
     padding: 5px;
     margin: 3px;
     }
     .subnavbar .mainnav > li:nth-child(4) > a{
     color: #ff9900;
     }
a55ef20b5   Swarn Singh   schedular added
9
10
11
12
13
14
15
16
17
18
19
20
     .fc button, .fc-button-group, .fc-time-grid .fc-event .fc-time span{
        display: block;
     }
     .fc-state-default{
        background-color: #fff;
        background-image: none;
     }
     .fc-state-active, .fc-state-down{
        box-shadow: none;
        color: #fff;
        background-color: #ff9900;
     }
e95d89b77   Swarn Singh   integrate editor ...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  
  
     /*#wrap {
        width: 1100px;
        margin: 0 auto;
     }
        
     #external-events {
        float: left;
        width: 150px;
        padding: 0 10px;
        border: 1px solid #ccc;
        background: #eee;
        text-align: left;
     }
        
     #external-events h4 {
        font-size: 16px;
        margin-top: 0;
        padding-top: 1em;
     }
        
     #external-events .fc-event {
        margin: 10px 0;
        cursor: pointer;
     }
        
     #external-events p {
        margin: 1.5em 0;
        font-size: 11px;
        color: #666;
     }
        
     #external-events p input {
        margin: 0;
        vertical-align: middle;
     }
  
     #calendar {
        float: right;
        width: 900px;
     }*/
feacde5ff   Rishav   setup acuefuel in...
63
64
65
66
  </style>
  <div class="main">
     <div class="container">
        <div class="row">
e95d89b77   Swarn Singh   integrate editor ...
67
           <div class="col-xs-12">
03cf7c388   Swarn Singh   minor changes due...
68
              <div id='wrap'>
e95d89b77   Swarn Singh   integrate editor ...
69

03cf7c388   Swarn Singh   minor changes due...
70
                       <div id='external-events' class="col-xs-12 col-md-3">
e95d89b77   Swarn Singh   integrate editor ...
71
                          <h4>Draggable Events</h4>
03cf7c388   Swarn Singh   minor changes due...
72
73
74
75
76
77
                          <label ng-repeat="item in eventList" style="width: 100%;">
                             <div class="fc-event" data-drag="true" data-jqyoui-options="{revert: 'invalid'}" jqyoui-draggable="{index: {{$index}},placeholder:true,animate:true}">
                                {{item.title}}
                             </div>
                          </label>
                          <!-- <p>
e95d89b77   Swarn Singh   integrate editor ...
78
79
                             <input type='checkbox' id='drop-remove' />
                             <label for='drop-remove'>remove after drop</label>
03cf7c388   Swarn Singh   minor changes due...
80
                          </p> -->
e95d89b77   Swarn Singh   integrate editor ...
81
                       </div>
03cf7c388   Swarn Singh   minor changes due...
82
                       <div ui-calendar="uiConfig.calendar" ng-model="eventSources" class="col-xs-12 col-md-9" data-drop="true" jqyoui-droppable="{multiple:true, onDrop: 'addEvent($index)'}"></div>
e95d89b77   Swarn Singh   integrate editor ...
83
84
  
                       <div style='clear:both'></div>
4bb02bb84   Rishav   new integration w...
85

03cf7c388   Swarn Singh   minor changes due...
86
                    </div>
a55ef20b5   Swarn Singh   schedular added
87

feacde5ff   Rishav   setup acuefuel in...
88
           </div>
4bb02bb84   Rishav   new integration w...
89

feacde5ff   Rishav   setup acuefuel in...
90
        </div>
03cf7c388   Swarn Singh   minor changes due...
91
92
        <div>
        </div>
feacde5ff   Rishav   setup acuefuel in...
93
94
95
96
97
        <!-- /row -->
     </div>
     <!-- /container -->
  </div>
  <!-- /main -->