Blame view

backend/web/js/custom.js 114 KB
06692811   Eugeny Galkovskiy   first commit
1
2
  /**
   * Resize function without multiple trigger
221dd712   Eugeny Galkovskiy   menu
3
   *
06692811   Eugeny Galkovskiy   first commit
4
   * Usage:
221dd712   Eugeny Galkovskiy   menu
5
   * $(window).smartresize(function(){
06692811   Eugeny Galkovskiy   first commit
6
7
8
9
10
11
12
13
14
15
16
17
18
   *     // code here
   * });
   */
  (function($,sr){
      // debouncing function from John Hann
      // http://unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods/
      var debounce = function (func, threshold, execAsap) {
        var timeout;
  
          return function debounced () {
              var obj = this, args = arguments;
              function delayed () {
                  if (!execAsap)
221dd712   Eugeny Galkovskiy   menu
19
20
                      func.apply(obj, args);
                  timeout = null;
06692811   Eugeny Galkovskiy   first commit
21
22
23
24
25
26
27
              }
  
              if (timeout)
                  clearTimeout(timeout);
              else if (execAsap)
                  func.apply(obj, args);
  
221dd712   Eugeny Galkovskiy   menu
28
              timeout = setTimeout(delayed, threshold || 100);
06692811   Eugeny Galkovskiy   first commit
29
30
31
          };
      };
  
221dd712   Eugeny Galkovskiy   menu
32
      // smartresize
06692811   Eugeny Galkovskiy   first commit
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
      jQuery.fn[sr] = function(fn){  return fn ? this.bind('resize', debounce(fn)) : this.trigger(sr); };
  
  })(jQuery,'smartresize');
  /**
   * To change this license header, choose License Headers in Project Properties.
   * To change this template file, choose Tools | Templates
   * and open the template in the editor.
   */
  
  var CURRENT_URL = window.location.href.split('#')[0].split('?')[0],
      $BODY = $('body'),
      $MENU_TOGGLE = $('#menu_toggle'),
      $SIDEBAR_MENU = $('#sidebar-menu'),
      $SIDEBAR_FOOTER = $('.sidebar-footer'),
      $LEFT_COL = $('.left_col'),
      $RIGHT_COL = $('.right_col'),
      $NAV_MENU = $('.nav_menu'),
      $FOOTER = $('footer');
  
221dd712   Eugeny Galkovskiy   menu
52
53
  
  
06692811   Eugeny Galkovskiy   first commit
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
  // Sidebar
  function init_sidebar() {
  // TODO: This is some kind of easy fix, maybe we can improve this
  var setContentHeight = function () {
  	// reset height
  	$RIGHT_COL.css('min-height', $(window).height());
  
  	var bodyHeight = $BODY.outerHeight(),
  		footerHeight = $BODY.hasClass('footer_fixed') ? -10 : $FOOTER.height(),
  		leftColHeight = $LEFT_COL.eq(1).height() + $SIDEBAR_FOOTER.height(),
  		contentHeight = bodyHeight < leftColHeight ? leftColHeight : bodyHeight;
  
  	// normalize content
  	contentHeight -= $NAV_MENU.height() + footerHeight;
  
  	$RIGHT_COL.css('min-height', contentHeight);
  };
  
    $SIDEBAR_MENU.find('a').on('click', function(ev) {
  	  console.log('clicked - sidebar_menu');
          var $li = $(this).parent();
  
          if ($li.is('.active')) {
              $li.removeClass('active active-sm');
              $('ul:first', $li).slideUp(function() {
                  setContentHeight();
              });
          } else {
              // prevent closing menu if we are on child menu
              if (!$li.parent().is('.child_menu')) {
                  $SIDEBAR_MENU.find('li').removeClass('active active-sm');
                  $SIDEBAR_MENU.find('li ul').slideUp();
              }else
              {
  				if ( $BODY.is( ".nav-sm" ) )
  				{
  					$SIDEBAR_MENU.find( "li" ).removeClass( "active active-sm" );
  					$SIDEBAR_MENU.find( "li ul" ).slideUp();
  				}
  			}
              $li.addClass('active');
  
              $('ul:first', $li).slideDown(function() {
                  setContentHeight();
              });
          }
      });
  
221dd712   Eugeny Galkovskiy   menu
102
  // toggle small or large menu
06692811   Eugeny Galkovskiy   first commit
103
104
  $MENU_TOGGLE.on('click', function() {
  		console.log('clicked - menu toggle');
221dd712   Eugeny Galkovskiy   menu
105
  
06692811   Eugeny Galkovskiy   first commit
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
  		if ($BODY.hasClass('nav-md')) {
  			$SIDEBAR_MENU.find('li.active ul').hide();
  			$SIDEBAR_MENU.find('li.active').addClass('active-sm').removeClass('active');
  		} else {
  			$SIDEBAR_MENU.find('li.active-sm ul').show();
  			$SIDEBAR_MENU.find('li.active-sm').addClass('active').removeClass('active-sm');
  		}
  
  	$BODY.toggleClass('nav-md nav-sm');
  
  	setContentHeight();
  });
  
  	// check active menu
  	$SIDEBAR_MENU.find('a[href="' + CURRENT_URL + '"]').parent('li').addClass('current-page');
  
  	$SIDEBAR_MENU.find('a').filter(function () {
  		return this.href == CURRENT_URL;
  	}).parent('li').addClass('current-page').parents('ul').slideDown(function() {
  		setContentHeight();
  	}).parent().addClass('active');
  
  	// recompute content when resizing
221dd712   Eugeny Galkovskiy   menu
129
  	$(window).smartresize(function(){
06692811   Eugeny Galkovskiy   first commit
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
  		setContentHeight();
  	});
  
  	setContentHeight();
  
  	// fixed sidebar
  	if ($.fn.mCustomScrollbar) {
  		$('.menu_fixed').mCustomScrollbar({
  			autoHideScrollbar: true,
  			theme: 'minimal',
  			mouseWheel:{ preventDefault: true }
  		});
  	}
  };
  // /Sidebar
  
  	var randNum = function() {
  	  return (Math.floor(Math.random() * (1 + 40 - 20))) + 20;
  	};
  
  
  // Panel toolbox
  $(document).ready(function() {
      $('.collapse-link').on('click', function() {
          var $BOX_PANEL = $(this).closest('.x_panel'),
              $ICON = $(this).find('i'),
              $BOX_CONTENT = $BOX_PANEL.find('.x_content');
221dd712   Eugeny Galkovskiy   menu
157
  
06692811   Eugeny Galkovskiy   first commit
158
159
160
161
162
163
          // fix for some div with hardcoded fix class
          if ($BOX_PANEL.attr('style')) {
              $BOX_CONTENT.slideToggle(200, function(){
                  $BOX_PANEL.removeAttr('style');
              });
          } else {
221dd712   Eugeny Galkovskiy   menu
164
165
              $BOX_CONTENT.slideToggle(200);
              $BOX_PANEL.css('height', 'auto');
06692811   Eugeny Galkovskiy   first commit
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
          }
  
          $ICON.toggleClass('fa-chevron-up fa-chevron-down');
      });
  
      $('.close-link').click(function () {
          var $BOX_PANEL = $(this).closest('.x_panel');
  
          $BOX_PANEL.remove();
      });
  });
  // /Panel toolbox
  
  // Tooltip
  $(document).ready(function() {
      $('[data-toggle="tooltip"]').tooltip({
          container: 'body'
      });
  });
  // /Tooltip
  
  // Progressbar
  if ($(".progress .progress-bar")[0]) {
      $('.progress .progress-bar').progressbar();
  }
  // /Progressbar
  
  // Switchery
  $(document).ready(function() {
      if ($(".js-switch")[0]) {
          var elems = Array.prototype.slice.call(document.querySelectorAll('.js-switch'));
          elems.forEach(function (html) {
              var switchery = new Switchery(html, {
                  color: '#26B99A'
              });
          });
      }
  });
  // /Switchery
  
  
  // iCheck
  $(document).ready(function() {
      if ($("input.flat")[0]) {
          $(document).ready(function () {
              $('input.flat').iCheck({
                  checkboxClass: 'icheckbox_flat-green',
                  radioClass: 'iradio_flat-green'
              });
          });
      }
  });
  // /iCheck
  
  // Table
  $('table input').on('ifChecked', function () {
      checkState = '';
      $(this).parent().parent().parent().addClass('selected');
      countChecked();
  });
  $('table input').on('ifUnchecked', function () {
      checkState = '';
      $(this).parent().parent().parent().removeClass('selected');
      countChecked();
  });
  
  var checkState = '';
  
  $('.bulk_action input').on('ifChecked', function () {
      checkState = '';
      $(this).parent().parent().parent().addClass('selected');
      countChecked();
  });
  $('.bulk_action input').on('ifUnchecked', function () {
      checkState = '';
      $(this).parent().parent().parent().removeClass('selected');
      countChecked();
  });
  $('.bulk_action input#check-all').on('ifChecked', function () {
      checkState = 'all';
      countChecked();
  });
  $('.bulk_action input#check-all').on('ifUnchecked', function () {
      checkState = 'none';
      countChecked();
  });
  
  function countChecked() {
      if (checkState === 'all') {
          $(".bulk_action input[name='table_records']").iCheck('check');
      }
      if (checkState === 'none') {
          $(".bulk_action input[name='table_records']").iCheck('uncheck');
      }
  
      var checkCount = $(".bulk_action input[name='table_records']:checked").length;
  
      if (checkCount) {
          $('.column-title').hide();
          $('.bulk-actions').show();
          $('.action-cnt').html(checkCount + ' Records Selected');
      } else {
          $('.column-title').show();
          $('.bulk-actions').hide();
      }
  }
  
  
  
  // Accordion
  $(document).ready(function() {
      $(".expand").on("click", function () {
          $(this).next().slideToggle(200);
          $expand = $(this).find(">:first-child");
  
          if ($expand.text() == "+") {
              $expand.text("-");
          } else {
              $expand.text("+");
          }
      });
  });
  
  // NProgress
  if (typeof NProgress != 'undefined') {
      $(document).ready(function () {
          NProgress.start();
      });
  
      $(window).load(function () {
          NProgress.done();
      });
  }
  
221dd712   Eugeny Galkovskiy   menu
300
  
06692811   Eugeny Galkovskiy   first commit
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
  	  //hover and retain popover when on popover content
          var originalLeave = $.fn.popover.Constructor.prototype.leave;
          $.fn.popover.Constructor.prototype.leave = function(obj) {
            var self = obj instanceof this.constructor ?
              obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type);
            var container, timeout;
  
            originalLeave.call(this, obj);
  
            if (obj.currentTarget) {
              container = $(obj.currentTarget).siblings('.popover');
              timeout = self.timeout;
              container.one('mouseenter', function() {
                //We entered the actual popover – call off the dogs
                clearTimeout(timeout);
                //Let's monitor popover content instead
                container.one('mouseleave', function() {
                  $.fn.popover.Constructor.prototype.leave.call(self, self);
                });
              });
            }
          };
  
          $('body').popover({
            selector: '[data-popover]',
            trigger: 'click hover',
            delay: {
              show: 50,
              hide: 400
            }
          });
  
  
  	function gd(year, month, day) {
  		return new Date(year, month - 1, day).getTime();
  	}
221dd712   Eugeny Galkovskiy   menu
337
338
  
  
06692811   Eugeny Galkovskiy   first commit
339
  	function init_flot_chart(){
221dd712   Eugeny Galkovskiy   menu
340
  
06692811   Eugeny Galkovskiy   first commit
341
  		if( typeof ($.plot) === 'undefined'){ return; }
221dd712   Eugeny Galkovskiy   menu
342
  
06692811   Eugeny Galkovskiy   first commit
343
  		console.log('init_flot_chart');
221dd712   Eugeny Galkovskiy   menu
344
345
346
  
  
  
06692811   Eugeny Galkovskiy   first commit
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
  		var arr_data1 = [
  			[gd(2012, 1, 1), 17],
  			[gd(2012, 1, 2), 74],
  			[gd(2012, 1, 3), 6],
  			[gd(2012, 1, 4), 39],
  			[gd(2012, 1, 5), 20],
  			[gd(2012, 1, 6), 85],
  			[gd(2012, 1, 7), 7]
  		];
  
  		var arr_data2 = [
  		  [gd(2012, 1, 1), 82],
  		  [gd(2012, 1, 2), 23],
  		  [gd(2012, 1, 3), 66],
  		  [gd(2012, 1, 4), 9],
  		  [gd(2012, 1, 5), 119],
  		  [gd(2012, 1, 6), 6],
  		  [gd(2012, 1, 7), 9]
  		];
221dd712   Eugeny Galkovskiy   menu
366
  
06692811   Eugeny Galkovskiy   first commit
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
  		var arr_data3 = [
  			[0, 1],
  			[1, 9],
  			[2, 6],
  			[3, 10],
  			[4, 5],
  			[5, 17],
  			[6, 6],
  			[7, 10],
  			[8, 7],
  			[9, 11],
  			[10, 35],
  			[11, 9],
  			[12, 12],
  			[13, 5],
  			[14, 3],
  			[15, 4],
  			[16, 9]
  		];
221dd712   Eugeny Galkovskiy   menu
386
  
06692811   Eugeny Galkovskiy   first commit
387
  		var chart_plot_02_data = [];
221dd712   Eugeny Galkovskiy   menu
388
  
06692811   Eugeny Galkovskiy   first commit
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
  		var chart_plot_03_data = [
  			[0, 1],
  			[1, 9],
  			[2, 6],
  			[3, 10],
  			[4, 5],
  			[5, 17],
  			[6, 6],
  			[7, 10],
  			[8, 7],
  			[9, 11],
  			[10, 35],
  			[11, 9],
  			[12, 12],
  			[13, 5],
  			[14, 3],
  			[15, 4],
  			[16, 9]
  		];
221dd712   Eugeny Galkovskiy   menu
408
409
  
  
06692811   Eugeny Galkovskiy   first commit
410
411
412
  		for (var i = 0; i < 30; i++) {
  		  chart_plot_02_data.push([new Date(Date.today().add(i).days()).getTime(), randNum() + i + i + 10]);
  		}
221dd712   Eugeny Galkovskiy   menu
413
414
  
  
06692811   Eugeny Galkovskiy   first commit
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
  		var chart_plot_01_settings = {
            series: {
              lines: {
                show: false,
                fill: true
              },
              splines: {
                show: true,
                tension: 0.4,
                lineWidth: 1,
                fill: 0.4
              },
              points: {
                radius: 0,
                show: true
              },
              shadowSize: 2
            },
            grid: {
              verticalLines: true,
              hoverable: true,
              clickable: true,
              tickColor: "#d5d5d5",
              borderWidth: 1,
              color: '#fff'
            },
            colors: ["rgba(38, 185, 154, 0.38)", "rgba(3, 88, 106, 0.38)"],
            xaxis: {
              tickColor: "rgba(51, 51, 51, 0.06)",
              mode: "time",
              tickSize: [1, "day"],
              //tickLength: 10,
              axisLabel: "Date",
              axisLabelUseCanvas: true,
              axisLabelFontSizePixels: 12,
              axisLabelFontFamily: 'Verdana, Arial',
              axisLabelPadding: 10
            },
            yaxis: {
              ticks: 8,
              tickColor: "rgba(51, 51, 51, 0.06)",
            },
            tooltip: false
          }
221dd712   Eugeny Galkovskiy   menu
459
  
06692811   Eugeny Galkovskiy   first commit
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
  		var chart_plot_02_settings = {
  			grid: {
  				show: true,
  				aboveData: true,
  				color: "#3f3f3f",
  				labelMargin: 10,
  				axisMargin: 0,
  				borderWidth: 0,
  				borderColor: null,
  				minBorderMargin: 5,
  				clickable: true,
  				hoverable: true,
  				autoHighlight: true,
  				mouseActiveRadius: 100
  			},
  			series: {
  				lines: {
  					show: true,
  					fill: true,
  					lineWidth: 2,
  					steps: false
  				},
  				points: {
  					show: true,
  					radius: 4.5,
  					symbol: "circle",
  					lineWidth: 3.0
  				}
  			},
  			legend: {
  				position: "ne",
  				margin: [0, -25],
  				noColumns: 0,
  				labelBoxBorderColor: null,
  				labelFormatter: function(label, series) {
  					return label + '&nbsp;&nbsp;';
  				},
  				width: 40,
  				height: 1
  			},
  			colors: ['#96CA59', '#3F97EB', '#72c380', '#6f7a8a', '#f7cb38', '#5a8022', '#2c7282'],
  			shadowSize: 0,
  			tooltip: true,
  			tooltipOpts: {
  				content: "%s: %y.0",
  				xDateFormat: "%d/%m",
  			shifts: {
  				x: -30,
  				y: -50
  			},
  			defaultTheme: false
  			},
  			yaxis: {
  				min: 0
  			},
  			xaxis: {
  				mode: "time",
  				minTickSize: [1, "day"],
  				timeformat: "%d/%m/%y",
  				min: chart_plot_02_data[0][0],
  				max: chart_plot_02_data[20][0]
  			}
221dd712   Eugeny Galkovskiy   menu
522
523
  		};
  
06692811   Eugeny Galkovskiy   first commit
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
  		var chart_plot_03_settings = {
  			series: {
  				curvedLines: {
  					apply: true,
  					active: true,
  					monotonicFit: true
  				}
  			},
  			colors: ["#26B99A"],
  			grid: {
  				borderWidth: {
  					top: 0,
  					right: 0,
  					bottom: 1,
  					left: 1
  				},
  				borderColor: {
  					bottom: "#7F8790",
  					left: "#7F8790"
  				}
  			}
  		};
221dd712   Eugeny Galkovskiy   menu
546
547
  
  
06692811   Eugeny Galkovskiy   first commit
548
549
          if ($("#chart_plot_01").length){
  			console.log('Plot1');
221dd712   Eugeny Galkovskiy   menu
550
  
06692811   Eugeny Galkovskiy   first commit
551
552
  			$.plot( $("#chart_plot_01"), [ arr_data1, arr_data2 ],  chart_plot_01_settings );
  		}
221dd712   Eugeny Galkovskiy   menu
553
554
  
  
06692811   Eugeny Galkovskiy   first commit
555
556
  		if ($("#chart_plot_02").length){
  			console.log('Plot2');
221dd712   Eugeny Galkovskiy   menu
557
558
559
560
561
562
563
564
565
566
  
  			$.plot( $("#chart_plot_02"),
  			[{
  				label: "Email Sent",
  				data: chart_plot_02_data,
  				lines: {
  					fillColor: "rgba(150, 202, 89, 0.12)"
  				},
  				points: {
  					fillColor: "#fff" }
06692811   Eugeny Galkovskiy   first commit
567
  			}], chart_plot_02_settings);
221dd712   Eugeny Galkovskiy   menu
568
  
06692811   Eugeny Galkovskiy   first commit
569
  		}
221dd712   Eugeny Galkovskiy   menu
570
  
06692811   Eugeny Galkovskiy   first commit
571
572
  		if ($("#chart_plot_03").length){
  			console.log('Plot3');
221dd712   Eugeny Galkovskiy   menu
573
574
  
  
06692811   Eugeny Galkovskiy   first commit
575
576
577
578
579
  			$.plot($("#chart_plot_03"), [{
  				label: "Registrations",
  				data: chart_plot_03_data,
  				lines: {
  					fillColor: "rgba(150, 202, 89, 0.12)"
221dd712   Eugeny Galkovskiy   menu
580
  				},
06692811   Eugeny Galkovskiy   first commit
581
582
583
584
  				points: {
  					fillColor: "#fff"
  				}
  			}], chart_plot_03_settings);
221dd712   Eugeny Galkovskiy   menu
585
  
06692811   Eugeny Galkovskiy   first commit
586
  		};
221dd712   Eugeny Galkovskiy   menu
587
588
589
590
  
  	}
  
  
06692811   Eugeny Galkovskiy   first commit
591
  	/* STARRR */
221dd712   Eugeny Galkovskiy   menu
592
  
06692811   Eugeny Galkovskiy   first commit
593
  	function init_starrr() {
221dd712   Eugeny Galkovskiy   menu
594
  
06692811   Eugeny Galkovskiy   first commit
595
596
  		if( typeof (starrr) === 'undefined'){ return; }
  		console.log('init_starrr');
221dd712   Eugeny Galkovskiy   menu
597
  
06692811   Eugeny Galkovskiy   first commit
598
599
600
601
602
603
604
605
606
607
608
609
610
  		$(".stars").starrr();
  
  		$('.stars-existing').starrr({
  		  rating: 4
  		});
  
  		$('.stars').on('starrr:change', function (e, value) {
  		  $('.stars-count').html(value);
  		});
  
  		$('.stars-existing').on('starrr:change', function (e, value) {
  		  $('.stars-count-existing').html(value);
  		});
221dd712   Eugeny Galkovskiy   menu
611
  
06692811   Eugeny Galkovskiy   first commit
612
  	  };
221dd712   Eugeny Galkovskiy   menu
613
614
  
  
06692811   Eugeny Galkovskiy   first commit
615
616
  	function init_JQVmap(){
  
221dd712   Eugeny Galkovskiy   menu
617
618
  		//console.log('check init_JQVmap [' + typeof (VectorCanvas) + '][' + typeof (jQuery.fn.vectorMap) + ']' );
  
06692811   Eugeny Galkovskiy   first commit
619
  		if(typeof (jQuery.fn.vectorMap) === 'undefined'){ return; }
221dd712   Eugeny Galkovskiy   menu
620
  
06692811   Eugeny Galkovskiy   first commit
621
  		console.log('init_JQVmap');
221dd712   Eugeny Galkovskiy   menu
622
  
06692811   Eugeny Galkovskiy   first commit
623
  			if ($('#world-map-gdp').length ){
221dd712   Eugeny Galkovskiy   menu
624
  
06692811   Eugeny Galkovskiy   first commit
625
626
627
628
629
630
631
632
633
634
635
636
  				$('#world-map-gdp').vectorMap({
  					map: 'world_en',
  					backgroundColor: null,
  					color: '#ffffff',
  					hoverOpacity: 0.7,
  					selectedColor: '#666666',
  					enableZoom: true,
  					showTooltip: true,
  					values: sample_data,
  					scaleColors: ['#E6F2F0', '#149B7E'],
  					normalizeFunction: 'polynomial'
  				});
221dd712   Eugeny Galkovskiy   menu
637
  
06692811   Eugeny Galkovskiy   first commit
638
  			}
221dd712   Eugeny Galkovskiy   menu
639
  
06692811   Eugeny Galkovskiy   first commit
640
  			if ($('#usa_map').length ){
221dd712   Eugeny Galkovskiy   menu
641
  
06692811   Eugeny Galkovskiy   first commit
642
643
644
645
646
647
648
649
650
651
652
653
  				$('#usa_map').vectorMap({
  					map: 'usa_en',
  					backgroundColor: null,
  					color: '#ffffff',
  					hoverOpacity: 0.7,
  					selectedColor: '#666666',
  					enableZoom: true,
  					showTooltip: true,
  					values: sample_data,
  					scaleColors: ['#E6F2F0', '#149B7E'],
  					normalizeFunction: 'polynomial'
  				});
221dd712   Eugeny Galkovskiy   menu
654
  
06692811   Eugeny Galkovskiy   first commit
655
  			}
221dd712   Eugeny Galkovskiy   menu
656
  
06692811   Eugeny Galkovskiy   first commit
657
  	};
221dd712   Eugeny Galkovskiy   menu
658
659
  
  
06692811   Eugeny Galkovskiy   first commit
660
  	function init_skycons(){
221dd712   Eugeny Galkovskiy   menu
661
  
06692811   Eugeny Galkovskiy   first commit
662
663
  			if( typeof (Skycons) === 'undefined'){ return; }
  			console.log('init_skycons');
221dd712   Eugeny Galkovskiy   menu
664
  
06692811   Eugeny Galkovskiy   first commit
665
666
667
668
669
670
671
672
673
674
675
676
677
678
  			var icons = new Skycons({
  				"color": "#73879C"
  			  }),
  			  list = [
  				"clear-day", "clear-night", "partly-cloudy-day",
  				"partly-cloudy-night", "cloudy", "rain", "sleet", "snow", "wind",
  				"fog"
  			  ],
  			  i;
  
  			for (i = list.length; i--;)
  			  icons.set(list[i], list[i]);
  
  			icons.play();
221dd712   Eugeny Galkovskiy   menu
679
680
681
682
  
  	}
  
  
06692811   Eugeny Galkovskiy   first commit
683
  	function init_chart_doughnut(){
221dd712   Eugeny Galkovskiy   menu
684
  
06692811   Eugeny Galkovskiy   first commit
685
  		if( typeof (Chart) === 'undefined'){ return; }
221dd712   Eugeny Galkovskiy   menu
686
  
06692811   Eugeny Galkovskiy   first commit
687
  		console.log('init_chart_doughnut');
221dd712   Eugeny Galkovskiy   menu
688
  
06692811   Eugeny Galkovskiy   first commit
689
  		if ($('.canvasDoughnut').length){
221dd712   Eugeny Galkovskiy   menu
690
  
06692811   Eugeny Galkovskiy   first commit
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
  		var chart_doughnut_settings = {
  				type: 'doughnut',
  				tooltipFillColor: "rgba(51, 51, 51, 0.55)",
  				data: {
  					labels: [
  						"Symbian",
  						"Blackberry",
  						"Other",
  						"Android",
  						"IOS"
  					],
  					datasets: [{
  						data: [15, 20, 30, 10, 30],
  						backgroundColor: [
  							"#BDC3C7",
  							"#9B59B6",
  							"#E74C3C",
  							"#26B99A",
  							"#3498DB"
  						],
  						hoverBackgroundColor: [
  							"#CFD4D8",
  							"#B370CF",
  							"#E95E4F",
  							"#36CAAB",
  							"#49A9EA"
  						]
  					}]
  				},
221dd712   Eugeny Galkovskiy   menu
720
721
722
  				options: {
  					legend: false,
  					responsive: false
06692811   Eugeny Galkovskiy   first commit
723
724
  				}
  			}
221dd712   Eugeny Galkovskiy   menu
725
  
06692811   Eugeny Galkovskiy   first commit
726
  			$('.canvasDoughnut').each(function(){
221dd712   Eugeny Galkovskiy   menu
727
  
06692811   Eugeny Galkovskiy   first commit
728
729
  				var chart_element = $(this);
  				var chart_doughnut = new Chart( chart_element, chart_doughnut_settings);
221dd712   Eugeny Galkovskiy   menu
730
731
732
733
734
  
  			});
  
  		}
  
06692811   Eugeny Galkovskiy   first commit
735
  	}
221dd712   Eugeny Galkovskiy   menu
736
  
06692811   Eugeny Galkovskiy   first commit
737
  	function init_gauge() {
221dd712   Eugeny Galkovskiy   menu
738
  
06692811   Eugeny Galkovskiy   first commit
739
  		if( typeof (Gauge) === 'undefined'){ return; }
221dd712   Eugeny Galkovskiy   menu
740
  
06692811   Eugeny Galkovskiy   first commit
741
  		console.log('init_gauge [' + $('.gauge-chart').length + ']');
221dd712   Eugeny Galkovskiy   menu
742
  
06692811   Eugeny Galkovskiy   first commit
743
  		console.log('init_gauge');
221dd712   Eugeny Galkovskiy   menu
744
  
06692811   Eugeny Galkovskiy   first commit
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
  
  		  var chart_gauge_settings = {
  		  lines: 12,
  		  angle: 0,
  		  lineWidth: 0.4,
  		  pointer: {
  			  length: 0.75,
  			  strokeWidth: 0.042,
  			  color: '#1D212A'
  		  },
  		  limitMax: 'false',
  		  colorStart: '#1ABC9C',
  		  colorStop: '#1ABC9C',
  		  strokeColor: '#F0F3F3',
  		  generateGradient: true
  	  };
221dd712   Eugeny Galkovskiy   menu
761
762
763
764
  
  
  		if ($('#chart_gauge_01').length){
  
06692811   Eugeny Galkovskiy   first commit
765
766
  			var chart_gauge_01_elem = document.getElementById('chart_gauge_01');
  			var chart_gauge_01 = new Gauge(chart_gauge_01_elem).setOptions(chart_gauge_settings);
221dd712   Eugeny Galkovskiy   menu
767
768
769
770
771
772
  
  		}
  
  
  		if ($('#gauge-text').length){
  
06692811   Eugeny Galkovskiy   first commit
773
774
775
776
  			chart_gauge_01.maxValue = 6000;
  			chart_gauge_01.animationSpeed = 32;
  			chart_gauge_01.set(3200);
  			chart_gauge_01.setTextField(document.getElementById("gauge-text"));
221dd712   Eugeny Galkovskiy   menu
777
  
06692811   Eugeny Galkovskiy   first commit
778
  		}
221dd712   Eugeny Galkovskiy   menu
779
  
06692811   Eugeny Galkovskiy   first commit
780
  		if ($('#chart_gauge_02').length){
221dd712   Eugeny Galkovskiy   menu
781
  
06692811   Eugeny Galkovskiy   first commit
782
783
  			var chart_gauge_02_elem = document.getElementById('chart_gauge_02');
  			var chart_gauge_02 = new Gauge(chart_gauge_02_elem).setOptions(chart_gauge_settings);
221dd712   Eugeny Galkovskiy   menu
784
  
06692811   Eugeny Galkovskiy   first commit
785
  		}
221dd712   Eugeny Galkovskiy   menu
786
787
  
  
06692811   Eugeny Galkovskiy   first commit
788
  		if ($('#gauge-text2').length){
221dd712   Eugeny Galkovskiy   menu
789
  
06692811   Eugeny Galkovskiy   first commit
790
791
792
793
  			chart_gauge_02.maxValue = 9000;
  			chart_gauge_02.animationSpeed = 32;
  			chart_gauge_02.set(2400);
  			chart_gauge_02.setTextField(document.getElementById("gauge-text2"));
221dd712   Eugeny Galkovskiy   menu
794
  
06692811   Eugeny Galkovskiy   first commit
795
  		}
221dd712   Eugeny Galkovskiy   menu
796
797
798
799
  
  
  	}
  
06692811   Eugeny Galkovskiy   first commit
800
  	/* SPARKLINES */
221dd712   Eugeny Galkovskiy   menu
801
  
06692811   Eugeny Galkovskiy   first commit
802
  		function init_sparklines() {
221dd712   Eugeny Galkovskiy   menu
803
  
06692811   Eugeny Galkovskiy   first commit
804
  			if(typeof (jQuery.fn.sparkline) === 'undefined'){ return; }
221dd712   Eugeny Galkovskiy   menu
805
806
807
  			console.log('init_sparklines');
  
  
06692811   Eugeny Galkovskiy   first commit
808
809
810
811
812
813
814
815
816
817
  			$(".sparkline_one").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 4, 5, 6, 3, 5, 4, 5, 4, 5, 4, 3, 4, 5, 6, 7, 5, 4, 3, 5, 6], {
  				type: 'bar',
  				height: '125',
  				barWidth: 13,
  				colorMap: {
  					'7': '#a1a1a1'
  				},
  				barSpacing: 2,
  				barColor: '#26B99A'
  			});
221dd712   Eugeny Galkovskiy   menu
818
819
  
  
06692811   Eugeny Galkovskiy   first commit
820
821
822
823
824
  			$(".sparkline_two").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 7, 5, 4, 3, 5, 6], {
  				type: 'bar',
  				height: '40',
  				barWidth: 9,
  				colorMap: {
221dd712   Eugeny Galkovskiy   menu
825
  					'7': '#a1a1a1'
06692811   Eugeny Galkovskiy   first commit
826
827
828
829
  				},
  				barSpacing: 2,
  				barColor: '#26B99A'
  			});
221dd712   Eugeny Galkovskiy   menu
830
831
  
  
06692811   Eugeny Galkovskiy   first commit
832
833
834
835
836
837
838
839
840
841
  			$(".sparkline_three").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 7, 5, 4, 3, 5, 6], {
  				type: 'line',
  				width: '200',
  				height: '40',
  				lineColor: '#26B99A',
  				fillColor: 'rgba(223, 223, 223, 0.57)',
  				lineWidth: 2,
  				spotColor: '#26B99A',
  				minSpotColor: '#26B99A'
  			});
221dd712   Eugeny Galkovskiy   menu
842
843
  
  
06692811   Eugeny Galkovskiy   first commit
844
845
846
847
848
849
850
851
852
853
  			$(".sparkline11").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 6, 2, 4, 3, 4, 5, 4, 5, 4, 3], {
  				type: 'bar',
  				height: '40',
  				barWidth: 8,
  				colorMap: {
  					'7': '#a1a1a1'
  				},
  				barSpacing: 2,
  				barColor: '#26B99A'
  			});
221dd712   Eugeny Galkovskiy   menu
854
855
  
  
06692811   Eugeny Galkovskiy   first commit
856
857
858
859
860
861
862
863
864
865
  			$(".sparkline22").sparkline([2, 4, 3, 4, 7, 5, 4, 3, 5, 6, 2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 6], {
  				type: 'line',
  				height: '40',
  				width: '200',
  				lineColor: '#26B99A',
  				fillColor: '#ffffff',
  				lineWidth: 3,
  				spotColor: '#34495E',
  				minSpotColor: '#34495E'
  			});
221dd712   Eugeny Galkovskiy   menu
866
867
  
  
06692811   Eugeny Galkovskiy   first commit
868
869
870
871
872
873
874
  			$(".sparkline_bar").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 4, 5, 6, 3, 5], {
  				type: 'bar',
  				colorMap: {
  					'7': '#a1a1a1'
  				},
  				barColor: '#26B99A'
  			});
221dd712   Eugeny Galkovskiy   menu
875
876
  
  
06692811   Eugeny Galkovskiy   first commit
877
878
879
880
881
882
883
884
885
886
887
888
  			$(".sparkline_area").sparkline([5, 6, 7, 9, 9, 5, 3, 2, 2, 4, 6, 7], {
  				type: 'line',
  				lineColor: '#26B99A',
  				fillColor: '#26B99A',
  				spotColor: '#4578a0',
  				minSpotColor: '#728fb2',
  				maxSpotColor: '#6d93c4',
  				highlightSpotColor: '#ef5179',
  				highlightLineColor: '#8ba8bf',
  				spotRadius: 2.5,
  				width: 85
  			});
221dd712   Eugeny Galkovskiy   menu
889
890
  
  
06692811   Eugeny Galkovskiy   first commit
891
892
893
894
895
896
897
898
  			$(".sparkline_line").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 4, 5, 6, 3, 5], {
  				type: 'line',
  				lineColor: '#26B99A',
  				fillColor: '#ffffff',
  				width: 85,
  				spotColor: '#34495E',
  				minSpotColor: '#34495E'
  			});
221dd712   Eugeny Galkovskiy   menu
899
900
  
  
06692811   Eugeny Galkovskiy   first commit
901
902
903
904
  			$(".sparkline_pie").sparkline([1, 1, 2, 1], {
  				type: 'pie',
  				sliceColors: ['#26B99A', '#ccc', '#75BCDD', '#D66DE2']
  			});
221dd712   Eugeny Galkovskiy   menu
905
906
  
  
06692811   Eugeny Galkovskiy   first commit
907
908
909
910
911
912
913
  			$(".sparkline_discreet").sparkline([4, 6, 7, 7, 4, 3, 2, 1, 4, 4, 2, 4, 3, 7, 8, 9, 7, 6, 4, 3], {
  				type: 'discrete',
  				barWidth: 3,
  				lineColor: '#26B99A',
  				width: '85',
  			});
  
221dd712   Eugeny Galkovskiy   menu
914
915
916
917
  
  		};
  
  
06692811   Eugeny Galkovskiy   first commit
918
  	   /* AUTOCOMPLETE */
221dd712   Eugeny Galkovskiy   menu
919
  
06692811   Eugeny Galkovskiy   first commit
920
  		function init_autocomplete() {
221dd712   Eugeny Galkovskiy   menu
921
  
06692811   Eugeny Galkovskiy   first commit
922
923
  			if( typeof (autocomplete) === 'undefined'){ return; }
  			console.log('init_autocomplete');
221dd712   Eugeny Galkovskiy   menu
924
  
06692811   Eugeny Galkovskiy   first commit
925
926
927
928
929
930
931
932
933
934
935
936
937
  			var countries = { AD:"Andorra",A2:"Andorra Test",AE:"United Arab Emirates",AF:"Afghanistan",AG:"Antigua and Barbuda",AI:"Anguilla",AL:"Albania",AM:"Armenia",AN:"Netherlands Antilles",AO:"Angola",AQ:"Antarctica",AR:"Argentina",AS:"American Samoa",AT:"Austria",AU:"Australia",AW:"Aruba",AX:"Åland Islands",AZ:"Azerbaijan",BA:"Bosnia and Herzegovina",BB:"Barbados",BD:"Bangladesh",BE:"Belgium",BF:"Burkina Faso",BG:"Bulgaria",BH:"Bahrain",BI:"Burundi",BJ:"Benin",BL:"Saint Barthélemy",BM:"Bermuda",BN:"Brunei",BO:"Bolivia",BQ:"British Antarctic Territory",BR:"Brazil",BS:"Bahamas",BT:"Bhutan",BV:"Bouvet Island",BW:"Botswana",BY:"Belarus",BZ:"Belize",CA:"Canada",CC:"Cocos [Keeling] Islands",CD:"Congo - Kinshasa",CF:"Central African Republic",CG:"Congo - Brazzaville",CH:"Switzerland",CI:"Côte d’Ivoire",CK:"Cook Islands",CL:"Chile",CM:"Cameroon",CN:"China",CO:"Colombia",CR:"Costa Rica",CS:"Serbia and Montenegro",CT:"Canton and Enderbury Islands",CU:"Cuba",CV:"Cape Verde",CX:"Christmas Island",CY:"Cyprus",CZ:"Czech Republic",DD:"East Germany",DE:"Germany",DJ:"Djibouti",DK:"Denmark",DM:"Dominica",DO:"Dominican Republic",DZ:"Algeria",EC:"Ecuador",EE:"Estonia",EG:"Egypt",EH:"Western Sahara",ER:"Eritrea",ES:"Spain",ET:"Ethiopia",FI:"Finland",FJ:"Fiji",FK:"Falkland Islands",FM:"Micronesia",FO:"Faroe Islands",FQ:"French Southern and Antarctic Territories",FR:"France",FX:"Metropolitan France",GA:"Gabon",GB:"United Kingdom",GD:"Grenada",GE:"Georgia",GF:"French Guiana",GG:"Guernsey",GH:"Ghana",GI:"Gibraltar",GL:"Greenland",GM:"Gambia",GN:"Guinea",GP:"Guadeloupe",GQ:"Equatorial Guinea",GR:"Greece",GS:"South Georgia and the South Sandwich Islands",GT:"Guatemala",GU:"Guam",GW:"Guinea-Bissau",GY:"Guyana",HK:"Hong Kong SAR China",HM:"Heard Island and McDonald Islands",HN:"Honduras",HR:"Croatia",HT:"Haiti",HU:"Hungary",ID:"Indonesia",IE:"Ireland",IL:"Israel",IM:"Isle of Man",IN:"India",IO:"British Indian Ocean Territory",IQ:"Iraq",IR:"Iran",IS:"Iceland",IT:"Italy",JE:"Jersey",JM:"Jamaica",JO:"Jordan",JP:"Japan",JT:"Johnston Island",KE:"Kenya",KG:"Kyrgyzstan",KH:"Cambodia",KI:"Kiribati",KM:"Comoros",KN:"Saint Kitts and Nevis",KP:"North Korea",KR:"South Korea",KW:"Kuwait",KY:"Cayman Islands",KZ:"Kazakhstan",LA:"Laos",LB:"Lebanon",LC:"Saint Lucia",LI:"Liechtenstein",LK:"Sri Lanka",LR:"Liberia",LS:"Lesotho",LT:"Lithuania",LU:"Luxembourg",LV:"Latvia",LY:"Libya",MA:"Morocco",MC:"Monaco",MD:"Moldova",ME:"Montenegro",MF:"Saint Martin",MG:"Madagascar",MH:"Marshall Islands",MI:"Midway Islands",MK:"Macedonia",ML:"Mali",MM:"Myanmar [Burma]",MN:"Mongolia",MO:"Macau SAR China",MP:"Northern Mariana Islands",MQ:"Martinique",MR:"Mauritania",MS:"Montserrat",MT:"Malta",MU:"Mauritius",MV:"Maldives",MW:"Malawi",MX:"Mexico",MY:"Malaysia",MZ:"Mozambique",NA:"Namibia",NC:"New Caledonia",NE:"Niger",NF:"Norfolk Island",NG:"Nigeria",NI:"Nicaragua",NL:"Netherlands",NO:"Norway",NP:"Nepal",NQ:"Dronning Maud Land",NR:"Nauru",NT:"Neutral Zone",NU:"Niue",NZ:"New Zealand",OM:"Oman",PA:"Panama",PC:"Pacific Islands Trust Territory",PE:"Peru",PF:"French Polynesia",PG:"Papua New Guinea",PH:"Philippines",PK:"Pakistan",PL:"Poland",PM:"Saint Pierre and Miquelon",PN:"Pitcairn Islands",PR:"Puerto Rico",PS:"Palestinian Territories",PT:"Portugal",PU:"U.S. Miscellaneous Pacific Islands",PW:"Palau",PY:"Paraguay",PZ:"Panama Canal Zone",QA:"Qatar",RE:"Réunion",RO:"Romania",RS:"Serbia",RU:"Russia",RW:"Rwanda",SA:"Saudi Arabia",SB:"Solomon Islands",SC:"Seychelles",SD:"Sudan",SE:"Sweden",SG:"Singapore",SH:"Saint Helena",SI:"Slovenia",SJ:"Svalbard and Jan Mayen",SK:"Slovakia",SL:"Sierra Leone",SM:"San Marino",SN:"Senegal",SO:"Somalia",SR:"Suriname",ST:"São Tomé and Príncipe",SU:"Union of Soviet Socialist Republics",SV:"El Salvador",SY:"Syria",SZ:"Swaziland",TC:"Turks and Caicos Islands",TD:"Chad",TF:"French Southern Territories",TG:"Togo",TH:"Thailand",TJ:"Tajikistan",TK:"Tokelau",TL:"Timor-Leste",TM:"Turkmenistan",TN:"Tunisia",TO:"Tonga",TR:"Turkey",TT:"Trinidad and Tobago",TV:"Tuvalu",TW:"Taiwan",TZ:"Tanzania",UA:"Ukraine",UG:"Uganda",UM:"U.S. Minor Outlying Islands",US:"United States",UY:"Uruguay",UZ:"Uzbekistan",VA:"Vatican City",VC:"Saint Vincent and the Grenadines",VD:"North Vietnam",VE:"Venezuela",VG:"British Virgin Islands",VI:"U.S. Virgin Islands",VN:"Vietnam",VU:"Vanuatu",WF:"Wallis and Futuna",WK:"Wake Island",WS:"Samoa",YD:"People's Democratic Republic of Yemen",YE:"Yemen",YT:"Mayotte",ZA:"South Africa",ZM:"Zambia",ZW:"Zimbabwe",ZZ:"Unknown or Invalid Region" };
  
  			var countriesArray = $.map(countries, function(value, key) {
  			  return {
  				value: value,
  				data: key
  			  };
  			});
  
  			// initialize autocomplete with custom appendTo
  			$('#autocomplete-custom-append').autocomplete({
  			  lookup: countriesArray
  			});
221dd712   Eugeny Galkovskiy   menu
938
  
06692811   Eugeny Galkovskiy   first commit
939
  		};
221dd712   Eugeny Galkovskiy   menu
940
  
06692811   Eugeny Galkovskiy   first commit
941
  	 /* AUTOSIZE */
221dd712   Eugeny Galkovskiy   menu
942
  
06692811   Eugeny Galkovskiy   first commit
943
  		function init_autosize() {
221dd712   Eugeny Galkovskiy   menu
944
  
06692811   Eugeny Galkovskiy   first commit
945
  			if(typeof $.fn.autosize !== 'undefined'){
221dd712   Eugeny Galkovskiy   menu
946
  
06692811   Eugeny Galkovskiy   first commit
947
  			autosize($('.resizable_textarea'));
221dd712   Eugeny Galkovskiy   menu
948
  
06692811   Eugeny Galkovskiy   first commit
949
  			}
221dd712   Eugeny Galkovskiy   menu
950
951
952
  
  		};
  
06692811   Eugeny Galkovskiy   first commit
953
  	   /* PARSLEY */
221dd712   Eugeny Galkovskiy   menu
954
  
06692811   Eugeny Galkovskiy   first commit
955
  		function init_parsley() {
221dd712   Eugeny Galkovskiy   menu
956
  
06692811   Eugeny Galkovskiy   first commit
957
958
  			if( typeof (parsley) === 'undefined'){ return; }
  			console.log('init_parsley');
221dd712   Eugeny Galkovskiy   menu
959
  
06692811   Eugeny Galkovskiy   first commit
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
  			$/*.listen*/('parsley:field:validate', function() {
  			  validateFront();
  			});
  			$('#demo-form .btn').on('click', function() {
  			  $('#demo-form').parsley().validate();
  			  validateFront();
  			});
  			var validateFront = function() {
  			  if (true === $('#demo-form').parsley().isValid()) {
  				$('.bs-callout-info').removeClass('hidden');
  				$('.bs-callout-warning').addClass('hidden');
  			  } else {
  				$('.bs-callout-info').addClass('hidden');
  				$('.bs-callout-warning').removeClass('hidden');
  			  }
  			};
221dd712   Eugeny Galkovskiy   menu
976
  
06692811   Eugeny Galkovskiy   first commit
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
  			$/*.listen*/('parsley:field:validate', function() {
  			  validateFront();
  			});
  			$('#demo-form2 .btn').on('click', function() {
  			  $('#demo-form2').parsley().validate();
  			  validateFront();
  			});
  			var validateFront = function() {
  			  if (true === $('#demo-form2').parsley().isValid()) {
  				$('.bs-callout-info').removeClass('hidden');
  				$('.bs-callout-warning').addClass('hidden');
  			  } else {
  				$('.bs-callout-info').addClass('hidden');
  				$('.bs-callout-warning').removeClass('hidden');
  			  }
  			};
221dd712   Eugeny Galkovskiy   menu
993
  
06692811   Eugeny Galkovskiy   first commit
994
995
996
  			  try {
  				hljs.initHighlightingOnLoad();
  			  } catch (err) {}
221dd712   Eugeny Galkovskiy   menu
997
  
06692811   Eugeny Galkovskiy   first commit
998
  		};
221dd712   Eugeny Galkovskiy   menu
999
1000
  
  
06692811   Eugeny Galkovskiy   first commit
1001
  		  /* INPUTS */
221dd712   Eugeny Galkovskiy   menu
1002
  
06692811   Eugeny Galkovskiy   first commit
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
  			function onAddTag(tag) {
  				alert("Added a tag: " + tag);
  			  }
  
  			  function onRemoveTag(tag) {
  				alert("Removed a tag: " + tag);
  			  }
  
  			  function onChangeTag(input, tag) {
  				alert("Changed a tag: " + tag);
  			  }
  
  			  //tags input
  			function init_TagsInput() {
221dd712   Eugeny Galkovskiy   menu
1017
1018
1019
  
  				if(typeof $.fn.tagsInput !== 'undefined'){
  
06692811   Eugeny Galkovskiy   first commit
1020
1021
1022
  				$('#tags_1').tagsInput({
  				  width: 'auto'
  				});
221dd712   Eugeny Galkovskiy   menu
1023
  
06692811   Eugeny Galkovskiy   first commit
1024
  				}
221dd712   Eugeny Galkovskiy   menu
1025
  
06692811   Eugeny Galkovskiy   first commit
1026
  		    };
221dd712   Eugeny Galkovskiy   menu
1027
  
06692811   Eugeny Galkovskiy   first commit
1028
  		/* SELECT2 */
221dd712   Eugeny Galkovskiy   menu
1029
  
06692811   Eugeny Galkovskiy   first commit
1030
  		function init_select2() {
221dd712   Eugeny Galkovskiy   menu
1031
  
06692811   Eugeny Galkovskiy   first commit
1032
1033
  			if( typeof (select2) === 'undefined'){ return; }
  			console.log('init_toolbox');
221dd712   Eugeny Galkovskiy   menu
1034
  
06692811   Eugeny Galkovskiy   first commit
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
  			$(".select2_single").select2({
  			  placeholder: "Select a state",
  			  allowClear: true
  			});
  			$(".select2_group").select2({});
  			$(".select2_multiple").select2({
  			  maximumSelectionLength: 4,
  			  placeholder: "With Max Selection limit 4",
  			  allowClear: true
  			});
221dd712   Eugeny Galkovskiy   menu
1045
  
06692811   Eugeny Galkovskiy   first commit
1046
  		};
221dd712   Eugeny Galkovskiy   menu
1047
  
06692811   Eugeny Galkovskiy   first commit
1048
1049
1050
  	   /* WYSIWYG EDITOR */
  
  		function init_wysiwyg() {
221dd712   Eugeny Galkovskiy   menu
1051
  
06692811   Eugeny Galkovskiy   first commit
1052
  		if( typeof ($.fn.wysiwyg) === 'undefined'){ return; }
221dd712   Eugeny Galkovskiy   menu
1053
1054
  		console.log('init_wysiwyg');
  
06692811   Eugeny Galkovskiy   first commit
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
          function init_ToolbarBootstrapBindings() {
            var fonts = ['Serif', 'Sans', 'Arial', 'Arial Black', 'Courier',
                'Courier New', 'Comic Sans MS', 'Helvetica', 'Impact', 'Lucida Grande', 'Lucida Sans', 'Tahoma', 'Times',
                'Times New Roman', 'Verdana'
              ],
              fontTarget = $('[title=Font]').siblings('.dropdown-menu');
            $.each(fonts, function(idx, fontName) {
              fontTarget.append($('<li><a data-edit="fontName ' + fontName + '" style="font-family:\'' + fontName + '\'">' + fontName + '</a></li>'));
            });
            $('a[title]').tooltip({
              container: 'body'
            });
            $('.dropdown-menu input').click(function() {
                return false;
              })
              .change(function() {
                $(this).parent('.dropdown-menu').siblings('.dropdown-toggle').dropdown('toggle');
              })
              .keydown('esc', function() {
                this.value = '';
                $(this).change();
              });
  
            $('[data-role=magic-overlay]').each(function() {
              var overlay = $(this),
                target = $(overlay.data('target'));
              overlay.css('opacity', 0).css('position', 'absolute').offset(target.offset()).width(target.outerWidth()).height(target.outerHeight());
            });
  
            if ("onwebkitspeechchange" in document.createElement("input")) {
              var editorOffset = $('#editor').offset();
  
              $('.voiceBtn').css('position', 'absolute').offset({
                top: editorOffset.top,
                left: editorOffset.left + $('#editor').innerWidth() - 35
              });
            } else {
              $('.voiceBtn').hide();
            }
          }
  
          function showErrorAlert(reason, detail) {
            var msg = '';
            if (reason === 'unsupported-file-type') {
              msg = "Unsupported format " + detail;
            } else {
              console.log("error uploading file", reason, detail);
            }
            $('<div class="alert"> <button type="button" class="close" data-dismiss="alert">&times;</button>' +
              '<strong>File upload error</strong> ' + msg + ' </div>').prependTo('#alerts');
          }
  
         $('.editor-wrapper').each(function(){
  			var id = $(this).attr('id');	//editor-one
221dd712   Eugeny Galkovskiy   menu
1109
  
06692811   Eugeny Galkovskiy   first commit
1110
1111
1112
  			$(this).wysiwyg({
  				toolbarSelector: '[data-target="#' + id + '"]',
  				fileUploadError: showErrorAlert
221dd712   Eugeny Galkovskiy   menu
1113
  			});
06692811   Eugeny Galkovskiy   first commit
1114
  		});
221dd712   Eugeny Galkovskiy   menu
1115
1116
  
  
06692811   Eugeny Galkovskiy   first commit
1117
1118
          window.prettyPrint;
          prettyPrint();
221dd712   Eugeny Galkovskiy   menu
1119
  
06692811   Eugeny Galkovskiy   first commit
1120
      };
221dd712   Eugeny Galkovskiy   menu
1121
  
06692811   Eugeny Galkovskiy   first commit
1122
  	/* CROPPER */
221dd712   Eugeny Galkovskiy   menu
1123
  
06692811   Eugeny Galkovskiy   first commit
1124
  		function init_cropper() {
221dd712   Eugeny Galkovskiy   menu
1125
1126
  
  
06692811   Eugeny Galkovskiy   first commit
1127
1128
  			if( typeof ($.fn.cropper) === 'undefined'){ return; }
  			console.log('init_cropper');
221dd712   Eugeny Galkovskiy   menu
1129
  
06692811   Eugeny Galkovskiy   first commit
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
  			var $image = $('#image');
  			var $download = $('#download');
  			var $dataX = $('#dataX');
  			var $dataY = $('#dataY');
  			var $dataHeight = $('#dataHeight');
  			var $dataWidth = $('#dataWidth');
  			var $dataRotate = $('#dataRotate');
  			var $dataScaleX = $('#dataScaleX');
  			var $dataScaleY = $('#dataScaleY');
  			var options = {
  				  aspectRatio: 16 / 9,
  				  preview: '.img-preview',
  				  crop: function (e) {
  					$dataX.val(Math.round(e.x));
  					$dataY.val(Math.round(e.y));
  					$dataHeight.val(Math.round(e.height));
  					$dataWidth.val(Math.round(e.width));
  					$dataRotate.val(e.rotate);
  					$dataScaleX.val(e.scaleX);
  					$dataScaleY.val(e.scaleY);
  				  }
  				};
  
  
  			// Tooltip
  			$('[data-toggle="tooltip"]').tooltip();
  
  
  			// Cropper
  			$image.on({
  			  'build.cropper': function (e) {
  				console.log(e.type);
  			  },
  			  'built.cropper': function (e) {
  				console.log(e.type);
  			  },
  			  'cropstart.cropper': function (e) {
  				console.log(e.type, e.action);
  			  },
  			  'cropmove.cropper': function (e) {
  				console.log(e.type, e.action);
  			  },
  			  'cropend.cropper': function (e) {
  				console.log(e.type, e.action);
  			  },
  			  'crop.cropper': function (e) {
  				console.log(e.type, e.x, e.y, e.width, e.height, e.rotate, e.scaleX, e.scaleY);
  			  },
  			  'zoom.cropper': function (e) {
  				console.log(e.type, e.ratio);
  			  }
  			}).cropper(options);
  
  
  			// Buttons
  			if (!$.isFunction(document.createElement('canvas').getContext)) {
  			  $('button[data-method="getCroppedCanvas"]').prop('disabled', true);
  			}
  
  			if (typeof document.createElement('cropper').style.transition === 'undefined') {
  			  $('button[data-method="rotate"]').prop('disabled', true);
  			  $('button[data-method="scale"]').prop('disabled', true);
  			}
  
  
  			// Download
  			if (typeof $download[0].download === 'undefined') {
  			  $download.addClass('disabled');
  			}
  
  
  			// Options
  			$('.docs-toggles').on('change', 'input', function () {
  			  var $this = $(this);
  			  var name = $this.attr('name');
  			  var type = $this.prop('type');
  			  var cropBoxData;
  			  var canvasData;
  
  			  if (!$image.data('cropper')) {
  				return;
  			  }
  
  			  if (type === 'checkbox') {
  				options[name] = $this.prop('checked');
  				cropBoxData = $image.cropper('getCropBoxData');
  				canvasData = $image.cropper('getCanvasData');
  
  				options.built = function () {
  				  $image.cropper('setCropBoxData', cropBoxData);
  				  $image.cropper('setCanvasData', canvasData);
  				};
  			  } else if (type === 'radio') {
  				options[name] = $this.val();
  			  }
  
  			  $image.cropper('destroy').cropper(options);
  			});
  
  
  			// Methods
  			$('.docs-buttons').on('click', '[data-method]', function () {
  			  var $this = $(this);
  			  var data = $this.data();
  			  var $target;
  			  var result;
  
  			  if ($this.prop('disabled') || $this.hasClass('disabled')) {
  				return;
  			  }
  
  			  if ($image.data('cropper') && data.method) {
  				data = $.extend({}, data); // Clone a new one
  
  				if (typeof data.target !== 'undefined') {
  				  $target = $(data.target);
  
  				  if (typeof data.option === 'undefined') {
  					try {
  					  data.option = JSON.parse($target.val());
  					} catch (e) {
  					  console.log(e.message);
  					}
  				  }
  				}
  
  				result = $image.cropper(data.method, data.option, data.secondOption);
  
  				switch (data.method) {
  				  case 'scaleX':
  				  case 'scaleY':
  					$(this).data('option', -data.option);
  					break;
  
  				  case 'getCroppedCanvas':
  					if (result) {
  
  					  // Bootstrap's Modal
  					  $('#getCroppedCanvasModal').modal().find('.modal-body').html(result);
  
  					  if (!$download.hasClass('disabled')) {
  						$download.attr('href', result.toDataURL());
  					  }
  					}
  
  					break;
  				}
  
  				if ($.isPlainObject(result) && $target) {
  				  try {
  					$target.val(JSON.stringify(result));
  				  } catch (e) {
  					console.log(e.message);
  				  }
  				}
  
  			  }
  			});
  
  			// Keyboard
  			$(document.body).on('keydown', function (e) {
  			  if (!$image.data('cropper') || this.scrollTop > 300) {
  				return;
  			  }
  
  			  switch (e.which) {
  				case 37:
  				  e.preventDefault();
  				  $image.cropper('move', -1, 0);
  				  break;
  
  				case 38:
  				  e.preventDefault();
  				  $image.cropper('move', 0, -1);
  				  break;
  
  				case 39:
  				  e.preventDefault();
  				  $image.cropper('move', 1, 0);
  				  break;
  
  				case 40:
  				  e.preventDefault();
  				  $image.cropper('move', 0, 1);
  				  break;
  			  }
  			});
  
  			// Import image
  			var $inputImage = $('#inputImage');
  			var URL = window.URL || window.webkitURL;
  			var blobURL;
  
  			if (URL) {
  			  $inputImage.change(function () {
  				var files = this.files;
  				var file;
  
  				if (!$image.data('cropper')) {
  				  return;
  				}
  
  				if (files && files.length) {
  				  file = files[0];
  
  				  if (/^image\/\w+$/.test(file.type)) {
  					blobURL = URL.createObjectURL(file);
  					$image.one('built.cropper', function () {
  
  					  // Revoke when load complete
  					  URL.revokeObjectURL(blobURL);
  					}).cropper('reset').cropper('replace', blobURL);
  					$inputImage.val('');
  				  } else {
  					window.alert('Please choose an image file.');
  				  }
  				}
  			  });
  			} else {
  			  $inputImage.prop('disabled', true).parent().addClass('disabled');
  			}
221dd712   Eugeny Galkovskiy   menu
1351
1352
  
  
06692811   Eugeny Galkovskiy   first commit
1353
  		};
221dd712   Eugeny Galkovskiy   menu
1354
1355
1356
  
  		/* CROPPER --- end */
  
06692811   Eugeny Galkovskiy   first commit
1357
  		/* KNOB */
221dd712   Eugeny Galkovskiy   menu
1358
  
06692811   Eugeny Galkovskiy   first commit
1359
  		function init_knob() {
221dd712   Eugeny Galkovskiy   menu
1360
  
06692811   Eugeny Galkovskiy   first commit
1361
1362
  				if( typeof ($.fn.knob) === 'undefined'){ return; }
  				console.log('init_knob');
221dd712   Eugeny Galkovskiy   menu
1363
  
06692811   Eugeny Galkovskiy   first commit
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
  				$(".knob").knob({
  				  change: function(value) {
  					//console.log("change : " + value);
  				  },
  				  release: function(value) {
  					//console.log(this.$.attr('value'));
  					console.log("release : " + value);
  				  },
  				  cancel: function() {
  					console.log("cancel : ", this);
  				  },
  				  /*format : function (value) {
  				   return value + '%';
  				   },*/
  				  draw: function() {
  
  					// "tron" case
  					if (this.$.data('skin') == 'tron') {
  
  					  this.cursorExt = 0.3;
  
  					  var a = this.arc(this.cv) // Arc
  						,
  						pa // Previous arc
  						, r = 1;
  
  					  this.g.lineWidth = this.lineWidth;
  
  					  if (this.o.displayPrevious) {
  						pa = this.arc(this.v);
  						this.g.beginPath();
  						this.g.strokeStyle = this.pColor;
  						this.g.arc(this.xy, this.xy, this.radius - this.lineWidth, pa.s, pa.e, pa.d);
  						this.g.stroke();
  					  }
  
  					  this.g.beginPath();
  					  this.g.strokeStyle = r ? this.o.fgColor : this.fgColor;
  					  this.g.arc(this.xy, this.xy, this.radius - this.lineWidth, a.s, a.e, a.d);
  					  this.g.stroke();
  
  					  this.g.lineWidth = 2;
  					  this.g.beginPath();
  					  this.g.strokeStyle = this.o.fgColor;
  					  this.g.arc(this.xy, this.xy, this.radius - this.lineWidth + 1 + this.lineWidth * 2 / 3, 0, 2 * Math.PI, false);
  					  this.g.stroke();
  
  					  return false;
  					}
  				  }
221dd712   Eugeny Galkovskiy   menu
1414
  
06692811   Eugeny Galkovskiy   first commit
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
  				});
  
  				// Example of infinite knob, iPod click wheel
  				var v, up = 0,
  				  down = 0,
  				  i = 0,
  				  $idir = $("div.idir"),
  				  $ival = $("div.ival"),
  				  incr = function() {
  					i++;
  					$idir.show().html("+").fadeOut();
  					$ival.html(i);
  				  },
  				  decr = function() {
  					i--;
  					$idir.show().html("-").fadeOut();
  					$ival.html(i);
  				  };
  				$("input.infinite").knob({
  				  min: 0,
  				  max: 20,
  				  stopper: false,
  				  change: function() {
  					if (v > this.cv) {
  					  if (up) {
  						decr();
  						up = 0;
  					  } else {
  						up = 1;
  						down = 0;
  					  }
  					} else {
  					  if (v < this.cv) {
  						if (down) {
  						  incr();
  						  down = 0;
  						} else {
  						  down = 1;
  						  up = 0;
  						}
  					  }
  					}
  					v = this.cv;
  				  }
  				});
221dd712   Eugeny Galkovskiy   menu
1460
  
06692811   Eugeny Galkovskiy   first commit
1461
  		};
221dd712   Eugeny Galkovskiy   menu
1462
  
06692811   Eugeny Galkovskiy   first commit
1463
  		/* INPUT MASK */
221dd712   Eugeny Galkovskiy   menu
1464
  
06692811   Eugeny Galkovskiy   first commit
1465
  		function init_InputMask() {
221dd712   Eugeny Galkovskiy   menu
1466
  
06692811   Eugeny Galkovskiy   first commit
1467
1468
  			if( typeof ($.fn.inputmask) === 'undefined'){ return; }
  			console.log('init_InputMask');
221dd712   Eugeny Galkovskiy   menu
1469
  
06692811   Eugeny Galkovskiy   first commit
1470
  				$(":input").inputmask();
221dd712   Eugeny Galkovskiy   menu
1471
  
06692811   Eugeny Galkovskiy   first commit
1472
  		};
221dd712   Eugeny Galkovskiy   menu
1473
  
06692811   Eugeny Galkovskiy   first commit
1474
  		/* COLOR PICKER */
221dd712   Eugeny Galkovskiy   menu
1475
  
06692811   Eugeny Galkovskiy   first commit
1476
  		function init_ColorPicker() {
221dd712   Eugeny Galkovskiy   menu
1477
  
06692811   Eugeny Galkovskiy   first commit
1478
1479
  			if( typeof ($.fn.colorpicker) === 'undefined'){ return; }
  			console.log('init_ColorPicker');
221dd712   Eugeny Galkovskiy   menu
1480
  
06692811   Eugeny Galkovskiy   first commit
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
  				$('.demo1').colorpicker();
  				$('.demo2').colorpicker();
  
  				$('#demo_forceformat').colorpicker({
  					format: 'rgba',
  					horizontal: true
  				});
  
  				$('#demo_forceformat3').colorpicker({
  					format: 'rgba',
  				});
  
  				$('.demo-auto').colorpicker();
221dd712   Eugeny Galkovskiy   menu
1494
1495
1496
1497
  
  		};
  
  
06692811   Eugeny Galkovskiy   first commit
1498
  		/* ION RANGE SLIDER */
221dd712   Eugeny Galkovskiy   menu
1499
  
06692811   Eugeny Galkovskiy   first commit
1500
  		function init_IonRangeSlider() {
221dd712   Eugeny Galkovskiy   menu
1501
  
06692811   Eugeny Galkovskiy   first commit
1502
1503
  			if( typeof ($.fn.ionRangeSlider) === 'undefined'){ return; }
  			console.log('init_IonRangeSlider');
221dd712   Eugeny Galkovskiy   menu
1504
  
06692811   Eugeny Galkovskiy   first commit
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
  			$("#range_27").ionRangeSlider({
  			  type: "double",
  			  min: 1000000,
  			  max: 2000000,
  			  grid: true,
  			  force_edges: true
  			});
  			$("#range").ionRangeSlider({
  			  hide_min_max: true,
  			  keyboard: true,
  			  min: 0,
  			  max: 5000,
  			  from: 1000,
  			  to: 4000,
  			  type: 'double',
  			  step: 1,
  			  prefix: "$",
  			  grid: true
  			});
  			$("#range_25").ionRangeSlider({
  			  type: "double",
  			  min: 1000000,
  			  max: 2000000,
  			  grid: true
  			});
  			$("#range_26").ionRangeSlider({
  			  type: "double",
  			  min: 0,
  			  max: 10000,
  			  step: 500,
  			  grid: true,
  			  grid_snap: true
  			});
  			$("#range_31").ionRangeSlider({
  			  type: "double",
  			  min: 0,
  			  max: 100,
  			  from: 30,
  			  to: 70,
  			  from_fixed: true
  			});
  			$(".range_min_max").ionRangeSlider({
  			  type: "double",
  			  min: 0,
  			  max: 100,
  			  from: 30,
  			  to: 70,
  			  max_interval: 50
  			});
  			$(".range_time24").ionRangeSlider({
  			  min: +moment().subtract(12, "hours").format("X"),
  			  max: +moment().format("X"),
  			  from: +moment().subtract(6, "hours").format("X"),
  			  grid: true,
  			  force_edges: true,
  			  prettify: function(num) {
  				var m = moment(num, "X");
  				return m.format("Do MMMM, HH:mm");
  			  }
  			});
221dd712   Eugeny Galkovskiy   menu
1565
  
06692811   Eugeny Galkovskiy   first commit
1566
  		};
221dd712   Eugeny Galkovskiy   menu
1567
1568
  
  
06692811   Eugeny Galkovskiy   first commit
1569
  	   /* DATERANGEPICKER */
221dd712   Eugeny Galkovskiy   menu
1570
  
06692811   Eugeny Galkovskiy   first commit
1571
1572
1573
1574
  		function init_daterangepicker() {
  
  			if( typeof ($.fn.daterangepicker) === 'undefined'){ return; }
  			console.log('init_daterangepicker');
221dd712   Eugeny Galkovskiy   menu
1575
  
06692811   Eugeny Galkovskiy   first commit
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
  			var cb = function(start, end, label) {
  			  console.log(start.toISOString(), end.toISOString(), label);
  			  $('#reportrange span').html(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY'));
  			};
  
  			var optionSet1 = {
  			  startDate: moment().subtract(29, 'days'),
  			  endDate: moment(),
  			  minDate: '01/01/2012',
  			  maxDate: '12/31/2015',
  			  dateLimit: {
  				days: 60
  			  },
  			  showDropdowns: true,
  			  showWeekNumbers: true,
  			  timePicker: false,
  			  timePickerIncrement: 1,
  			  timePicker12Hour: true,
  			  ranges: {
  				'Today': [moment(), moment()],
  				'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
  				'Last 7 Days': [moment().subtract(6, 'days'), moment()],
  				'Last 30 Days': [moment().subtract(29, 'days'), moment()],
  				'This Month': [moment().startOf('month'), moment().endOf('month')],
  				'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
  			  },
  			  opens: 'left',
  			  buttonClasses: ['btn btn-default'],
  			  applyClass: 'btn-small btn-primary',
  			  cancelClass: 'btn-small',
  			  format: 'MM/DD/YYYY',
  			  separator: ' to ',
  			  locale: {
  				applyLabel: 'Submit',
  				cancelLabel: 'Clear',
  				fromLabel: 'From',
  				toLabel: 'To',
  				customRangeLabel: 'Custom',
  				daysOfWeek: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
  				monthNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
  				firstDay: 1
  			  }
  			};
221dd712   Eugeny Galkovskiy   menu
1619
  
06692811   Eugeny Galkovskiy   first commit
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
  			$('#reportrange span').html(moment().subtract(29, 'days').format('MMMM D, YYYY') + ' - ' + moment().format('MMMM D, YYYY'));
  			$('#reportrange').daterangepicker(optionSet1, cb);
  			$('#reportrange').on('show.daterangepicker', function() {
  			  console.log("show event fired");
  			});
  			$('#reportrange').on('hide.daterangepicker', function() {
  			  console.log("hide event fired");
  			});
  			$('#reportrange').on('apply.daterangepicker', function(ev, picker) {
  			  console.log("apply event fired, start/end dates are " + picker.startDate.format('MMMM D, YYYY') + " to " + picker.endDate.format('MMMM D, YYYY'));
  			});
  			$('#reportrange').on('cancel.daterangepicker', function(ev, picker) {
  			  console.log("cancel event fired");
  			});
  			$('#options1').click(function() {
  			  $('#reportrange').data('daterangepicker').setOptions(optionSet1, cb);
  			});
  			$('#options2').click(function() {
  			  $('#reportrange').data('daterangepicker').setOptions(optionSet2, cb);
  			});
  			$('#destroy').click(function() {
  			  $('#reportrange').data('daterangepicker').remove();
  			});
221dd712   Eugeny Galkovskiy   menu
1643
  
06692811   Eugeny Galkovskiy   first commit
1644
  		}
221dd712   Eugeny Galkovskiy   menu
1645
  
06692811   Eugeny Galkovskiy   first commit
1646
  	   function init_daterangepicker_right() {
221dd712   Eugeny Galkovskiy   menu
1647
  
06692811   Eugeny Galkovskiy   first commit
1648
1649
  				if( typeof ($.fn.daterangepicker) === 'undefined'){ return; }
  				console.log('init_daterangepicker_right');
221dd712   Eugeny Galkovskiy   menu
1650
  
06692811   Eugeny Galkovskiy   first commit
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
  				var cb = function(start, end, label) {
  				  console.log(start.toISOString(), end.toISOString(), label);
  				  $('#reportrange_right span').html(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY'));
  				};
  
  				var optionSet1 = {
  				  startDate: moment().subtract(29, 'days'),
  				  endDate: moment(),
  				  minDate: '01/01/2012',
  				  maxDate: '12/31/2020',
  				  dateLimit: {
  					days: 60
  				  },
  				  showDropdowns: true,
  				  showWeekNumbers: true,
  				  timePicker: false,
  				  timePickerIncrement: 1,
  				  timePicker12Hour: true,
  				  ranges: {
  					'Today': [moment(), moment()],
  					'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
  					'Last 7 Days': [moment().subtract(6, 'days'), moment()],
  					'Last 30 Days': [moment().subtract(29, 'days'), moment()],
  					'This Month': [moment().startOf('month'), moment().endOf('month')],
  					'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
  				  },
  				  opens: 'right',
  				  buttonClasses: ['btn btn-default'],
  				  applyClass: 'btn-small btn-primary',
  				  cancelClass: 'btn-small',
  				  format: 'MM/DD/YYYY',
  				  separator: ' to ',
  				  locale: {
  					applyLabel: 'Submit',
  					cancelLabel: 'Clear',
  					fromLabel: 'From',
  					toLabel: 'To',
  					customRangeLabel: 'Custom',
  					daysOfWeek: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
  					monthNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
  					firstDay: 1
  				  }
  				};
  
  				$('#reportrange_right span').html(moment().subtract(29, 'days').format('MMMM D, YYYY') + ' - ' + moment().format('MMMM D, YYYY'));
  
  				$('#reportrange_right').daterangepicker(optionSet1, cb);
  
  				$('#reportrange_right').on('show.daterangepicker', function() {
  				  console.log("show event fired");
  				});
  				$('#reportrange_right').on('hide.daterangepicker', function() {
  				  console.log("hide event fired");
  				});
  				$('#reportrange_right').on('apply.daterangepicker', function(ev, picker) {
  				  console.log("apply event fired, start/end dates are " + picker.startDate.format('MMMM D, YYYY') + " to " + picker.endDate.format('MMMM D, YYYY'));
  				});
  				$('#reportrange_right').on('cancel.daterangepicker', function(ev, picker) {
  				  console.log("cancel event fired");
  				});
  
  				$('#options1').click(function() {
  				  $('#reportrange_right').data('daterangepicker').setOptions(optionSet1, cb);
  				});
  
  				$('#options2').click(function() {
  				  $('#reportrange_right').data('daterangepicker').setOptions(optionSet2, cb);
  				});
  
  				$('#destroy').click(function() {
  				  $('#reportrange_right').data('daterangepicker').remove();
  				});
  
  	   }
221dd712   Eugeny Galkovskiy   menu
1725
  
06692811   Eugeny Galkovskiy   first commit
1726
  	    function init_daterangepicker_single_call() {
221dd712   Eugeny Galkovskiy   menu
1727
  
06692811   Eugeny Galkovskiy   first commit
1728
1729
  			if( typeof ($.fn.daterangepicker) === 'undefined'){ return; }
  			console.log('init_daterangepicker_single_call');
221dd712   Eugeny Galkovskiy   menu
1730
  
06692811   Eugeny Galkovskiy   first commit
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
  			$('#single_cal1').daterangepicker({
  			  singleDatePicker: true,
  			  singleClasses: "picker_1"
  			}, function(start, end, label) {
  			  console.log(start.toISOString(), end.toISOString(), label);
  			});
  			$('#single_cal2').daterangepicker({
  			  singleDatePicker: true,
  			  singleClasses: "picker_2"
  			}, function(start, end, label) {
  			  console.log(start.toISOString(), end.toISOString(), label);
  			});
  			$('#single_cal3').daterangepicker({
  			  singleDatePicker: true,
  			  singleClasses: "picker_3"
  			}, function(start, end, label) {
  			  console.log(start.toISOString(), end.toISOString(), label);
  			});
  			$('#single_cal4').daterangepicker({
  			  singleDatePicker: true,
  			  singleClasses: "picker_4"
  			}, function(start, end, label) {
  			  console.log(start.toISOString(), end.toISOString(), label);
  			});
221dd712   Eugeny Galkovskiy   menu
1755
1756
  
  
06692811   Eugeny Galkovskiy   first commit
1757
  		}
221dd712   Eugeny Galkovskiy   menu
1758
1759
  
  
06692811   Eugeny Galkovskiy   first commit
1760
  		function init_daterangepicker_reservation() {
221dd712   Eugeny Galkovskiy   menu
1761
  
06692811   Eugeny Galkovskiy   first commit
1762
1763
  			if( typeof ($.fn.daterangepicker) === 'undefined'){ return; }
  			console.log('init_daterangepicker_reservation');
221dd712   Eugeny Galkovskiy   menu
1764
  
06692811   Eugeny Galkovskiy   first commit
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
  			$('#reservation').daterangepicker(null, function(start, end, label) {
  			  console.log(start.toISOString(), end.toISOString(), label);
  			});
  
  			$('#reservation-time').daterangepicker({
  			  timePicker: true,
  			  timePickerIncrement: 30,
  			  locale: {
  				format: 'MM/DD/YYYY h:mm A'
  			  }
  			});
221dd712   Eugeny Galkovskiy   menu
1776
  
06692811   Eugeny Galkovskiy   first commit
1777
  		}
221dd712   Eugeny Galkovskiy   menu
1778
  
06692811   Eugeny Galkovskiy   first commit
1779
  	   /* SMART WIZARD */
221dd712   Eugeny Galkovskiy   menu
1780
  
06692811   Eugeny Galkovskiy   first commit
1781
  		function init_SmartWizard() {
221dd712   Eugeny Galkovskiy   menu
1782
  
06692811   Eugeny Galkovskiy   first commit
1783
1784
  			if( typeof ($.fn.smartWizard) === 'undefined'){ return; }
  			console.log('init_SmartWizard');
221dd712   Eugeny Galkovskiy   menu
1785
  
06692811   Eugeny Galkovskiy   first commit
1786
1787
1788
1789
1790
1791
1792
1793
1794
  			$('#wizard').smartWizard();
  
  			$('#wizard_verticle').smartWizard({
  			  transitionEffect: 'slide'
  			});
  
  			$('.buttonNext').addClass('btn btn-success');
  			$('.buttonPrevious').addClass('btn btn-primary');
  			$('.buttonFinish').addClass('btn btn-default');
221dd712   Eugeny Galkovskiy   menu
1795
  
06692811   Eugeny Galkovskiy   first commit
1796
  		};
221dd712   Eugeny Galkovskiy   menu
1797
1798
  
  
06692811   Eugeny Galkovskiy   first commit
1799
1800
1801
  	  /* VALIDATOR */
  
  	  function init_validator () {
221dd712   Eugeny Galkovskiy   menu
1802
  
06692811   Eugeny Galkovskiy   first commit
1803
  		if( typeof (validator) === 'undefined'){ return; }
221dd712   Eugeny Galkovskiy   menu
1804
1805
  		console.log('init_validator');
  
06692811   Eugeny Galkovskiy   first commit
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
  	  // initialize the validator function
        validator.message.date = 'not a real date';
  
        // validate a field on "blur" event, a 'select' on 'change' event & a '.reuired' classed multifield on 'keyup':
        $('form')
          .on('blur', 'input[required], input.optional, select.required', validator.checkField)
          .on('change', 'select.required', validator.checkField)
          .on('keypress', 'input[required][pattern]', validator.keypress);
  
        $('.multi.required').on('keyup blur', 'input', function() {
          validator.checkField.apply($(this).siblings().last()[0]);
        });
  
        $('form').submit(function(e) {
          e.preventDefault();
          var submit = true;
  
          // evaluate the form using generic validaing
          if (!validator.checkAll($(this))) {
            submit = false;
          }
  
          if (submit)
            this.submit();
  
          return false;
  		});
221dd712   Eugeny Galkovskiy   menu
1833
  
06692811   Eugeny Galkovskiy   first commit
1834
  	  };
221dd712   Eugeny Galkovskiy   menu
1835
  
06692811   Eugeny Galkovskiy   first commit
1836
  	  	/* PNotify */
221dd712   Eugeny Galkovskiy   menu
1837
  
06692811   Eugeny Galkovskiy   first commit
1838
  		function init_PNotify() {
221dd712   Eugeny Galkovskiy   menu
1839
  
06692811   Eugeny Galkovskiy   first commit
1840
1841
  			if( typeof (PNotify) === 'undefined'){ return; }
  			console.log('init_PNotify');
221dd712   Eugeny Galkovskiy   menu
1842
  
06692811   Eugeny Galkovskiy   first commit
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
  			new PNotify({
  			  title: "PNotify",
  			  type: "info",
  			  text: "Welcome. Try hovering over me. You can click things behind me, because I'm non-blocking.",
  			  nonblock: {
  				  nonblock: true
  			  },
  			  addclass: 'dark',
  			  styling: 'bootstrap3',
  			  hide: false,
  			  before_close: function(PNotify) {
  				PNotify.update({
  				  title: PNotify.options.title + " - Enjoy your Stay",
  				  before_close: null
  				});
  
  				PNotify.queueRemove();
  
  				return false;
  			  }
  			});
  
221dd712   Eugeny Galkovskiy   menu
1865
1866
1867
  		};
  
  
06692811   Eugeny Galkovskiy   first commit
1868
  	   /* CUSTOM NOTIFICATION */
221dd712   Eugeny Galkovskiy   menu
1869
  
06692811   Eugeny Galkovskiy   first commit
1870
  		function init_CustomNotification() {
221dd712   Eugeny Galkovskiy   menu
1871
  
06692811   Eugeny Galkovskiy   first commit
1872
  			console.log('run_customtabs');
221dd712   Eugeny Galkovskiy   menu
1873
  
06692811   Eugeny Galkovskiy   first commit
1874
1875
  			if( typeof (CustomTabs) === 'undefined'){ return; }
  			console.log('init_CustomTabs');
221dd712   Eugeny Galkovskiy   menu
1876
  
06692811   Eugeny Galkovskiy   first commit
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
  			var cnt = 10;
  
  			TabbedNotification = function(options) {
  			  var message = "<div id='ntf" + cnt + "' class='text alert-" + options.type + "' style='display:none'><h2><i class='fa fa-bell'></i> " + options.title +
  				"</h2><div class='close'><a href='javascript:;' class='notification_close'><i class='fa fa-close'></i></a></div><p>" + options.text + "</p></div>";
  
  			  if (!document.getElementById('custom_notifications')) {
  				alert('doesnt exists');
  			  } else {
  				$('#custom_notifications ul.notifications').append("<li><a id='ntlink" + cnt + "' class='alert-" + options.type + "' href='#ntf" + cnt + "'><i class='fa fa-bell animated shake'></i></a></li>");
  				$('#custom_notifications #notif-group').append(message);
  				cnt++;
  				CustomTabs(options);
  			  }
  			};
  
  			CustomTabs = function(options) {
  			  $('.tabbed_notifications > div').hide();
  			  $('.tabbed_notifications > div:first-of-type').show();
  			  $('#custom_notifications').removeClass('dsp_none');
  			  $('.notifications a').click(function(e) {
  				e.preventDefault();
  				var $this = $(this),
  				  tabbed_notifications = '#' + $this.parents('.notifications').data('tabbed_notifications'),
  				  others = $this.closest('li').siblings().children('a'),
  				  target = $this.attr('href');
  				others.removeClass('active');
  				$this.addClass('active');
  				$(tabbed_notifications).children('div').hide();
  				$(target).show();
  			  });
  			};
  
  			CustomTabs();
  
  			var tabid = idname = '';
  
  			$(document).on('click', '.notification_close', function(e) {
  			  idname = $(this).parent().parent().attr("id");
  			  tabid = idname.substr(-2);
  			  $('#ntf' + tabid).remove();
  			  $('#ntlink' + tabid).parent().remove();
  			  $('.notifications a').first().addClass('active');
  			  $('#notif-group div').first().css('display', 'block');
  			});
221dd712   Eugeny Galkovskiy   menu
1922
  
06692811   Eugeny Galkovskiy   first commit
1923
  		};
221dd712   Eugeny Galkovskiy   menu
1924
  
06692811   Eugeny Galkovskiy   first commit
1925
  			/* EASYPIECHART */
221dd712   Eugeny Galkovskiy   menu
1926
  
06692811   Eugeny Galkovskiy   first commit
1927
  			function init_EasyPieChart() {
221dd712   Eugeny Galkovskiy   menu
1928
  
06692811   Eugeny Galkovskiy   first commit
1929
1930
  				if( typeof ($.fn.easyPieChart) === 'undefined'){ return; }
  				console.log('init_EasyPieChart');
221dd712   Eugeny Galkovskiy   menu
1931
  
06692811   Eugeny Galkovskiy   first commit
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
  				$('.chart').easyPieChart({
  				  easing: 'easeOutElastic',
  				  delay: 3000,
  				  barColor: '#26B99A',
  				  trackColor: '#fff',
  				  scaleColor: false,
  				  lineWidth: 20,
  				  trackWidth: 16,
  				  lineCap: 'butt',
  				  onStep: function(from, to, percent) {
  					$(this.el).find('.percent').text(Math.round(percent));
  				  }
  				});
  				var chart = window.chart = $('.chart').data('easyPieChart');
  				$('.js_update').on('click', function() {
  				  chart.update(Math.random() * 200 - 100);
  				});
  
  				//hover and retain popover when on popover content
  				var originalLeave = $.fn.popover.Constructor.prototype.leave;
  				$.fn.popover.Constructor.prototype.leave = function(obj) {
  				  var self = obj instanceof this.constructor ?
  					obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type);
  				  var container, timeout;
  
  				  originalLeave.call(this, obj);
  
  				  if (obj.currentTarget) {
  					container = $(obj.currentTarget).siblings('.popover');
  					timeout = self.timeout;
  					container.one('mouseenter', function() {
  					  //We entered the actual popover – call off the dogs
  					  clearTimeout(timeout);
  					  //Let's monitor popover content instead
  					  container.one('mouseleave', function() {
  						$.fn.popover.Constructor.prototype.leave.call(self, self);
  					  });
  					});
  				  }
  				};
  
  				$('body').popover({
  				  selector: '[data-popover]',
  				  trigger: 'click hover',
  				  delay: {
  					show: 50,
  					hide: 400
  				  }
  				});
221dd712   Eugeny Galkovskiy   menu
1981
  
06692811   Eugeny Galkovskiy   first commit
1982
  			};
221dd712   Eugeny Galkovskiy   menu
1983
1984
  
  
06692811   Eugeny Galkovskiy   first commit
1985
  		function init_charts() {
221dd712   Eugeny Galkovskiy   menu
1986
  
06692811   Eugeny Galkovskiy   first commit
1987
  				console.log('run_charts  typeof [' + typeof (Chart) + ']');
221dd712   Eugeny Galkovskiy   menu
1988
  
06692811   Eugeny Galkovskiy   first commit
1989
  				if( typeof (Chart) === 'undefined'){ return; }
221dd712   Eugeny Galkovskiy   menu
1990
  
06692811   Eugeny Galkovskiy   first commit
1991
  				console.log('init_charts');
221dd712   Eugeny Galkovskiy   menu
1992
1993
  
  
06692811   Eugeny Galkovskiy   first commit
1994
1995
1996
  				Chart.defaults.global.legend = {
  					enabled: false
  				};
221dd712   Eugeny Galkovskiy   menu
1997
1998
  
  
06692811   Eugeny Galkovskiy   first commit
1999
2000
  
  			if ($('#canvas_line').length ){
221dd712   Eugeny Galkovskiy   menu
2001
  
06692811   Eugeny Galkovskiy   first commit
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
  				var canvas_line_00 = new Chart(document.getElementById("canvas_line"), {
  				  type: 'line',
  				  data: {
  					labels: ["January", "February", "March", "April", "May", "June", "July"],
  					datasets: [{
  					  label: "My First dataset",
  					  backgroundColor: "rgba(38, 185, 154, 0.31)",
  					  borderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBorderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(220,220,220,1)",
  					  pointBorderWidth: 1,
  					  data: [31, 74, 6, 39, 20, 85, 7]
  					}, {
  					  label: "My Second dataset",
  					  backgroundColor: "rgba(3, 88, 106, 0.3)",
  					  borderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBorderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(151,187,205,1)",
  					  pointBorderWidth: 1,
  					  data: [82, 23, 66, 9, 99, 4, 2]
  					}]
  				  },
  				});
221dd712   Eugeny Galkovskiy   menu
2029
  
06692811   Eugeny Galkovskiy   first commit
2030
2031
  			}
  
221dd712   Eugeny Galkovskiy   menu
2032
  
06692811   Eugeny Galkovskiy   first commit
2033
  			if ($('#canvas_line1').length ){
221dd712   Eugeny Galkovskiy   menu
2034
  
06692811   Eugeny Galkovskiy   first commit
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
  				var canvas_line_01 = new Chart(document.getElementById("canvas_line1"), {
  				  type: 'line',
  				  data: {
  					labels: ["January", "February", "March", "April", "May", "June", "July"],
  					datasets: [{
  					  label: "My First dataset",
  					  backgroundColor: "rgba(38, 185, 154, 0.31)",
  					  borderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBorderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(220,220,220,1)",
  					  pointBorderWidth: 1,
  					  data: [31, 74, 6, 39, 20, 85, 7]
  					}, {
  					  label: "My Second dataset",
  					  backgroundColor: "rgba(3, 88, 106, 0.3)",
  					  borderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBorderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(151,187,205,1)",
  					  pointBorderWidth: 1,
  					  data: [82, 23, 66, 9, 99, 4, 2]
  					}]
  				  },
  				});
221dd712   Eugeny Galkovskiy   menu
2062
  
06692811   Eugeny Galkovskiy   first commit
2063
  			}
221dd712   Eugeny Galkovskiy   menu
2064
2065
2066
2067
  
  
  			if ($('#canvas_line2').length ){
  
06692811   Eugeny Galkovskiy   first commit
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
  				var canvas_line_02 = new Chart(document.getElementById("canvas_line2"), {
  				  type: 'line',
  				  data: {
  					labels: ["January", "February", "March", "April", "May", "June", "July"],
  					datasets: [{
  					  label: "My First dataset",
  					  backgroundColor: "rgba(38, 185, 154, 0.31)",
  					  borderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBorderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(220,220,220,1)",
  					  pointBorderWidth: 1,
  					  data: [31, 74, 6, 39, 20, 85, 7]
  					}, {
  					  label: "My Second dataset",
  					  backgroundColor: "rgba(3, 88, 106, 0.3)",
  					  borderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBorderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(151,187,205,1)",
  					  pointBorderWidth: 1,
  					  data: [82, 23, 66, 9, 99, 4, 2]
  					}]
  				  },
  				});
  
221dd712   Eugeny Galkovskiy   menu
2096
2097
2098
  			}
  
  
06692811   Eugeny Galkovskiy   first commit
2099
  			if ($('#canvas_line3').length ){
221dd712   Eugeny Galkovskiy   menu
2100
  
06692811   Eugeny Galkovskiy   first commit
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
  				var canvas_line_03 = new Chart(document.getElementById("canvas_line3"), {
  				  type: 'line',
  				  data: {
  					labels: ["January", "February", "March", "April", "May", "June", "July"],
  					datasets: [{
  					  label: "My First dataset",
  					  backgroundColor: "rgba(38, 185, 154, 0.31)",
  					  borderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBorderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(220,220,220,1)",
  					  pointBorderWidth: 1,
  					  data: [31, 74, 6, 39, 20, 85, 7]
  					}, {
  					  label: "My Second dataset",
  					  backgroundColor: "rgba(3, 88, 106, 0.3)",
  					  borderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBorderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(151,187,205,1)",
  					  pointBorderWidth: 1,
  					  data: [82, 23, 66, 9, 99, 4, 2]
  					}]
  				  },
  				});
  
221dd712   Eugeny Galkovskiy   menu
2129
2130
2131
  			}
  
  
06692811   Eugeny Galkovskiy   first commit
2132
  			if ($('#canvas_line4').length ){
221dd712   Eugeny Galkovskiy   menu
2133
  
06692811   Eugeny Galkovskiy   first commit
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
  				var canvas_line_04 = new Chart(document.getElementById("canvas_line4"), {
  				  type: 'line',
  				  data: {
  					labels: ["January", "February", "March", "April", "May", "June", "July"],
  					datasets: [{
  					  label: "My First dataset",
  					  backgroundColor: "rgba(38, 185, 154, 0.31)",
  					  borderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBorderColor: "rgba(38, 185, 154, 0.7)",
  					  pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(220,220,220,1)",
  					  pointBorderWidth: 1,
  					  data: [31, 74, 6, 39, 20, 85, 7]
  					}, {
  					  label: "My Second dataset",
  					  backgroundColor: "rgba(3, 88, 106, 0.3)",
  					  borderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBorderColor: "rgba(3, 88, 106, 0.70)",
  					  pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
  					  pointHoverBackgroundColor: "#fff",
  					  pointHoverBorderColor: "rgba(151,187,205,1)",
  					  pointBorderWidth: 1,
  					  data: [82, 23, 66, 9, 99, 4, 2]
  					}]
  				  },
221dd712   Eugeny Galkovskiy   menu
2160
2161
  				});
  
06692811   Eugeny Galkovskiy   first commit
2162
  			}
221dd712   Eugeny Galkovskiy   menu
2163
2164
  
  
06692811   Eugeny Galkovskiy   first commit
2165
  			  // Line chart
221dd712   Eugeny Galkovskiy   menu
2166
2167
2168
  
  			if ($('#lineChart').length ){
  
06692811   Eugeny Galkovskiy   first commit
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
  			  var ctx = document.getElementById("lineChart");
  			  var lineChart = new Chart(ctx, {
  				type: 'line',
  				data: {
  				  labels: ["January", "February", "March", "April", "May", "June", "July"],
  				  datasets: [{
  					label: "My First dataset",
  					backgroundColor: "rgba(38, 185, 154, 0.31)",
  					borderColor: "rgba(38, 185, 154, 0.7)",
  					pointBorderColor: "rgba(38, 185, 154, 0.7)",
  					pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
  					pointHoverBackgroundColor: "#fff",
  					pointHoverBorderColor: "rgba(220,220,220,1)",
  					pointBorderWidth: 1,
  					data: [31, 74, 6, 39, 20, 85, 7]
  				  }, {
  					label: "My Second dataset",
  					backgroundColor: "rgba(3, 88, 106, 0.3)",
  					borderColor: "rgba(3, 88, 106, 0.70)",
  					pointBorderColor: "rgba(3, 88, 106, 0.70)",
  					pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
  					pointHoverBackgroundColor: "#fff",
  					pointHoverBorderColor: "rgba(151,187,205,1)",
  					pointBorderWidth: 1,
  					data: [82, 23, 66, 9, 99, 4, 2]
  				  }]
  				},
  			  });
221dd712   Eugeny Galkovskiy   menu
2197
  
06692811   Eugeny Galkovskiy   first commit
2198
  			}
221dd712   Eugeny Galkovskiy   menu
2199
  
06692811   Eugeny Galkovskiy   first commit
2200
  			  // Bar chart
221dd712   Eugeny Galkovskiy   menu
2201
2202
2203
  
  			if ($('#mybarChart').length ){
  
06692811   Eugeny Galkovskiy   first commit
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
  			  var ctx = document.getElementById("mybarChart");
  			  var mybarChart = new Chart(ctx, {
  				type: 'bar',
  				data: {
  				  labels: ["January", "February", "March", "April", "May", "June", "July"],
  				  datasets: [{
  					label: '# of Votes',
  					backgroundColor: "#26B99A",
  					data: [51, 30, 40, 28, 92, 50, 45]
  				  }, {
  					label: '# of Votes',
  					backgroundColor: "#03586A",
  					data: [41, 56, 25, 48, 72, 34, 12]
  				  }]
  				},
  
  				options: {
  				  scales: {
  					yAxes: [{
  					  ticks: {
  						beginAtZero: true
  					  }
  					}]
  				  }
  				}
  			  });
221dd712   Eugeny Galkovskiy   menu
2230
2231
2232
  
  			}
  
06692811   Eugeny Galkovskiy   first commit
2233
2234
  
  			  // Doughnut chart
221dd712   Eugeny Galkovskiy   menu
2235
2236
2237
  
  			if ($('#canvasDoughnut').length ){
  
06692811   Eugeny Galkovskiy   first commit
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
  			  var ctx = document.getElementById("canvasDoughnut");
  			  var data = {
  				labels: [
  				  "Dark Grey",
  				  "Purple Color",
  				  "Gray Color",
  				  "Green Color",
  				  "Blue Color"
  				],
  				datasets: [{
  				  data: [120, 50, 140, 180, 100],
  				  backgroundColor: [
  					"#455C73",
  					"#9B59B6",
  					"#BDC3C7",
  					"#26B99A",
  					"#3498DB"
  				  ],
  				  hoverBackgroundColor: [
  					"#34495E",
  					"#B370CF",
  					"#CFD4D8",
  					"#36CAAB",
  					"#49A9EA"
  				  ]
  
  				}]
  			  };
  
  			  var canvasDoughnut = new Chart(ctx, {
  				type: 'doughnut',
  				tooltipFillColor: "rgba(51, 51, 51, 0.55)",
  				data: data
  			  });
221dd712   Eugeny Galkovskiy   menu
2272
2273
  
  			}
06692811   Eugeny Galkovskiy   first commit
2274
2275
  
  			  // Radar chart
221dd712   Eugeny Galkovskiy   menu
2276
2277
2278
  
  			if ($('#canvasRadar').length ){
  
06692811   Eugeny Galkovskiy   first commit
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
  			  var ctx = document.getElementById("canvasRadar");
  			  var data = {
  				labels: ["Eating", "Drinking", "Sleeping", "Designing", "Coding", "Cycling", "Running"],
  				datasets: [{
  				  label: "My First dataset",
  				  backgroundColor: "rgba(3, 88, 106, 0.2)",
  				  borderColor: "rgba(3, 88, 106, 0.80)",
  				  pointBorderColor: "rgba(3, 88, 106, 0.80)",
  				  pointBackgroundColor: "rgba(3, 88, 106, 0.80)",
  				  pointHoverBackgroundColor: "#fff",
  				  pointHoverBorderColor: "rgba(220,220,220,1)",
  				  data: [65, 59, 90, 81, 56, 55, 40]
  				}, {
  				  label: "My Second dataset",
  				  backgroundColor: "rgba(38, 185, 154, 0.2)",
  				  borderColor: "rgba(38, 185, 154, 0.85)",
  				  pointColor: "rgba(38, 185, 154, 0.85)",
  				  pointStrokeColor: "#fff",
  				  pointHighlightFill: "#fff",
  				  pointHighlightStroke: "rgba(151,187,205,1)",
  				  data: [28, 48, 40, 19, 96, 27, 100]
  				}]
  			  };
  
  			  var canvasRadar = new Chart(ctx, {
  				type: 'radar',
  				data: data,
  			  });
221dd712   Eugeny Galkovskiy   menu
2307
  
06692811   Eugeny Galkovskiy   first commit
2308
  			}
221dd712   Eugeny Galkovskiy   menu
2309
2310
  
  
06692811   Eugeny Galkovskiy   first commit
2311
2312
  			  // Pie chart
  			  if ($('#pieChart').length ){
221dd712   Eugeny Galkovskiy   menu
2313
  
06692811   Eugeny Galkovskiy   first commit
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
  				  var ctx = document.getElementById("pieChart");
  				  var data = {
  					datasets: [{
  					  data: [120, 50, 140, 180, 100],
  					  backgroundColor: [
  						"#455C73",
  						"#9B59B6",
  						"#BDC3C7",
  						"#26B99A",
  						"#3498DB"
  					  ],
  					  label: 'My dataset' // for legend
  					}],
  					labels: [
  					  "Dark Gray",
  					  "Purple",
  					  "Gray",
  					  "Green",
  					  "Blue"
  					]
  				  };
  
  				  var pieChart = new Chart(ctx, {
  					data: data,
  					type: 'pie',
  					otpions: {
  					  legend: false
  					}
  				  });
221dd712   Eugeny Galkovskiy   menu
2343
  
06692811   Eugeny Galkovskiy   first commit
2344
  			  }
221dd712   Eugeny Galkovskiy   menu
2345
2346
  
  
06692811   Eugeny Galkovskiy   first commit
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
  			  // PolarArea chart
  
  			if ($('#polarArea').length ){
  
  				var ctx = document.getElementById("polarArea");
  				var data = {
  				datasets: [{
  				  data: [120, 50, 140, 180, 100],
  				  backgroundColor: [
  					"#455C73",
  					"#9B59B6",
  					"#BDC3C7",
  					"#26B99A",
  					"#3498DB"
  				  ],
  				  label: 'My dataset'
  				}],
  				labels: [
  				  "Dark Gray",
  				  "Purple",
  				  "Gray",
  				  "Green",
  				  "Blue"
  				]
  				};
  
  				var polarArea = new Chart(ctx, {
  				data: data,
  				type: 'polarArea',
  				options: {
  				  scale: {
  					ticks: {
  					  beginAtZero: true
  					}
  				  }
  				}
  				});
221dd712   Eugeny Galkovskiy   menu
2384
  
06692811   Eugeny Galkovskiy   first commit
2385
2386
2387
2388
  			}
  		}
  
  		/* COMPOSE */
221dd712   Eugeny Galkovskiy   menu
2389
  
06692811   Eugeny Galkovskiy   first commit
2390
  		function init_compose() {
221dd712   Eugeny Galkovskiy   menu
2391
  
06692811   Eugeny Galkovskiy   first commit
2392
2393
  			if( typeof ($.fn.slideToggle) === 'undefined'){ return; }
  			console.log('init_compose');
221dd712   Eugeny Galkovskiy   menu
2394
  
06692811   Eugeny Galkovskiy   first commit
2395
2396
2397
  			$('#compose, .compose-close').click(function(){
  				$('.compose').slideToggle();
  			});
221dd712   Eugeny Galkovskiy   menu
2398
  
06692811   Eugeny Galkovskiy   first commit
2399
  		};
221dd712   Eugeny Galkovskiy   menu
2400
  
06692811   Eugeny Galkovskiy   first commit
2401
  	   	/* CALENDAR */
221dd712   Eugeny Galkovskiy   menu
2402
  
06692811   Eugeny Galkovskiy   first commit
2403
  		    function  init_calendar() {
221dd712   Eugeny Galkovskiy   menu
2404
  
06692811   Eugeny Galkovskiy   first commit
2405
2406
  				if( typeof ($.fn.fullCalendar) === 'undefined'){ return; }
  				console.log('init_calendar');
221dd712   Eugeny Galkovskiy   menu
2407
  
06692811   Eugeny Galkovskiy   first commit
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
  				var date = new Date(),
  					d = date.getDate(),
  					m = date.getMonth(),
  					y = date.getFullYear(),
  					started,
  					categoryClass;
  
  				var calendar = $('#calendar').fullCalendar({
  				  header: {
  					left: 'prev,next today',
  					center: 'title',
  					right: 'month,agendaWeek,agendaDay,listMonth'
  				  },
  				  selectable: true,
  				  selectHelper: true,
  				  select: function(start, end, allDay) {
  					$('#fc_create').click();
  
  					started = start;
  					ended = end;
  
  					$(".antosubmit").on("click", function() {
  					  var title = $("#title").val();
  					  if (end) {
  						ended = end;
  					  }
  
  					  categoryClass = $("#event_type").val();
  
  					  if (title) {
  						calendar.fullCalendar('renderEvent', {
  							title: title,
  							start: started,
  							end: end,
  							allDay: allDay
  						  },
  						  true // make the event "stick"
  						);
  					  }
  
  					  $('#title').val('');
  
  					  calendar.fullCalendar('unselect');
  
  					  $('.antoclose').click();
  
  					  return false;
  					});
  				  },
  				  eventClick: function(calEvent, jsEvent, view) {
  					$('#fc_edit').click();
  					$('#title2').val(calEvent.title);
  
  					categoryClass = $("#event_type").val();
  
  					$(".antosubmit2").on("click", function() {
  					  calEvent.title = $("#title2").val();
  
  					  calendar.fullCalendar('updateEvent', calEvent);
  					  $('.antoclose2').click();
  					});
  
  					calendar.fullCalendar('unselect');
  				  },
  				  editable: true,
  				  events: [{
  					title: 'All Day Event',
  					start: new Date(y, m, 1)
  				  }, {
  					title: 'Long Event',
  					start: new Date(y, m, d - 5),
  					end: new Date(y, m, d - 2)
  				  }, {
  					title: 'Meeting',
  					start: new Date(y, m, d, 10, 30),
  					allDay: false
  				  }, {
  					title: 'Lunch',
  					start: new Date(y, m, d + 14, 12, 0),
  					end: new Date(y, m, d, 14, 0),
  					allDay: false
  				  }, {
  					title: 'Birthday Party',
  					start: new Date(y, m, d + 1, 19, 0),
  					end: new Date(y, m, d + 1, 22, 30),
  					allDay: false
  				  }, {
  					title: 'Click for Google',
  					start: new Date(y, m, 28),
  					end: new Date(y, m, 29),
  					url: 'http://google.com/'
  				  }]
  				});
221dd712   Eugeny Galkovskiy   menu
2501
  
06692811   Eugeny Galkovskiy   first commit
2502
  			};
221dd712   Eugeny Galkovskiy   menu
2503
  
06692811   Eugeny Galkovskiy   first commit
2504
  		/* DATA TABLES */
221dd712   Eugeny Galkovskiy   menu
2505
  
06692811   Eugeny Galkovskiy   first commit
2506
  			function init_DataTables() {
221dd712   Eugeny Galkovskiy   menu
2507
  
06692811   Eugeny Galkovskiy   first commit
2508
  				console.log('run_datatables');
221dd712   Eugeny Galkovskiy   menu
2509
  
06692811   Eugeny Galkovskiy   first commit
2510
2511
  				if( typeof ($.fn.DataTable) === 'undefined'){ return; }
  				console.log('init_DataTables');
221dd712   Eugeny Galkovskiy   menu
2512
  
06692811   Eugeny Galkovskiy   first commit
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
  				var handleDataTableButtons = function() {
  				  if ($("#datatable-buttons").length) {
  					$("#datatable-buttons").DataTable({
  					  dom: "Bfrtip",
  					  buttons: [
  						{
  						  extend: "copy",
  						  className: "btn-sm"
  						},
  						{
  						  extend: "csv",
  						  className: "btn-sm"
  						},
  						{
  						  extend: "excel",
  						  className: "btn-sm"
  						},
  						{
  						  extend: "pdfHtml5",
  						  className: "btn-sm"
  						},
  						{
  						  extend: "print",
  						  className: "btn-sm"
  						},
  					  ],
  					  responsive: true
  					});
  				  }
  				};
  
  				TableManageButtons = function() {
  				  "use strict";
  				  return {
  					init: function() {
  					  handleDataTableButtons();
  					}
  				  };
  				}();
  
  				$('#datatable').dataTable();
  
  				$('#datatable-keytable').DataTable({
  				  keys: true
  				});
  
  				$('#datatable-responsive').DataTable();
  
  				$('#datatable-scroller').DataTable({
  				  ajax: "js/datatables/json/scroller-demo.json",
  				  deferRender: true,
  				  scrollY: 380,
  				  scrollCollapse: true,
  				  scroller: true
  				});
  
  				$('#datatable-fixed-header').DataTable({
  				  fixedHeader: true
  				});
  
  				var $datatable = $('#datatable-checkbox');
  
  				$datatable.dataTable({
  				  'order': [[ 1, 'asc' ]],
  				  'columnDefs': [
  					{ orderable: false, targets: [0] }
  				  ]
  				});
  				$datatable.on('draw.dt', function() {
  				  $('checkbox input').iCheck({
  					checkboxClass: 'icheckbox_flat-green'
  				  });
  				});
  
  				TableManageButtons.init();
221dd712   Eugeny Galkovskiy   menu
2588
  
06692811   Eugeny Galkovskiy   first commit
2589
  			};
221dd712   Eugeny Galkovskiy   menu
2590
  
06692811   Eugeny Galkovskiy   first commit
2591
  			/* CHART - MORRIS  */
221dd712   Eugeny Galkovskiy   menu
2592
  
06692811   Eugeny Galkovskiy   first commit
2593
  		function init_morris_charts() {
221dd712   Eugeny Galkovskiy   menu
2594
  
06692811   Eugeny Galkovskiy   first commit
2595
2596
  			if( typeof (Morris) === 'undefined'){ return; }
  			console.log('init_morris_charts');
221dd712   Eugeny Galkovskiy   menu
2597
2598
2599
  
  			if ($('#graph_bar').length){
  
06692811   Eugeny Galkovskiy   first commit
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
  				Morris.Bar({
  				  element: 'graph_bar',
  				  data: [
  					{device: 'iPhone 4', geekbench: 380},
  					{device: 'iPhone 4S', geekbench: 655},
  					{device: 'iPhone 3GS', geekbench: 275},
  					{device: 'iPhone 5', geekbench: 1571},
  					{device: 'iPhone 5S', geekbench: 655},
  					{device: 'iPhone 6', geekbench: 2154},
  					{device: 'iPhone 6 Plus', geekbench: 1144},
  					{device: 'iPhone 6S', geekbench: 2371},
  					{device: 'iPhone 6S Plus', geekbench: 1471},
  					{device: 'Other', geekbench: 1371}
  				  ],
  				  xkey: 'device',
  				  ykeys: ['geekbench'],
  				  labels: ['Geekbench'],
  				  barRatio: 0.4,
  				  barColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
  				  xLabelAngle: 35,
  				  hideHover: 'auto',
  				  resize: true
  				});
  
221dd712   Eugeny Galkovskiy   menu
2624
2625
  			}
  
06692811   Eugeny Galkovskiy   first commit
2626
  			if ($('#graph_bar_group').length ){
221dd712   Eugeny Galkovskiy   menu
2627
  
06692811   Eugeny Galkovskiy   first commit
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
  				Morris.Bar({
  				  element: 'graph_bar_group',
  				  data: [
  					{"period": "2016-10-01", "licensed": 807, "sorned": 660},
  					{"period": "2016-09-30", "licensed": 1251, "sorned": 729},
  					{"period": "2016-09-29", "licensed": 1769, "sorned": 1018},
  					{"period": "2016-09-20", "licensed": 2246, "sorned": 1461},
  					{"period": "2016-09-19", "licensed": 2657, "sorned": 1967},
  					{"period": "2016-09-18", "licensed": 3148, "sorned": 2627},
  					{"period": "2016-09-17", "licensed": 3471, "sorned": 3740},
  					{"period": "2016-09-16", "licensed": 2871, "sorned": 2216},
  					{"period": "2016-09-15", "licensed": 2401, "sorned": 1656},
  					{"period": "2016-09-10", "licensed": 2115, "sorned": 1022}
  				  ],
  				  xkey: 'period',
  				  barColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
  				  ykeys: ['licensed', 'sorned'],
  				  labels: ['Licensed', 'SORN'],
  				  hideHover: 'auto',
  				  xLabelAngle: 60,
  				  resize: true
  				});
  
  			}
221dd712   Eugeny Galkovskiy   menu
2652
  
06692811   Eugeny Galkovskiy   first commit
2653
  			if ($('#graphx').length ){
221dd712   Eugeny Galkovskiy   menu
2654
  
06692811   Eugeny Galkovskiy   first commit
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
  				Morris.Bar({
  				  element: 'graphx',
  				  data: [
  					{x: '2015 Q1', y: 2, z: 3, a: 4},
  					{x: '2015 Q2', y: 3, z: 5, a: 6},
  					{x: '2015 Q3', y: 4, z: 3, a: 2},
  					{x: '2015 Q4', y: 2, z: 4, a: 5}
  				  ],
  				  xkey: 'x',
  				  ykeys: ['y', 'z', 'a'],
  				  barColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
  				  hideHover: 'auto',
  				  labels: ['Y', 'Z', 'A'],
  				  resize: true
  				}).on('click', function (i, row) {
  					console.log(i, row);
  				});
  
  			}
221dd712   Eugeny Galkovskiy   menu
2674
  
06692811   Eugeny Galkovskiy   first commit
2675
  			if ($('#graph_area').length ){
221dd712   Eugeny Galkovskiy   menu
2676
  
06692811   Eugeny Galkovskiy   first commit
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
  				Morris.Area({
  				  element: 'graph_area',
  				  data: [
  					{period: '2014 Q1', iphone: 2666, ipad: null, itouch: 2647},
  					{period: '2014 Q2', iphone: 2778, ipad: 2294, itouch: 2441},
  					{period: '2014 Q3', iphone: 4912, ipad: 1969, itouch: 2501},
  					{period: '2014 Q4', iphone: 3767, ipad: 3597, itouch: 5689},
  					{period: '2015 Q1', iphone: 6810, ipad: 1914, itouch: 2293},
  					{period: '2015 Q2', iphone: 5670, ipad: 4293, itouch: 1881},
  					{period: '2015 Q3', iphone: 4820, ipad: 3795, itouch: 1588},
  					{period: '2015 Q4', iphone: 15073, ipad: 5967, itouch: 5175},
  					{period: '2016 Q1', iphone: 10687, ipad: 4460, itouch: 2028},
  					{period: '2016 Q2', iphone: 8432, ipad: 5713, itouch: 1791}
  				  ],
  				  xkey: 'period',
  				  ykeys: ['iphone', 'ipad', 'itouch'],
  				  lineColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
  				  labels: ['iPhone', 'iPad', 'iPod Touch'],
  				  pointSize: 2,
  				  hideHover: 'auto',
  				  resize: true
  				});
  
  			}
221dd712   Eugeny Galkovskiy   menu
2701
  
06692811   Eugeny Galkovskiy   first commit
2702
  			if ($('#graph_donut').length ){
221dd712   Eugeny Galkovskiy   menu
2703
  
06692811   Eugeny Galkovskiy   first commit
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
  				Morris.Donut({
  				  element: 'graph_donut',
  				  data: [
  					{label: 'Jam', value: 25},
  					{label: 'Frosted', value: 40},
  					{label: 'Custard', value: 25},
  					{label: 'Sugar', value: 10}
  				  ],
  				  colors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
  				  formatter: function (y) {
  					return y + "%";
  				  },
  				  resize: true
  				});
  
  			}
221dd712   Eugeny Galkovskiy   menu
2720
  
06692811   Eugeny Galkovskiy   first commit
2721
  			if ($('#graph_line').length ){
221dd712   Eugeny Galkovskiy   menu
2722
  
06692811   Eugeny Galkovskiy   first commit
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
  				Morris.Line({
  				  element: 'graph_line',
  				  xkey: 'year',
  				  ykeys: ['value'],
  				  labels: ['Value'],
  				  hideHover: 'auto',
  				  lineColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
  				  data: [
  					{year: '2012', value: 20},
  					{year: '2013', value: 10},
  					{year: '2014', value: 5},
  					{year: '2015', value: 5},
  					{year: '2016', value: 20}
  				  ],
  				  resize: true
  				});
  
  				$MENU_TOGGLE.on('click', function() {
  				  $(window).resize();
  				});
221dd712   Eugeny Galkovskiy   menu
2743
  
06692811   Eugeny Galkovskiy   first commit
2744
  			}
221dd712   Eugeny Galkovskiy   menu
2745
  
06692811   Eugeny Galkovskiy   first commit
2746
  		};
221dd712   Eugeny Galkovskiy   menu
2747
2748
2749
  
  
  
06692811   Eugeny Galkovskiy   first commit
2750
  		/* ECHRTS */
221dd712   Eugeny Galkovskiy   menu
2751
2752
  
  
06692811   Eugeny Galkovskiy   first commit
2753
  		function init_echarts() {
221dd712   Eugeny Galkovskiy   menu
2754
  
06692811   Eugeny Galkovskiy   first commit
2755
2756
  				if( typeof (echarts) === 'undefined'){ return; }
  				console.log('init_echarts');
221dd712   Eugeny Galkovskiy   menu
2757
2758
  
  
06692811   Eugeny Galkovskiy   first commit
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
  				  var theme = {
  				  color: [
  					  '#26B99A', '#34495E', '#BDC3C7', '#3498DB',
  					  '#9B59B6', '#8abb6f', '#759c6a', '#bfd3b7'
  				  ],
  
  				  title: {
  					  itemGap: 8,
  					  textStyle: {
  						  fontWeight: 'normal',
  						  color: '#408829'
  					  }
  				  },
  
  				  dataRange: {
  					  color: ['#1f610a', '#97b58d']
  				  },
  
  				  toolbox: {
  					  color: ['#408829', '#408829', '#408829', '#408829']
  				  },
  
  				  tooltip: {
  					  backgroundColor: 'rgba(0,0,0,0.5)',
  					  axisPointer: {
  						  type: 'line',
  						  lineStyle: {
  							  color: '#408829',
  							  type: 'dashed'
  						  },
  						  crossStyle: {
  							  color: '#408829'
  						  },
  						  shadowStyle: {
  							  color: 'rgba(200,200,200,0.3)'
  						  }
  					  }
  				  },
  
  				  dataZoom: {
  					  dataBackgroundColor: '#eee',
  					  fillerColor: 'rgba(64,136,41,0.2)',
  					  handleColor: '#408829'
  				  },
  				  grid: {
  					  borderWidth: 0
  				  },
  
  				  categoryAxis: {
  					  axisLine: {
  						  lineStyle: {
  							  color: '#408829'
  						  }
  					  },
  					  splitLine: {
  						  lineStyle: {
  							  color: ['#eee']
  						  }
  					  }
  				  },
  
  				  valueAxis: {
  					  axisLine: {
  						  lineStyle: {
  							  color: '#408829'
  						  }
  					  },
  					  splitArea: {
  						  show: true,
  						  areaStyle: {
  							  color: ['rgba(250,250,250,0.1)', 'rgba(200,200,200,0.1)']
  						  }
  					  },
  					  splitLine: {
  						  lineStyle: {
  							  color: ['#eee']
  						  }
  					  }
  				  },
  				  timeline: {
  					  lineStyle: {
  						  color: '#408829'
  					  },
  					  controlStyle: {
  						  normal: {color: '#408829'},
  						  emphasis: {color: '#408829'}
  					  }
  				  },
  
  				  k: {
  					  itemStyle: {
  						  normal: {
  							  color: '#68a54a',
  							  color0: '#a9cba2',
  							  lineStyle: {
  								  width: 1,
  								  color: '#408829',
  								  color0: '#86b379'
  							  }
  						  }
  					  }
  				  },
  				  map: {
  					  itemStyle: {
  						  normal: {
  							  areaStyle: {
  								  color: '#ddd'
  							  },
  							  label: {
  								  textStyle: {
  									  color: '#c12e34'
  								  }
  							  }
  						  },
  						  emphasis: {
  							  areaStyle: {
  								  color: '#99d2dd'
  							  },
  							  label: {
  								  textStyle: {
  									  color: '#c12e34'
  								  }
  							  }
  						  }
  					  }
  				  },
  				  force: {
  					  itemStyle: {
  						  normal: {
  							  linkStyle: {
  								  strokeColor: '#408829'
  							  }
  						  }
  					  }
  				  },
  				  chord: {
  					  padding: 4,
  					  itemStyle: {
  						  normal: {
  							  lineStyle: {
  								  width: 1,
  								  color: 'rgba(128, 128, 128, 0.5)'
  							  },
  							  chordStyle: {
  								  lineStyle: {
  									  width: 1,
  									  color: 'rgba(128, 128, 128, 0.5)'
  								  }
  							  }
  						  },
  						  emphasis: {
  							  lineStyle: {
  								  width: 1,
  								  color: 'rgba(128, 128, 128, 0.5)'
  							  },
  							  chordStyle: {
  								  lineStyle: {
  									  width: 1,
  									  color: 'rgba(128, 128, 128, 0.5)'
  								  }
  							  }
  						  }
  					  }
  				  },
  				  gauge: {
  					  startAngle: 225,
  					  endAngle: -45,
  					  axisLine: {
  						  show: true,
  						  lineStyle: {
  							  color: [[0.2, '#86b379'], [0.8, '#68a54a'], [1, '#408829']],
  							  width: 8
  						  }
  					  },
  					  axisTick: {
  						  splitNumber: 10,
  						  length: 12,
  						  lineStyle: {
  							  color: 'auto'
  						  }
  					  },
  					  axisLabel: {
  						  textStyle: {
  							  color: 'auto'
  						  }
  					  },
  					  splitLine: {
  						  length: 18,
  						  lineStyle: {
  							  color: 'auto'
  						  }
  					  },
  					  pointer: {
  						  length: '90%',
  						  color: 'auto'
  					  },
  					  title: {
  						  textStyle: {
  							  color: '#333'
  						  }
  					  },
  					  detail: {
  						  textStyle: {
  							  color: 'auto'
  						  }
  					  }
  				  },
  				  textStyle: {
  					  fontFamily: 'Arial, Verdana, sans-serif'
  				  }
  			  };
  
221dd712   Eugeny Galkovskiy   menu
2971
  
06692811   Eugeny Galkovskiy   first commit
2972
  			  //echart Bar
221dd712   Eugeny Galkovskiy   menu
2973
  
06692811   Eugeny Galkovskiy   first commit
2974
  			if ($('#mainb').length ){
221dd712   Eugeny Galkovskiy   menu
2975
  
06692811   Eugeny Galkovskiy   first commit
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
  				  var echartBar = echarts.init(document.getElementById('mainb'), theme);
  
  				  echartBar.setOption({
  					title: {
  					  text: 'Graph title',
  					  subtext: 'Graph Sub-text'
  					},
  					tooltip: {
  					  trigger: 'axis'
  					},
  					legend: {
  					  data: ['sales', 'purchases']
  					},
  					toolbox: {
  					  show: false
  					},
  					calculable: false,
  					xAxis: [{
  					  type: 'category',
  					  data: ['1?', '2?', '3?', '4?', '5?', '6?', '7?', '8?', '9?', '10?', '11?', '12?']
  					}],
  					yAxis: [{
  					  type: 'value'
  					}],
  					series: [{
  					  name: 'sales',
  					  type: 'bar',
  					  data: [2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3],
  					  markPoint: {
  						data: [{
  						  type: 'max',
  						  name: '???'
  						}, {
  						  type: 'min',
  						  name: '???'
  						}]
  					  },
  					  markLine: {
  						data: [{
  						  type: 'average',
  						  name: '???'
  						}]
  					  }
  					}, {
  					  name: 'purchases',
  					  type: 'bar',
  					  data: [2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3],
  					  markPoint: {
  						data: [{
  						  name: 'sales',
  						  value: 182.2,
  						  xAxis: 7,
  						  yAxis: 183,
  						}, {
  						  name: 'purchases',
  						  value: 2.3,
  						  xAxis: 11,
  						  yAxis: 3
  						}]
  					  },
  					  markLine: {
  						data: [{
  						  type: 'average',
  						  name: '???'
  						}]
  					  }
  					}]
  				  });
  
  			}
221dd712   Eugeny Galkovskiy   menu
3046
3047
3048
3049
  
  
  
  
06692811   Eugeny Galkovskiy   first commit
3050
  			   //echart Radar
221dd712   Eugeny Galkovskiy   menu
3051
3052
3053
  
  			if ($('#echart_sonar').length ){
  
06692811   Eugeny Galkovskiy   first commit
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
  			  var echartRadar = echarts.init(document.getElementById('echart_sonar'), theme);
  
  			  echartRadar.setOption({
  				title: {
  				  text: 'Budget vs spending',
  				  subtext: 'Subtitle'
  				},
  				 tooltip: {
  					trigger: 'item'
  				},
  				legend: {
  				  orient: 'vertical',
  				  x: 'right',
  				  y: 'bottom',
  				  data: ['Allocated Budget', 'Actual Spending']
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					restore: {
  					  show: true,
  					  title: "Restore"
  					},
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				polar: [{
  				  indicator: [{
  					text: 'Sales',
  					max: 6000
  				  }, {
  					text: 'Administration',
  					max: 16000
  				  }, {
  					text: 'Information Techology',
  					max: 30000
  				  }, {
  					text: 'Customer Support',
  					max: 38000
  				  }, {
  					text: 'Development',
  					max: 52000
  				  }, {
  					text: 'Marketing',
  					max: 25000
  				  }]
  				}],
  				calculable: true,
  				series: [{
  				  name: 'Budget vs spending',
  				  type: 'radar',
  				  data: [{
  					value: [4300, 10000, 28000, 35000, 50000, 19000],
  					name: 'Allocated Budget'
  				  }, {
  					value: [5000, 14000, 28000, 31000, 42000, 21000],
  					name: 'Actual Spending'
  				  }]
  				}]
  			  });
  
221dd712   Eugeny Galkovskiy   menu
3118
3119
  			}
  
06692811   Eugeny Galkovskiy   first commit
3120
  			   //echart Funnel
221dd712   Eugeny Galkovskiy   menu
3121
3122
3123
  
  			if ($('#echart_pyramid').length ){
  
06692811   Eugeny Galkovskiy   first commit
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
  			  var echartFunnel = echarts.init(document.getElementById('echart_pyramid'), theme);
  
  			  echartFunnel.setOption({
  				title: {
  				  text: 'Echart Pyramid Graph',
  				  subtext: 'Subtitle'
  				},
  				tooltip: {
  				  trigger: 'item',
  				  formatter: "{a} <br/>{b} : {c}%"
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					restore: {
  					  show: true,
  					  title: "Restore"
  					},
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				legend: {
  				  data: ['Something #1', 'Something #2', 'Something #3', 'Something #4', 'Something #5'],
  				  orient: 'vertical',
  				  x: 'left',
  				  y: 'bottom'
  				},
  				calculable: true,
  				series: [{
  				  name: '漏斗图',
  				  type: 'funnel',
  				  width: '40%',
  				  data: [{
  					value: 60,
  					name: 'Something #1'
  				  }, {
  					value: 40,
  					name: 'Something #2'
  				  }, {
  					value: 20,
  					name: 'Something #3'
  				  }, {
  					value: 80,
  					name: 'Something #4'
  				  }, {
  					value: 100,
  					name: 'Something #5'
  				  }]
  				}]
  			  });
  
221dd712   Eugeny Galkovskiy   menu
3178
3179
  			}
  
06692811   Eugeny Galkovskiy   first commit
3180
  			   //echart Gauge
221dd712   Eugeny Galkovskiy   menu
3181
3182
3183
  
  			if ($('#echart_gauge').length ){
  
06692811   Eugeny Galkovskiy   first commit
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
  			  var echartGauge = echarts.init(document.getElementById('echart_gauge'), theme);
  
  			  echartGauge.setOption({
  				tooltip: {
  				  formatter: "{a} <br/>{b} : {c}%"
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					restore: {
  					  show: true,
  					  title: "Restore"
  					},
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				series: [{
  				  name: 'Performance',
  				  type: 'gauge',
  				  center: ['50%', '50%'],
  				  startAngle: 140,
  				  endAngle: -140,
  				  min: 0,
  				  max: 100,
  				  precision: 0,
  				  splitNumber: 10,
  				  axisLine: {
  					show: true,
  					lineStyle: {
  					  color: [
  						[0.2, 'lightgreen'],
  						[0.4, 'orange'],
  						[0.8, 'skyblue'],
  						[1, '#ff4500']
  					  ],
  					  width: 30
  					}
  				  },
  				  axisTick: {
  					show: true,
  					splitNumber: 5,
  					length: 8,
  					lineStyle: {
  					  color: '#eee',
  					  width: 1,
  					  type: 'solid'
  					}
  				  },
  				  axisLabel: {
  					show: true,
  					formatter: function(v) {
  					  switch (v + '') {
  						case '10':
  						  return 'a';
  						case '30':
  						  return 'b';
  						case '60':
  						  return 'c';
  						case '90':
  						  return 'd';
  						default:
  						  return '';
  					  }
  					},
  					textStyle: {
  					  color: '#333'
  					}
  				  },
  				  splitLine: {
  					show: true,
  					length: 30,
  					lineStyle: {
  					  color: '#eee',
  					  width: 2,
  					  type: 'solid'
  					}
  				  },
  				  pointer: {
  					length: '80%',
  					width: 8,
  					color: 'auto'
  				  },
  				  title: {
  					show: true,
  					offsetCenter: ['-65%', -10],
  					textStyle: {
  					  color: '#333',
  					  fontSize: 15
  					}
  				  },
  				  detail: {
  					show: true,
  					backgroundColor: 'rgba(0,0,0,0)',
  					borderWidth: 0,
  					borderColor: '#ccc',
  					width: 100,
  					height: 40,
  					offsetCenter: ['-60%', 10],
  					formatter: '{value}%',
  					textStyle: {
  					  color: 'auto',
  					  fontSize: 30
  					}
  				  },
  				  data: [{
  					value: 50,
  					name: 'Performance'
  				  }]
  				}]
  			  });
  
221dd712   Eugeny Galkovskiy   menu
3298
3299
  			}
  
06692811   Eugeny Galkovskiy   first commit
3300
  			   //echart Line
221dd712   Eugeny Galkovskiy   menu
3301
3302
3303
  
  			if ($('#echart_line').length ){
  
06692811   Eugeny Galkovskiy   first commit
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
  			  var echartLine = echarts.init(document.getElementById('echart_line'), theme);
  
  			  echartLine.setOption({
  				title: {
  				  text: 'Line Graph',
  				  subtext: 'Subtitle'
  				},
  				tooltip: {
  				  trigger: 'axis'
  				},
  				legend: {
  				  x: 220,
  				  y: 40,
  				  data: ['Intent', 'Pre-order', 'Deal']
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					magicType: {
  					  show: true,
  					  title: {
  						line: 'Line',
  						bar: 'Bar',
  						stack: 'Stack',
  						tiled: 'Tiled'
  					  },
  					  type: ['line', 'bar', 'stack', 'tiled']
  					},
  					restore: {
  					  show: true,
  					  title: "Restore"
  					},
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				calculable: true,
  				xAxis: [{
  				  type: 'category',
  				  boundaryGap: false,
  				  data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
  				}],
  				yAxis: [{
  				  type: 'value'
  				}],
  				series: [{
  				  name: 'Deal',
  				  type: 'line',
  				  smooth: true,
  				  itemStyle: {
  					normal: {
  					  areaStyle: {
  						type: 'default'
  					  }
  					}
  				  },
  				  data: [10, 12, 21, 54, 260, 830, 710]
  				}, {
  				  name: 'Pre-order',
  				  type: 'line',
  				  smooth: true,
  				  itemStyle: {
  					normal: {
  					  areaStyle: {
  						type: 'default'
  					  }
  					}
  				  },
  				  data: [30, 182, 434, 791, 390, 30, 10]
  				}, {
  				  name: 'Intent',
  				  type: 'line',
  				  smooth: true,
  				  itemStyle: {
  					normal: {
  					  areaStyle: {
  						type: 'default'
  					  }
  					}
  				  },
  				  data: [1320, 1132, 601, 234, 120, 90, 20]
  				}]
  			  });
  
221dd712   Eugeny Galkovskiy   menu
3390
3391
  			}
  
06692811   Eugeny Galkovskiy   first commit
3392
  			   //echart Scatter
221dd712   Eugeny Galkovskiy   menu
3393
3394
3395
  
  			if ($('#echart_scatter').length ){
  
06692811   Eugeny Galkovskiy   first commit
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
  			  var echartScatter = echarts.init(document.getElementById('echart_scatter'), theme);
  
  			  echartScatter.setOption({
  				title: {
  				  text: 'Scatter Graph',
  				  subtext: 'Heinz  2003'
  				},
  				tooltip: {
  				  trigger: 'axis',
  				  showDelay: 0,
  				  axisPointer: {
  					type: 'cross',
  					lineStyle: {
  					  type: 'dashed',
  					  width: 1
  					}
  				  }
  				},
  				legend: {
  				  data: ['Data2', 'Data1']
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				xAxis: [{
  				  type: 'value',
  				  scale: true,
  				  axisLabel: {
  					formatter: '{value} cm'
  				  }
  				}],
  				yAxis: [{
  				  type: 'value',
  				  scale: true,
  				  axisLabel: {
  					formatter: '{value} kg'
  				  }
  				}],
  				series: [{
  				  name: 'Data1',
  				  type: 'scatter',
  				  tooltip: {
  					trigger: 'item',
  					formatter: function(params) {
  					  if (params.value.length > 1) {
  						return params.seriesName + ' :<br/>' + params.value[0] + 'cm ' + params.value[1] + 'kg ';
  					  } else {
  						return params.seriesName + ' :<br/>' + params.name + ' : ' + params.value + 'kg ';
  					  }
  					}
  				  },
  				  data: [
  					[161.2, 51.6],
  					[167.5, 59.0],
  					[159.5, 49.2],
  					[157.0, 63.0],
  					[155.8, 53.6],
  					[170.0, 59.0],
  					[159.1, 47.6],
  					[166.0, 69.8],
  					[176.2, 66.8],
  					[160.2, 75.2],
  					[172.5, 55.2],
  					[170.9, 54.2],
  					[172.9, 62.5],
  					[153.4, 42.0],
  					[160.0, 50.0],
  					[147.2, 49.8],
  					[168.2, 49.2],
  					[175.0, 73.2],
  					[157.0, 47.8],
  					[167.6, 68.8],
  					[159.5, 50.6],
  					[175.0, 82.5],
  					[166.8, 57.2],
  					[176.5, 87.8],
  					[170.2, 72.8],
  					[174.0, 54.5],
  					[173.0, 59.8],
  					[179.9, 67.3],
  					[170.5, 67.8],
  					[160.0, 47.0],
  					[154.4, 46.2],
  					[162.0, 55.0],
  					[176.5, 83.0],
  					[160.0, 54.4],
  					[152.0, 45.8],
  					[162.1, 53.6],
  					[170.0, 73.2],
  					[160.2, 52.1],
  					[161.3, 67.9],
  					[166.4, 56.6],
  					[168.9, 62.3],
  					[163.8, 58.5],
  					[167.6, 54.5],
  					[160.0, 50.2],
  					[161.3, 60.3],
  					[167.6, 58.3],
  					[165.1, 56.2],
  					[160.0, 50.2],
  					[170.0, 72.9],
  					[157.5, 59.8],
  					[167.6, 61.0],
  					[160.7, 69.1],
  					[163.2, 55.9],
  					[152.4, 46.5],
  					[157.5, 54.3],
  					[168.3, 54.8],
  					[180.3, 60.7],
  					[165.5, 60.0],
  					[165.0, 62.0],
  					[164.5, 60.3],
  					[156.0, 52.7],
  					[160.0, 74.3],
  					[163.0, 62.0],
  					[165.7, 73.1],
  					[161.0, 80.0],
  					[162.0, 54.7],
  					[166.0, 53.2],
  					[174.0, 75.7],
  					[172.7, 61.1],
  					[167.6, 55.7],
  					[151.1, 48.7],
  					[164.5, 52.3],
  					[163.5, 50.0],
  					[152.0, 59.3],
  					[169.0, 62.5],
  					[164.0, 55.7],
  					[161.2, 54.8],
  					[155.0, 45.9],
  					[170.0, 70.6],
  					[176.2, 67.2],
  					[170.0, 69.4],
  					[162.5, 58.2],
  					[170.3, 64.8],
  					[164.1, 71.6],
  					[169.5, 52.8],
  					[163.2, 59.8],
  					[154.5, 49.0],
  					[159.8, 50.0],
  					[173.2, 69.2],
  					[170.0, 55.9],
  					[161.4, 63.4],
  					[169.0, 58.2],
  					[166.2, 58.6],
  					[159.4, 45.7],
  					[162.5, 52.2],
  					[159.0, 48.6],
  					[162.8, 57.8],
  					[159.0, 55.6],
  					[179.8, 66.8],
  					[162.9, 59.4],
  					[161.0, 53.6],
  					[151.1, 73.2],
  					[168.2, 53.4],
  					[168.9, 69.0],
  					[173.2, 58.4],
  					[171.8, 56.2],
  					[178.0, 70.6],
  					[164.3, 59.8],
  					[163.0, 72.0],
  					[168.5, 65.2],
  					[166.8, 56.6],
  					[172.7, 105.2],
  					[163.5, 51.8],
  					[169.4, 63.4],
  					[167.8, 59.0],
  					[159.5, 47.6],
  					[167.6, 63.0],
  					[161.2, 55.2],
  					[160.0, 45.0],
  					[163.2, 54.0],
  					[162.2, 50.2],
  					[161.3, 60.2],
  					[149.5, 44.8],
  					[157.5, 58.8],
  					[163.2, 56.4],
  					[172.7, 62.0],
  					[155.0, 49.2],
  					[156.5, 67.2],
  					[164.0, 53.8],
  					[160.9, 54.4],
  					[162.8, 58.0],
  					[167.0, 59.8],
  					[160.0, 54.8],
  					[160.0, 43.2],
  					[168.9, 60.5],
  					[158.2, 46.4],
  					[156.0, 64.4],
  					[160.0, 48.8],
  					[167.1, 62.2],
  					[158.0, 55.5],
  					[167.6, 57.8],
  					[156.0, 54.6],
  					[162.1, 59.2],
  					[173.4, 52.7],
  					[159.8, 53.2],
  					[170.5, 64.5],
  					[159.2, 51.8],
  					[157.5, 56.0],
  					[161.3, 63.6],
  					[162.6, 63.2],
  					[160.0, 59.5],
  					[168.9, 56.8],
  					[165.1, 64.1],
  					[162.6, 50.0],
  					[165.1, 72.3],
  					[166.4, 55.0],
  					[160.0, 55.9],
  					[152.4, 60.4],
  					[170.2, 69.1],
  					[162.6, 84.5],
  					[170.2, 55.9],
  					[158.8, 55.5],
  					[172.7, 69.5],
  					[167.6, 76.4],
  					[162.6, 61.4],
  					[167.6, 65.9],
  					[156.2, 58.6],
  					[175.2, 66.8],
  					[172.1, 56.6],
  					[162.6, 58.6],
  					[160.0, 55.9],
  					[165.1, 59.1],
  					[182.9, 81.8],
  					[166.4, 70.7],
  					[165.1, 56.8],
  					[177.8, 60.0],
  					[165.1, 58.2],
  					[175.3, 72.7],
  					[154.9, 54.1],
  					[158.8, 49.1],
  					[172.7, 75.9],
  					[168.9, 55.0],
  					[161.3, 57.3],
  					[167.6, 55.0],
  					[165.1, 65.5],
  					[175.3, 65.5],
  					[157.5, 48.6],
  					[163.8, 58.6],
  					[167.6, 63.6],
  					[165.1, 55.2],
  					[165.1, 62.7],
  					[168.9, 56.6],
  					[162.6, 53.9],
  					[164.5, 63.2],
  					[176.5, 73.6],
  					[168.9, 62.0],
  					[175.3, 63.6],
  					[159.4, 53.2],
  					[160.0, 53.4],
  					[170.2, 55.0],
  					[162.6, 70.5],
  					[167.6, 54.5],
  					[162.6, 54.5],
  					[160.7, 55.9],
  					[160.0, 59.0],
  					[157.5, 63.6],
  					[162.6, 54.5],
  					[152.4, 47.3],
  					[170.2, 67.7],
  					[165.1, 80.9],
  					[172.7, 70.5],
  					[165.1, 60.9],
  					[170.2, 63.6],
  					[170.2, 54.5],
  					[170.2, 59.1],
  					[161.3, 70.5],
  					[167.6, 52.7],
  					[167.6, 62.7],
  					[165.1, 86.3],
  					[162.6, 66.4],
  					[152.4, 67.3],
  					[168.9, 63.0],
  					[170.2, 73.6],
  					[175.2, 62.3],
  					[175.2, 57.7],
  					[160.0, 55.4],
  					[165.1, 104.1],
  					[174.0, 55.5],
  					[170.2, 77.3],
  					[160.0, 80.5],
  					[167.6, 64.5],
  					[167.6, 72.3],
  					[167.6, 61.4],
  					[154.9, 58.2],
  					[162.6, 81.8],
  					[175.3, 63.6],
  					[171.4, 53.4],
  					[157.5, 54.5],
  					[165.1, 53.6],
  					[160.0, 60.0],
  					[174.0, 73.6],
  					[162.6, 61.4],
  					[174.0, 55.5],
  					[162.6, 63.6],
  					[161.3, 60.9],
  					[156.2, 60.0],
  					[149.9, 46.8],
  					[169.5, 57.3],
  					[160.0, 64.1],
  					[175.3, 63.6],
  					[169.5, 67.3],
  					[160.0, 75.5],
  					[172.7, 68.2],
  					[162.6, 61.4],
  					[157.5, 76.8],
  					[176.5, 71.8],
  					[164.4, 55.5],
  					[160.7, 48.6],
  					[174.0, 66.4],
  					[163.8, 67.3]
  				  ],
  				  markPoint: {
  					data: [{
  					  type: 'max',
  					  name: 'Max'
  					}, {
  					  type: 'min',
  					  name: 'Min'
  					}]
  				  },
  				  markLine: {
  					data: [{
  					  type: 'average',
  					  name: 'Mean'
  					}]
  				  }
  				}, {
  				  name: 'Data2',
  				  type: 'scatter',
  				  tooltip: {
  					trigger: 'item',
  					formatter: function(params) {
  					  if (params.value.length > 1) {
  						return params.seriesName + ' :<br/>' + params.value[0] + 'cm ' + params.value[1] + 'kg ';
  					  } else {
  						return params.seriesName + ' :<br/>' + params.name + ' : ' + params.value + 'kg ';
  					  }
  					}
  				  },
  				  data: [
  					[174.0, 65.6],
  					[175.3, 71.8],
  					[193.5, 80.7],
  					[186.5, 72.6],
  					[187.2, 78.8],
  					[181.5, 74.8],
  					[184.0, 86.4],
  					[184.5, 78.4],
  					[175.0, 62.0],
  					[184.0, 81.6],
  					[180.0, 76.6],
  					[177.8, 83.6],
  					[192.0, 90.0],
  					[176.0, 74.6],
  					[174.0, 71.0],
  					[184.0, 79.6],
  					[192.7, 93.8],
  					[171.5, 70.0],
  					[173.0, 72.4],
  					[176.0, 85.9],
  					[176.0, 78.8],
  					[180.5, 77.8],
  					[172.7, 66.2],
  					[176.0, 86.4],
  					[173.5, 81.8],
  					[178.0, 89.6],
  					[180.3, 82.8],
  					[180.3, 76.4],
  					[164.5, 63.2],
  					[173.0, 60.9],
  					[183.5, 74.8],
  					[175.5, 70.0],
  					[188.0, 72.4],
  					[189.2, 84.1],
  					[172.8, 69.1],
  					[170.0, 59.5],
  					[182.0, 67.2],
  					[170.0, 61.3],
  					[177.8, 68.6],
  					[184.2, 80.1],
  					[186.7, 87.8],
  					[171.4, 84.7],
  					[172.7, 73.4],
  					[175.3, 72.1],
  					[180.3, 82.6],
  					[182.9, 88.7],
  					[188.0, 84.1],
  					[177.2, 94.1],
  					[172.1, 74.9],
  					[167.0, 59.1],
  					[169.5, 75.6],
  					[174.0, 86.2],
  					[172.7, 75.3],
  					[182.2, 87.1],
  					[164.1, 55.2],
  					[163.0, 57.0],
  					[171.5, 61.4],
  					[184.2, 76.8],
  					[174.0, 86.8],
  					[174.0, 72.2],
  					[177.0, 71.6],
  					[186.0, 84.8],
  					[167.0, 68.2],
  					[171.8, 66.1],
  					[182.0, 72.0],
  					[167.0, 64.6],
  					[177.8, 74.8],
  					[164.5, 70.0],
  					[192.0, 101.6],
  					[175.5, 63.2],
  					[171.2, 79.1],
  					[181.6, 78.9],
  					[167.4, 67.7],
  					[181.1, 66.0],
  					[177.0, 68.2],
  					[174.5, 63.9],
  					[177.5, 72.0],
  					[170.5, 56.8],
  					[182.4, 74.5],
  					[197.1, 90.9],
  					[180.1, 93.0],
  					[175.5, 80.9],
  					[180.6, 72.7],
  					[184.4, 68.0],
  					[175.5, 70.9],
  					[180.6, 72.5],
  					[177.0, 72.5],
  					[177.1, 83.4],
  					[181.6, 75.5],
  					[176.5, 73.0],
  					[175.0, 70.2],
  					[174.0, 73.4],
  					[165.1, 70.5],
  					[177.0, 68.9],
  					[192.0, 102.3],
  					[176.5, 68.4],
  					[169.4, 65.9],
  					[182.1, 75.7],
  					[179.8, 84.5],
  					[175.3, 87.7],
  					[184.9, 86.4],
  					[177.3, 73.2],
  					[167.4, 53.9],
  					[178.1, 72.0],
  					[168.9, 55.5],
  					[157.2, 58.4],
  					[180.3, 83.2],
  					[170.2, 72.7],
  					[177.8, 64.1],
  					[172.7, 72.3],
  					[165.1, 65.0],
  					[186.7, 86.4],
  					[165.1, 65.0],
  					[174.0, 88.6],
  					[175.3, 84.1],
  					[185.4, 66.8],
  					[177.8, 75.5],
  					[180.3, 93.2],
  					[180.3, 82.7],
  					[177.8, 58.0],
  					[177.8, 79.5],
  					[177.8, 78.6],
  					[177.8, 71.8],
  					[177.8, 116.4],
  					[163.8, 72.2],
  					[188.0, 83.6],
  					[198.1, 85.5],
  					[175.3, 90.9],
  					[166.4, 85.9],
  					[190.5, 89.1],
  					[166.4, 75.0],
  					[177.8, 77.7],
  					[179.7, 86.4],
  					[172.7, 90.9],
  					[190.5, 73.6],
  					[185.4, 76.4],
  					[168.9, 69.1],
  					[167.6, 84.5],
  					[175.3, 64.5],
  					[170.2, 69.1],
  					[190.5, 108.6],
  					[177.8, 86.4],
  					[190.5, 80.9],
  					[177.8, 87.7],
  					[184.2, 94.5],
  					[176.5, 80.2],
  					[177.8, 72.0],
  					[180.3, 71.4],
  					[171.4, 72.7],
  					[172.7, 84.1],
  					[172.7, 76.8],
  					[177.8, 63.6],
  					[177.8, 80.9],
  					[182.9, 80.9],
  					[170.2, 85.5],
  					[167.6, 68.6],
  					[175.3, 67.7],
  					[165.1, 66.4],
  					[185.4, 102.3],
  					[181.6, 70.5],
  					[172.7, 95.9],
  					[190.5, 84.1],
  					[179.1, 87.3],
  					[175.3, 71.8],
  					[170.2, 65.9],
  					[193.0, 95.9],
  					[171.4, 91.4],
  					[177.8, 81.8],
  					[177.8, 96.8],
  					[167.6, 69.1],
  					[167.6, 82.7],
  					[180.3, 75.5],
  					[182.9, 79.5],
  					[176.5, 73.6],
  					[186.7, 91.8],
  					[188.0, 84.1],
  					[188.0, 85.9],
  					[177.8, 81.8],
  					[174.0, 82.5],
  					[177.8, 80.5],
  					[171.4, 70.0],
  					[185.4, 81.8],
  					[185.4, 84.1],
  					[188.0, 90.5],
  					[188.0, 91.4],
  					[182.9, 89.1],
  					[176.5, 85.0],
  					[175.3, 69.1],
  					[175.3, 73.6],
  					[188.0, 80.5],
  					[188.0, 82.7],
  					[175.3, 86.4],
  					[170.5, 67.7],
  					[179.1, 92.7],
  					[177.8, 93.6],
  					[175.3, 70.9],
  					[182.9, 75.0],
  					[170.8, 93.2],
  					[188.0, 93.2],
  					[180.3, 77.7],
  					[177.8, 61.4],
  					[185.4, 94.1],
  					[168.9, 75.0],
  					[185.4, 83.6],
  					[180.3, 85.5],
  					[174.0, 73.9],
  					[167.6, 66.8],
  					[182.9, 87.3],
  					[160.0, 72.3],
  					[180.3, 88.6],
  					[167.6, 75.5],
  					[186.7, 101.4],
  					[175.3, 91.1],
  					[175.3, 67.3],
  					[175.9, 77.7],
  					[175.3, 81.8],
  					[179.1, 75.5],
  					[181.6, 84.5],
  					[177.8, 76.6],
  					[182.9, 85.0],
  					[177.8, 102.5],
  					[184.2, 77.3],
  					[179.1, 71.8],
  					[176.5, 87.9],
  					[188.0, 94.3],
  					[174.0, 70.9],
  					[167.6, 64.5],
  					[170.2, 77.3],
  					[167.6, 72.3],
  					[188.0, 87.3],
  					[174.0, 80.0],
  					[176.5, 82.3],
  					[180.3, 73.6],
  					[167.6, 74.1],
  					[188.0, 85.9],
  					[180.3, 73.2],
  					[167.6, 76.3],
  					[183.0, 65.9],
  					[183.0, 90.9],
  					[179.1, 89.1],
  					[170.2, 62.3],
  					[177.8, 82.7],
  					[179.1, 79.1],
  					[190.5, 98.2],
  					[177.8, 84.1],
  					[180.3, 83.2],
  					[180.3, 83.2]
  				  ],
  				  markPoint: {
  					data: [{
  					  type: 'max',
  					  name: 'Max'
  					}, {
  					  type: 'min',
  					  name: 'Min'
  					}]
  				  },
  				  markLine: {
  					data: [{
  					  type: 'average',
  					  name: 'Mean'
  					}]
  				  }
  				}]
  			  });
  
221dd712   Eugeny Galkovskiy   menu
4010
4011
  			}
  
06692811   Eugeny Galkovskiy   first commit
4012
  			   //echart Bar Horizontal
221dd712   Eugeny Galkovskiy   menu
4013
4014
4015
  
  			if ($('#echart_bar_horizontal').length ){
  
06692811   Eugeny Galkovskiy   first commit
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
  			  var echartBar = echarts.init(document.getElementById('echart_bar_horizontal'), theme);
  
  			  echartBar.setOption({
  				title: {
  				  text: 'Bar Graph',
  				  subtext: 'Graph subtitle'
  				},
  				tooltip: {
  				  trigger: 'axis'
  				},
  				legend: {
  				  x: 100,
  				  data: ['2015', '2016']
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				calculable: true,
  				xAxis: [{
  				  type: 'value',
  				  boundaryGap: [0, 0.01]
  				}],
  				yAxis: [{
  				  type: 'category',
  				  data: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
  				}],
  				series: [{
  				  name: '2015',
  				  type: 'bar',
  				  data: [18203, 23489, 29034, 104970, 131744, 630230]
  				}, {
  				  name: '2016',
  				  type: 'bar',
  				  data: [19325, 23438, 31000, 121594, 134141, 681807]
  				}]
  			  });
  
221dd712   Eugeny Galkovskiy   menu
4059
4060
  			}
  
06692811   Eugeny Galkovskiy   first commit
4061
  			   //echart Pie Collapse
221dd712   Eugeny Galkovskiy   menu
4062
4063
4064
  
  			if ($('#echart_pie2').length ){
  
06692811   Eugeny Galkovskiy   first commit
4065
  			  var echartPieCollapse = echarts.init(document.getElementById('echart_pie2'), theme);
221dd712   Eugeny Galkovskiy   menu
4066
  
06692811   Eugeny Galkovskiy   first commit
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
  			  echartPieCollapse.setOption({
  				tooltip: {
  				  trigger: 'item',
  				  formatter: "{a} <br/>{b} : {c} ({d}%)"
  				},
  				legend: {
  				  x: 'center',
  				  y: 'bottom',
  				  data: ['rose1', 'rose2', 'rose3', 'rose4', 'rose5', 'rose6']
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					magicType: {
  					  show: true,
  					  type: ['pie', 'funnel']
  					},
  					restore: {
  					  show: true,
  					  title: "Restore"
  					},
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				calculable: true,
  				series: [{
  				  name: 'Area Mode',
  				  type: 'pie',
  				  radius: [25, 90],
  				  center: ['50%', 170],
  				  roseType: 'area',
  				  x: '50%',
  				  max: 40,
  				  sort: 'ascending',
  				  data: [{
  					value: 10,
  					name: 'rose1'
  				  }, {
  					value: 5,
  					name: 'rose2'
  				  }, {
  					value: 15,
  					name: 'rose3'
  				  }, {
  					value: 25,
  					name: 'rose4'
  				  }, {
  					value: 20,
  					name: 'rose5'
  				  }, {
  					value: 35,
  					name: 'rose6'
  				  }]
  				}]
  			  });
  
221dd712   Eugeny Galkovskiy   menu
4126
4127
  			}
  
06692811   Eugeny Galkovskiy   first commit
4128
  			   //echart Donut
221dd712   Eugeny Galkovskiy   menu
4129
4130
4131
  
  			if ($('#echart_donut').length ){
  
06692811   Eugeny Galkovskiy   first commit
4132
  			  var echartDonut = echarts.init(document.getElementById('echart_donut'), theme);
221dd712   Eugeny Galkovskiy   menu
4133
  
06692811   Eugeny Galkovskiy   first commit
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
  			  echartDonut.setOption({
  				tooltip: {
  				  trigger: 'item',
  				  formatter: "{a} <br/>{b} : {c} ({d}%)"
  				},
  				calculable: true,
  				legend: {
  				  x: 'center',
  				  y: 'bottom',
  				  data: ['Direct Access', 'E-mail Marketing', 'Union Ad', 'Video Ads', 'Search Engine']
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					magicType: {
  					  show: true,
  					  type: ['pie', 'funnel'],
  					  option: {
  						funnel: {
  						  x: '25%',
  						  width: '50%',
  						  funnelAlign: 'center',
  						  max: 1548
  						}
  					  }
  					},
  					restore: {
  					  show: true,
  					  title: "Restore"
  					},
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				series: [{
  				  name: 'Access to the resource',
  				  type: 'pie',
  				  radius: ['35%', '55%'],
  				  itemStyle: {
  					normal: {
  					  label: {
  						show: true
  					  },
  					  labelLine: {
  						show: true
  					  }
  					},
  					emphasis: {
  					  label: {
  						show: true,
  						position: 'center',
  						textStyle: {
  						  fontSize: '14',
  						  fontWeight: 'normal'
  						}
  					  }
  					}
  				  },
  				  data: [{
  					value: 335,
  					name: 'Direct Access'
  				  }, {
  					value: 310,
  					name: 'E-mail Marketing'
  				  }, {
  					value: 234,
  					name: 'Union Ad'
  				  }, {
  					value: 135,
  					name: 'Video Ads'
  				  }, {
  					value: 1548,
  					name: 'Search Engine'
  				  }]
  				}]
  			  });
  
221dd712   Eugeny Galkovskiy   menu
4213
4214
  			}
  
06692811   Eugeny Galkovskiy   first commit
4215
  			   //echart Pie
221dd712   Eugeny Galkovskiy   menu
4216
4217
4218
  
  			if ($('#echart_pie').length ){
  
06692811   Eugeny Galkovskiy   first commit
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
  			  var echartPie = echarts.init(document.getElementById('echart_pie'), theme);
  
  			  echartPie.setOption({
  				tooltip: {
  				  trigger: 'item',
  				  formatter: "{a} <br/>{b} : {c} ({d}%)"
  				},
  				legend: {
  				  x: 'center',
  				  y: 'bottom',
  				  data: ['Direct Access', 'E-mail Marketing', 'Union Ad', 'Video Ads', 'Search Engine']
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					magicType: {
  					  show: true,
  					  type: ['pie', 'funnel'],
  					  option: {
  						funnel: {
  						  x: '25%',
  						  width: '50%',
  						  funnelAlign: 'left',
  						  max: 1548
  						}
  					  }
  					},
  					restore: {
  					  show: true,
  					  title: "Restore"
  					},
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				calculable: true,
  				series: [{
  				  name: '访问来源',
  				  type: 'pie',
  				  radius: '55%',
  				  center: ['50%', '48%'],
  				  data: [{
  					value: 335,
  					name: 'Direct Access'
  				  }, {
  					value: 310,
  					name: 'E-mail Marketing'
  				  }, {
  					value: 234,
  					name: 'Union Ad'
  				  }, {
  					value: 135,
  					name: 'Video Ads'
  				  }, {
  					value: 1548,
  					name: 'Search Engine'
  				  }]
  				}]
  			  });
  
  			  var dataStyle = {
  				normal: {
  				  label: {
  					show: false
  				  },
  				  labelLine: {
  					show: false
  				  }
  				}
  			  };
  
  			  var placeHolderStyle = {
  				normal: {
  				  color: 'rgba(0,0,0,0)',
  				  label: {
  					show: false
  				  },
  				  labelLine: {
  					show: false
  				  }
  				},
  				emphasis: {
  				  color: 'rgba(0,0,0,0)'
  				}
  			  };
  
221dd712   Eugeny Galkovskiy   menu
4307
4308
  			}
  
06692811   Eugeny Galkovskiy   first commit
4309
  			   //echart Mini Pie
221dd712   Eugeny Galkovskiy   menu
4310
4311
4312
  
  			if ($('#echart_mini_pie').length ){
  
06692811   Eugeny Galkovskiy   first commit
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
  			  var echartMiniPie = echarts.init(document.getElementById('echart_mini_pie'), theme);
  
  			  echartMiniPie .setOption({
  				title: {
  				  text: 'Chart #2',
  				  subtext: 'From ExcelHome',
  				  sublink: 'http://e.weibo.com/1341556070/AhQXtjbqh',
  				  x: 'center',
  				  y: 'center',
  				  itemGap: 20,
  				  textStyle: {
  					color: 'rgba(30,144,255,0.8)',
  					fontFamily: '微软雅黑',
  					fontSize: 35,
  					fontWeight: 'bolder'
  				  }
  				},
  				tooltip: {
  				  show: true,
  				  formatter: "{a} <br/>{b} : {c} ({d}%)"
  				},
  				legend: {
  				  orient: 'vertical',
  				  x: 170,
  				  y: 45,
  				  itemGap: 12,
  				  data: ['68%Something #1', '29%Something #2', '3%Something #3'],
  				},
  				toolbox: {
  				  show: true,
  				  feature: {
  					mark: {
  					  show: true
  					},
  					dataView: {
  					  show: true,
  					  title: "Text View",
  					  lang: [
  						"Text View",
  						"Close",
  						"Refresh",
  					  ],
  					  readOnly: false
  					},
  					restore: {
  					  show: true,
  					  title: "Restore"
  					},
  					saveAsImage: {
  					  show: true,
  					  title: "Save Image"
  					}
  				  }
  				},
  				series: [{
  				  name: '1',
  				  type: 'pie',
  				  clockWise: false,
  				  radius: [105, 130],
  				  itemStyle: dataStyle,
  				  data: [{
  					value: 68,
  					name: '68%Something #1'
  				  }, {
  					value: 32,
  					name: 'invisible',
  					itemStyle: placeHolderStyle
  				  }]
  				}, {
  				  name: '2',
  				  type: 'pie',
  				  clockWise: false,
  				  radius: [80, 105],
  				  itemStyle: dataStyle,
  				  data: [{
  					value: 29,
  					name: '29%Something #2'
  				  }, {
  					value: 71,
  					name: 'invisible',
  					itemStyle: placeHolderStyle
  				  }]
  				}, {
  				  name: '3',
  				  type: 'pie',
  				  clockWise: false,
  				  radius: [25, 80],
  				  itemStyle: dataStyle,
  				  data: [{
  					value: 3,
  					name: '3%Something #3'
  				  }, {
  					value: 97,
  					name: 'invisible',
  					itemStyle: placeHolderStyle
  				  }]
  				}]
  			  });
  
221dd712   Eugeny Galkovskiy   menu
4412
4413
  			}
  
06692811   Eugeny Galkovskiy   first commit
4414
  			   //echart Map
221dd712   Eugeny Galkovskiy   menu
4415
4416
4417
  
  			if ($('#echart_world_map').length ){
  
06692811   Eugeny Galkovskiy   first commit
4418
  				  var echartMap = echarts.init(document.getElementById('echart_world_map'), theme);
221dd712   Eugeny Galkovskiy   menu
4419
4420
  
  
06692811   Eugeny Galkovskiy   first commit
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
  				  echartMap.setOption({
  					title: {
  					  text: 'World Population (2010)',
  					  subtext: 'from United Nations, Total population, both sexes combined, as of 1 July (thousands)',
  					  x: 'center',
  					  y: 'top'
  					},
  					tooltip: {
  					  trigger: 'item',
  					  formatter: function(params) {
  						var value = (params.value + '').split('.');
  						value = value[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g, '$1,') + '.' + value[1];
  						return params.seriesName + '<br/>' + params.name + ' : ' + value;
  					  }
  					},
  					toolbox: {
  					  show: true,
  					  orient: 'vertical',
  					  x: 'right',
  					  y: 'center',
  					  feature: {
  						mark: {
  						  show: true
  						},
  						dataView: {
  						  show: true,
  						  title: "Text View",
  						  lang: [
  							"Text View",
  							"Close",
  							"Refresh",
  						  ],
  						  readOnly: false
  						},
  						restore: {
  						  show: true,
  						  title: "Restore"
  						},
  						saveAsImage: {
  						  show: true,
  						  title: "Save Image"
  						}
  					  }
  					},
  					dataRange: {
  					  min: 0,
  					  max: 1000000,
  					  text: ['High', 'Low'],
  					  realtime: false,
  					  calculable: true,
  					  color: ['#087E65', '#26B99A', '#CBEAE3']
  					},
  					series: [{
  					  name: 'World Population (2010)',
  					  type: 'map',
  					  mapType: 'world',
  					  roam: false,
  					  mapLocation: {
  						y: 60
  					  },
  					  itemStyle: {
  						emphasis: {
  						  label: {
  							show: true
  						  }
  						}
  					  },
  					  data: [{
  						name: 'Afghanistan',
  						value: 28397.812
  					  }, {
  						name: 'Angola',
  						value: 19549.124
  					  }, {
  						name: 'Albania',
  						value: 3150.143
  					  }, {
  						name: 'United Arab Emirates',
  						value: 8441.537
  					  }, {
  						name: 'Argentina',
  						value: 40374.224
  					  }, {
  						name: 'Armenia',
  						value: 2963.496
  					  }, {
  						name: 'French Southern and Antarctic Lands',
  						value: 268.065
  					  }, {
  						name: 'Australia',
  						value: 22404.488
  					  }, {
  						name: 'Austria',
  						value: 8401.924
  					  }, {
  						name: 'Azerbaijan',
  						value: 9094.718
  					  }, {
  						name: 'Burundi',
  						value: 9232.753
  					  }, {
  						name: 'Belgium',
  						value: 10941.288
  					  }, {
  						name: 'Benin',
  						value: 9509.798
  					  }, {
  						name: 'Burkina Faso',
  						value: 15540.284
  					  }, {
  						name: 'Bangladesh',
  						value: 151125.475
  					  }, {
  						name: 'Bulgaria',
  						value: 7389.175
  					  }, {
  						name: 'The Bahamas',
  						value: 66402.316
  					  }, {
  						name: 'Bosnia and Herzegovina',
  						value: 3845.929
  					  }, {
  						name: 'Belarus',
  						value: 9491.07
  					  }, {
  						name: 'Belize',
  						value: 308.595
  					  }, {
  						name: 'Bermuda',
  						value: 64.951
  					  }, {
  						name: 'Bolivia',
  						value: 716.939
  					  }, {
  						name: 'Brazil',
  						value: 195210.154
  					  }, {
  						name: 'Brunei',
  						value: 27.223
  					  }, {
  						name: 'Bhutan',
  						value: 716.939
  					  }, {
  						name: 'Botswana',
  						value: 1969.341
  					  }, {
  						name: 'Central African Republic',
  						value: 4349.921
  					  }, {
  						name: 'Canada',
  						value: 34126.24
  					  }, {
  						name: 'Switzerland',
  						value: 7830.534
  					  }, {
  						name: 'Chile',
  						value: 17150.76
  					  }, {
  						name: 'China',
  						value: 1359821.465
  					  }, {
  						name: 'Ivory Coast',
  						value: 60508.978
  					  }, {
  						name: 'Cameroon',
  						value: 20624.343
  					  }, {
  						name: 'Democratic Republic of the Congo',
  						value: 62191.161
  					  }, {
  						name: 'Republic of the Congo',
  						value: 3573.024
  					  }, {
  						name: 'Colombia',
  						value: 46444.798
  					  }, {
  						name: 'Costa Rica',
  						value: 4669.685
  					  }, {
  						name: 'Cuba',
  						value: 11281.768
  					  }, {
  						name: 'Northern Cyprus',
  						value: 1.468
  					  }, {
  						name: 'Cyprus',
  						value: 1103.685
  					  }, {
  						name: 'Czech Republic',
  						value: 10553.701
  					  }, {
  						name: 'Germany',
  						value: 83017.404
  					  }, {
  						name: 'Djibouti',
  						value: 834.036
  					  }, {
  						name: 'Denmark',
  						value: 5550.959
  					  }, {
  						name: 'Dominican Republic',
  						value: 10016.797
  					  }, {
  						name: 'Algeria',
  						value: 37062.82
  					  }, {
  						name: 'Ecuador',
  						value: 15001.072
  					  }, {
  						name: 'Egypt',
  						value: 78075.705
  					  }, {
  						name: 'Eritrea',
  						value: 5741.159
  					  }, {
  						name: 'Spain',
  						value: 46182.038
  					  }, {
  						name: 'Estonia',
  						value: 1298.533
  					  }, {
  						name: 'Ethiopia',
  						value: 87095.281
  					  }, {
  						name: 'Finland',
  						value: 5367.693
  					  }, {
  						name: 'Fiji',
  						value: 860.559
  					  }, {
  						name: 'Falkland Islands',
  						value: 49.581
  					  }, {
  						name: 'France',
  						value: 63230.866
  					  }, {
  						name: 'Gabon',
  						value: 1556.222
  					  }, {
  						name: 'United Kingdom',
  						value: 62066.35
  					  }, {
  						name: 'Georgia',
  						value: 4388.674
  					  }, {
  						name: 'Ghana',
  						value: 24262.901
  					  }, {
  						name: 'Guinea',
  						value: 10876.033
  					  }, {
  						name: 'Gambia',
  						value: 1680.64
  					  }, {
  						name: 'Guinea Bissau',
  						value: 10876.033
  					  }, {
  						name: 'Equatorial Guinea',
  						value: 696.167
  					  }, {
  						name: 'Greece',
  						value: 11109.999
  					  }, {
  						name: 'Greenland',
  						value: 56.546
  					  }, {
  						name: 'Guatemala',
  						value: 14341.576
  					  }, {
  						name: 'French Guiana',
  						value: 231.169
  					  }, {
  						name: 'Guyana',
  						value: 786.126
  					  }, {
  						name: 'Honduras',
  						value: 7621.204
  					  }, {
  						name: 'Croatia',
  						value: 4338.027
  					  }, {
  						name: 'Haiti',
  						value: 9896.4
  					  }, {
  						name: 'Hungary',
  						value: 10014.633
  					  }, {
  						name: 'Indonesia',
  						value: 240676.485
  					  }, {
  						name: 'India',
  						value: 1205624.648
  					  }, {
  						name: 'Ireland',
  						value: 4467.561
  					  }, {
  						name: 'Iran',
  						value: 240676.485
  					  }, {
  						name: 'Iraq',
  						value: 30962.38
  					  }, {
  						name: 'Iceland',
  						value: 318.042
  					  }, {
  						name: 'Israel',
  						value: 7420.368
  					  }, {
  						name: 'Italy',
  						value: 60508.978
  					  }, {
  						name: 'Jamaica',
  						value: 2741.485
  					  }, {
  						name: 'Jordan',
  						value: 6454.554
  					  }, {
  						name: 'Japan',
  						value: 127352.833
  					  }, {
  						name: 'Kazakhstan',
  						value: 15921.127
  					  }, {
  						name: 'Kenya',
  						value: 40909.194
  					  }, {
  						name: 'Kyrgyzstan',
  						value: 5334.223
  					  }, {
  						name: 'Cambodia',
  						value: 14364.931
  					  }, {
  						name: 'South Korea',
  						value: 51452.352
  					  }, {
  						name: 'Kosovo',
  						value: 97.743
  					  }, {
  						name: 'Kuwait',
  						value: 2991.58
  					  }, {
  						name: 'Laos',
  						value: 6395.713
  					  }, {
  						name: 'Lebanon',
  						value: 4341.092
  					  }, {
  						name: 'Liberia',
  						value: 3957.99
  					  }, {
  						name: 'Libya',
  						value: 6040.612
  					  }, {
  						name: 'Sri Lanka',
  						value: 20758.779
  					  }, {
  						name: 'Lesotho',
  						value: 2008.921
  					  }, {
  						name: 'Lithuania',
  						value: 3068.457
  					  }, {
  						name: 'Luxembourg',
  						value: 507.885
  					  }, {
  						name: 'Latvia',
  						value: 2090.519
  					  }, {
  						name: 'Morocco',
  						value: 31642.36
  					  }, {
  						name: 'Moldova',
  						value: 103.619
  					  }, {
  						name: 'Madagascar',
  						value: 21079.532
  					  }, {
  						name: 'Mexico',
  						value: 117886.404
  					  }, {
  						name: 'Macedonia',
  						value: 507.885
  					  }, {
  						name: 'Mali',
  						value: 13985.961
  					  }, {
  						name: 'Myanmar',
  						value: 51931.231
  					  }, {
  						name: 'Montenegro',
  						value: 620.078
  					  }, {
  						name: 'Mongolia',
  						value: 2712.738
  					  }, {
  						name: 'Mozambique',
  						value: 23967.265
  					  }, {
  						name: 'Mauritania',
  						value: 3609.42
  					  }, {
  						name: 'Malawi',
  						value: 15013.694
  					  }, {
  						name: 'Malaysia',
  						value: 28275.835
  					  }, {
  						name: 'Namibia',
  						value: 2178.967
  					  }, {
  						name: 'New Caledonia',
  						value: 246.379
  					  }, {
  						name: 'Niger',
  						value: 15893.746
  					  }, {
  						name: 'Nigeria',
  						value: 159707.78
  					  }, {
  						name: 'Nicaragua',
  						value: 5822.209
  					  }, {
  						name: 'Netherlands',
  						value: 16615.243
  					  }, {
  						name: 'Norway',
  						value: 4891.251
  					  }, {
  						name: 'Nepal',
  						value: 26846.016
  					  }, {
  						name: 'New Zealand',
  						value: 4368.136
  					  }, {
  						name: 'Oman',
  						value: 2802.768
  					  }, {
  						name: 'Pakistan',
  						value: 173149.306
  					  }, {
  						name: 'Panama',
  						value: 3678.128
  					  }, {
  						name: 'Peru',
  						value: 29262.83
  					  }, {
  						name: 'Philippines',
  						value: 93444.322
  					  }, {
  						name: 'Papua New Guinea',
  						value: 6858.945
  					  }, {
  						name: 'Poland',
  						value: 38198.754
  					  }, {
  						name: 'Puerto Rico',
  						value: 3709.671
  					  }, {
  						name: 'North Korea',
  						value: 1.468
  					  }, {
  						name: 'Portugal',
  						value: 10589.792
  					  }, {
  						name: 'Paraguay',
  						value: 6459.721
  					  }, {
  						name: 'Qatar',
  						value: 1749.713
  					  }, {
  						name: 'Romania',
  						value: 21861.476
  					  }, {
  						name: 'Russia',
  						value: 21861.476
  					  }, {
  						name: 'Rwanda',
  						value: 10836.732
  					  }, {
  						name: 'Western Sahara',
  						value: 514.648
  					  }, {
  						name: 'Saudi Arabia',
  						value: 27258.387
  					  }, {
  						name: 'Sudan',
  						value: 35652.002
  					  }, {
  						name: 'South Sudan',
  						value: 9940.929
  					  }, {
  						name: 'Senegal',
  						value: 12950.564
  					  }, {
  						name: 'Solomon Islands',
  						value: 526.447
  					  }, {
  						name: 'Sierra Leone',
  						value: 5751.976
  					  }, {
  						name: 'El Salvador',
  						value: 6218.195
  					  }, {
  						name: 'Somaliland',
  						value: 9636.173
  					  }, {
  						name: 'Somalia',
  						value: 9636.173
  					  }, {
  						name: 'Republic of Serbia',
  						value: 3573.024
  					  }, {
  						name: 'Suriname',
  						value: 524.96
  					  }, {
  						name: 'Slovakia',
  						value: 5433.437
  					  }, {
  						name: 'Slovenia',
  						value: 2054.232
  					  }, {
  						name: 'Sweden',
  						value: 9382.297
  					  }, {
  						name: 'Swaziland',
  						value: 1193.148
  					  }, {
  						name: 'Syria',
  						value: 7830.534
  					  }, {
  						name: 'Chad',
  						value: 11720.781
  					  }, {
  						name: 'Togo',
  						value: 6306.014
  					  }, {
  						name: 'Thailand',
  						value: 66402.316
  					  }, {
  						name: 'Tajikistan',
  						value: 7627.326
  					  }, {
  						name: 'Turkmenistan',
  						value: 5041.995
  					  }, {
  						name: 'East Timor',
  						value: 10016.797
  					  }, {
  						name: 'Trinidad and Tobago',
  						value: 1328.095
  					  }, {
  						name: 'Tunisia',
  						value: 10631.83
  					  }, {
  						name: 'Turkey',
  						value: 72137.546
  					  }, {
  						name: 'United Republic of Tanzania',
  						value: 44973.33
  					  }, {
  						name: 'Uganda',
  						value: 33987.213
  					  }, {
  						name: 'Ukraine',
  						value: 46050.22
  					  }, {
  						name: 'Uruguay',
  						value: 3371.982
  					  }, {
  						name: 'United States of America',
  						value: 312247.116
  					  }, {
  						name: 'Uzbekistan',
  						value: 27769.27
  					  }, {
  						name: 'Venezuela',
  						value: 236.299
  					  }, {
  						name: 'Vietnam',
  						value: 89047.397
  					  }, {
  						name: 'Vanuatu',
  						value: 236.299
  					  }, {
  						name: 'West Bank',
  						value: 13.565
  					  }, {
  						name: 'Yemen',
  						value: 22763.008
  					  }, {
  						name: 'South Africa',
  						value: 51452.352
  					  }, {
  						name: 'Zambia',
  						value: 13216.985
  					  }, {
  						name: 'Zimbabwe',
  						value: 13076.978
  					  }]
  					}]
  				  });
221dd712   Eugeny Galkovskiy   menu
5022
  
06692811   Eugeny Galkovskiy   first commit
5023
  			}
221dd712   Eugeny Galkovskiy   menu
5024
5025
5026
5027
  
  		}
  
  
06692811   Eugeny Galkovskiy   first commit
5028
  	$(document).ready(function() {
221dd712   Eugeny Galkovskiy   menu
5029
  
06692811   Eugeny Galkovskiy   first commit
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
  		init_sparklines();
  		init_flot_chart();
  		init_sidebar();
  		init_wysiwyg();
  		init_InputMask();
  		init_JQVmap();
  //		init_cropper();
  		init_knob();
  		init_IonRangeSlider();
  		init_ColorPicker();
  		init_TagsInput();
  		init_parsley();
  		init_daterangepicker();
  		init_daterangepicker_right();
  		init_daterangepicker_single_call();
  		init_daterangepicker_reservation();
  		init_SmartWizard();
  		init_EasyPieChart();
          //		init_charts();
  		init_echarts();
  		init_morris_charts();
  		init_skycons();
  		init_select2();
  		init_validator();
  		init_DataTables();
  		init_chart_doughnut();
  		init_gauge();
  //		init_PNotify();
  		init_starrr();
  		init_calendar();
  		init_compose();
  		init_CustomNotification();
  		init_autosize();
  		init_autocomplete();
221dd712   Eugeny Galkovskiy   menu
5064
5065
  
  	});
06692811   Eugeny Galkovskiy   first commit
5066