创建版本
@@ -0,0 +1,626 @@
|
||||
/**
|
||||
* Website: http://git.oschina.net/hbbcs/bootStrap-addTabs
|
||||
*
|
||||
* Version : 2.1
|
||||
*
|
||||
* Created by joe on 2016-2-4.Update 2017-10-24
|
||||
*/
|
||||
|
||||
(function ($) {
|
||||
|
||||
var settings = {
|
||||
/**
|
||||
* 直接指定所有页面TABS内容
|
||||
* @type {String}
|
||||
*/
|
||||
content: '',
|
||||
/**
|
||||
* 是否可以关闭
|
||||
* @type {Boolean}
|
||||
*/
|
||||
close: true,
|
||||
/**
|
||||
* 监视的区域
|
||||
* @type {String}
|
||||
*/
|
||||
monitor: 'body',
|
||||
/**
|
||||
* 默认使用iframe还是ajax,true 是iframe,false是ajax
|
||||
* @type {Boolean}
|
||||
*/
|
||||
iframe: true,
|
||||
/**
|
||||
* 固定TAB中IFRAME高度,根据需要自己修改
|
||||
* @type {Number}
|
||||
*/
|
||||
height: $(window).height() - 118,
|
||||
/**
|
||||
* 目标
|
||||
* @type {String}
|
||||
*/
|
||||
target: '#tabs-list',
|
||||
/**
|
||||
* 显示加载条
|
||||
* @type {Boolean}
|
||||
*/
|
||||
loadbar: true,
|
||||
/**
|
||||
* 是否使用右键菜单
|
||||
* @type {Boolean}
|
||||
*/
|
||||
contextmenu: false,
|
||||
/**
|
||||
* 将打开的tab页记录到本地中,刷新页面时自动打开,默认不使用
|
||||
* @type {Boolean}
|
||||
*/
|
||||
store: false,
|
||||
/**
|
||||
* 保存的项目名称,为了区分项目
|
||||
* @type {String}
|
||||
*/
|
||||
storeName: '',
|
||||
/**
|
||||
* 内容样式表
|
||||
* @type {String}
|
||||
*/
|
||||
contentStyle: 'content',
|
||||
/**
|
||||
* ajax 的参数
|
||||
* @type {Object}
|
||||
*/
|
||||
ajax: {
|
||||
'async': true,
|
||||
'dataType': 'html',
|
||||
'type': 'get'
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @type {Object}
|
||||
*/
|
||||
local: {
|
||||
'refreshLabel': '刷新此标签',
|
||||
'closeThisLabel': '关闭此标签',
|
||||
'closeOtherLabel': '关闭其他标签',
|
||||
'closeLeftLabel': '关闭左侧标签',
|
||||
'closeRightLabel': '关闭右侧标签',
|
||||
'loadbar': '正在加载内容,请稍候...'
|
||||
},
|
||||
/**
|
||||
* 关闭tab回调函数
|
||||
* @return {[type]} [description]
|
||||
*/
|
||||
callback: function () {
|
||||
}
|
||||
};
|
||||
|
||||
var target;
|
||||
|
||||
_store = function () {
|
||||
if (typeof (arguments[0]) == 'object') {
|
||||
arguments[0].each(function (name, val) {
|
||||
localStorage.setItem(name, val);
|
||||
})
|
||||
} else if (arguments[1]) {
|
||||
localStorage.setItem(arguments[0], arguments[1]);
|
||||
} else {
|
||||
return localStorage.getItem(arguments[0]);
|
||||
}
|
||||
}
|
||||
|
||||
_click = function (obj) {
|
||||
var a_obj, a_target;
|
||||
|
||||
a_obj = (typeof obj.data('addtab') == 'object') ? obj.data('addtab') : obj.data();
|
||||
|
||||
if (!a_obj.id && !a_obj.addtab) {
|
||||
a_obj.id = Math.random().toString(36).substring(3, 35);
|
||||
obj.data('id', a_obj.id);
|
||||
}
|
||||
|
||||
$.addtabs.add({
|
||||
'target': a_obj.target ? a_obj.target : target,
|
||||
'id': a_obj.id ? a_obj.id : a_obj.addtab,
|
||||
'title': a_obj.title ? a_obj.title : obj.html(),
|
||||
'content': settings.content ? settings.content : a_obj.content,
|
||||
'url': a_obj.url ? a_obj.url : obj.attr('href'),
|
||||
'ajax': a_obj.ajax ? a_obj.ajax : false
|
||||
});
|
||||
};
|
||||
|
||||
_createMenu = function (right, icon, text) {
|
||||
return $('<a>', {
|
||||
'href': 'javascript:void(0);',
|
||||
'class': "list-group-item",
|
||||
'data-right': right
|
||||
}).append(
|
||||
$('<i>', {
|
||||
'class': 'fa ' + icon
|
||||
})
|
||||
).append(text);
|
||||
}
|
||||
|
||||
_pop = function (id, e, mouse) {
|
||||
$('body').find('#popMenu').remove();
|
||||
var refresh = e.attr('id') ? _createMenu('refresh', 'fa-refresh', settings.local.refreshLabel) : '';
|
||||
var remove = e.attr('id') ? _createMenu('remove', 'fa-remove', settings.local.closeThisLabel) : '';
|
||||
var left = e.prev('li').attr('id') ? _createMenu('remove-left', 'fa-chevron-left', settings.local.closeLeftLabel) : '';
|
||||
var right = e.next('li').attr('id') ? _createMenu('remove-right', 'fa-chevron-right', settings.local.closeRightLabel) : '';
|
||||
var popHtml = $('<ul>', {
|
||||
'aria-controls': id,
|
||||
'class': 'rightMenu list-group',
|
||||
id: 'popMenu',
|
||||
'aria-url': e.attr('aria-url'),
|
||||
'aria-ajax': e.attr('aria-ajax')
|
||||
}).append(refresh)
|
||||
.append(remove)
|
||||
.append(_createMenu('remove-circle', 'fa-remove-circle', settings.local.closeOtherLabel))
|
||||
.append(left)
|
||||
.append(right);
|
||||
|
||||
popHtml.css({
|
||||
'top': mouse.pageY,
|
||||
'left': mouse.pageX
|
||||
});
|
||||
popHtml.appendTo($('body')).show();
|
||||
// 刷新页面
|
||||
$('ul.rightMenu a[data-right=refresh]').on('click', function () {
|
||||
var id = $(this).parent('ul').attr("aria-controls").substring(4);
|
||||
var url = $(this).parent('ul').attr('aria-url');
|
||||
var ajax = $(this).parent('ul').attr('aria-ajax');
|
||||
$.addtabs.add({
|
||||
'id': id,
|
||||
'url': url,
|
||||
'refresh': true,
|
||||
'ajax': ajax
|
||||
});
|
||||
});
|
||||
|
||||
// 关闭自身
|
||||
$('ul.rightMenu a[data-right=remove]').on('click', function () {
|
||||
var id = $(this).parent("ul").attr("aria-controls");
|
||||
if (id.substring(0, 4) != 'tab_') return;
|
||||
$.addtabs.close({
|
||||
"id": id
|
||||
});
|
||||
$.addtabs.drop();
|
||||
});
|
||||
|
||||
// 关闭其他
|
||||
$('ul.rightMenu a[data-right=remove-circle]').on('click', function () {
|
||||
var tab_id = $(this).parent('ul').attr("aria-controls");
|
||||
target.find('li').each(function () {
|
||||
var id = $(this).attr('id');
|
||||
if (id && id != 'tab_' + tab_id) {
|
||||
$.addtabs.close({
|
||||
"id": $(this).children('a').attr('aria-controls')
|
||||
});
|
||||
}
|
||||
});
|
||||
$.addtabs.drop();
|
||||
});
|
||||
|
||||
// 关闭左侧
|
||||
$('ul.rightMenu a[data-right=remove-left]').on('click', function () {
|
||||
var tab_id = $(this).parent('ul').attr("aria-controls");
|
||||
$('#tab_' + tab_id).prevUntil().each(function () {
|
||||
var id = $(this).attr('id');
|
||||
if (id && id != 'tab_' + tab_id) {
|
||||
$.addtabs.close({
|
||||
"id": $(this).children('a').attr('aria-controls')
|
||||
});
|
||||
}
|
||||
});
|
||||
$.addtabs.drop();
|
||||
});
|
||||
|
||||
// 关闭右侧
|
||||
$('ul.rightMenu a[data-right=remove-right]').on('click', function () {
|
||||
var tab_id = $(this).parent('ul').attr("aria-controls");
|
||||
$('#tab_' + tab_id).nextUntil().each(function () {
|
||||
var id = $(this).attr('id');
|
||||
if (id && id != 'tab_' + tab_id) {
|
||||
$.addtabs.close({
|
||||
"id": $(this).children('a').attr('aria-controls')
|
||||
});
|
||||
}
|
||||
});
|
||||
$.addtabs.drop();
|
||||
});
|
||||
popHtml.mouseleave(function () {
|
||||
$(this).hide();
|
||||
});
|
||||
$('body').click(function () {
|
||||
popHtml.hide();
|
||||
})
|
||||
};
|
||||
|
||||
_listen = function () {
|
||||
$(settings.monitor).on('click', '[data-addtab]', function () {
|
||||
_click($(this));
|
||||
$.addtabs.drop();
|
||||
});
|
||||
|
||||
$('body').on('click', '.tab-close', function () {
|
||||
var id = $(this).prev("a").attr("aria-controls");
|
||||
$.addtabs.close({
|
||||
'id': id
|
||||
});
|
||||
$.addtabs.drop();
|
||||
});
|
||||
|
||||
$('body').on('mouseover', 'li[role = "presentation"]', function () {
|
||||
$(this).find('.tab-close').show();
|
||||
});
|
||||
|
||||
$('body').on('mouseleave', 'li[role = "presentation"]', function () {
|
||||
$(this).find('.tab-close').hide();
|
||||
});
|
||||
|
||||
if (settings.contextmenu) {
|
||||
//obj上禁用右键菜单
|
||||
$('body').on('contextmenu', 'li[role=presentation]', function (e) {
|
||||
var id = $(this).children('a').attr('aria-controls');
|
||||
_pop(id, $(this), e);
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
var el;
|
||||
$('body').on('dragstart.h5s', '.tabs-list li', function (e) {
|
||||
el = $(this);
|
||||
// 清除拖动操作携带的数据,否者在部分浏览器上会打开新页面
|
||||
if(e.originalEvent && e.originalEvent.dataTransfer
|
||||
&& 'function' == typeof e.originalEvent.dataTransfer.clearData){
|
||||
e.originalEvent.dataTransfer.clearData();
|
||||
}
|
||||
}).on('dragover.h5s dragenter.h5s drop.h5s', '.tabs-list li', function (e) {
|
||||
if (el == $(this)) return;
|
||||
$('.dragBack').removeClass('dragBack');
|
||||
$(this).addClass('dragBack');
|
||||
// 支持前后调整标签顺序
|
||||
if (el.index() < $(this).index()) {
|
||||
el.insertAfter($(this))
|
||||
} else {
|
||||
$(this).insertAfter(el)
|
||||
}
|
||||
}).on('dragend.h5s', '.tabs-list li', function () {
|
||||
$('.dragBack').removeClass('dragBack');
|
||||
});
|
||||
|
||||
$('body').on('shown.bs.tab', 'a[data-toggle="tab"]', function () {
|
||||
var id = $(this).parent('li').attr('id');
|
||||
id = id ? id.substring(8) : '';
|
||||
if (settings.store) {
|
||||
var tabs = $.parseJSON(_store('addtabs'+settings.storeName));
|
||||
$.each(tabs, function (k, t) {
|
||||
(t.id == id) ?(t.active = 'true'):(delete t.active);
|
||||
});
|
||||
tabs = JSON.stringify(tabs);
|
||||
_store('addtabs'+settings.storeName, tabs);
|
||||
}
|
||||
});
|
||||
|
||||
// 浏览器大小改变时自动收放tab
|
||||
$(window).on('resize', function() {
|
||||
$.addtabs.drop();
|
||||
});
|
||||
};
|
||||
|
||||
$.addtabs = function (options) {
|
||||
$.addtabs.set(options);
|
||||
_listen();
|
||||
if (settings.store) {
|
||||
var tabs = _store('addtabs'+settings.storeName) ? $.parseJSON(_store('addtabs'+settings.storeName)) : {};
|
||||
var active;
|
||||
$.each(tabs, function (k, t) {
|
||||
if (t.active) active = k;
|
||||
$.addtabs.add(t);
|
||||
});
|
||||
if (active) {
|
||||
target.children('.active').removeClass('active');
|
||||
$('#tab_' + active).addClass('active');
|
||||
$('#tabs-content').children('.active').removeClass('active');
|
||||
$('#' + active).addClass('active');
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
$.addtabs.set = function () {
|
||||
if (arguments[0]) {
|
||||
if (typeof arguments[0] == 'object') {
|
||||
settings = $.extend(settings, arguments[0] || {});
|
||||
} else {
|
||||
settings[arguments[0]] = arguments[1];
|
||||
}
|
||||
}
|
||||
if (typeof settings.target == 'object') {
|
||||
target = settings.target;
|
||||
} else {
|
||||
target = $('body').find(settings.target).length > 0 ? $(settings.target).first() : $('body').find('.tabs-list').first();
|
||||
}
|
||||
}
|
||||
|
||||
$.addtabs.add = function (opts) {
|
||||
var a_target, content;
|
||||
opts.id = opts.id ? opts.id : Math.random().toString(36).substring(3, 35);
|
||||
if (typeof opts.target == 'object') {
|
||||
a_target = opts.target;
|
||||
} else if (typeof opts.target == 'string') {
|
||||
a_target = $('body').find(opts.target).first();
|
||||
} else {
|
||||
a_target = target;
|
||||
}
|
||||
|
||||
var id = 'tab_' + opts.id;
|
||||
var tab_li = a_target;
|
||||
// 写入cookie
|
||||
if (settings.store) {
|
||||
var tabs = _store('addtabs'+settings.storeName) ? $.parseJSON(_store('addtabs'+settings.storeName)) : {};
|
||||
tabs[id] = opts;
|
||||
tabs[id].target = (typeof tabs[id].target == 'object') ? settings.target : tabs[id].target;
|
||||
$.each(tabs, function (k, t) {
|
||||
delete t.active;
|
||||
});
|
||||
tabs[id].active = 'true';
|
||||
tabs = JSON.stringify(tabs);
|
||||
_store('addtabs'+settings.storeName, tabs);
|
||||
}
|
||||
|
||||
var tab_content = $('#tabs-content');
|
||||
|
||||
var lastTabId = tab_content.children('div[role="tabpanel"].active');
|
||||
localStorage.setItem('addtabs_active_id', lastTabId.attr('id'));
|
||||
|
||||
tab_li.children('li[role="presentation"].active').removeClass('active');
|
||||
tab_content.children('div[role="tabpanel"].active').removeClass('active');
|
||||
// 如果TAB不存在,创建一个新的TAB
|
||||
if (tab_li.find('#tab_' + id).length < 1) {
|
||||
var cover = $('<div>', {
|
||||
'id': 'tabCover',
|
||||
'class': 'tab-cover'
|
||||
});
|
||||
// 创建新TAB的title
|
||||
var title = $('<li>', {
|
||||
'role': 'presentation',
|
||||
'id': 'tab_' + id,
|
||||
'aria-url': opts.url,
|
||||
'aria-ajax': opts.ajax ? true : false
|
||||
}).append(
|
||||
$('<a>', {
|
||||
'href': '#' + id,
|
||||
'aria-controls': id,
|
||||
'role': 'tab',
|
||||
'data-toggle': 'tab'
|
||||
}).html(opts.title)
|
||||
);
|
||||
|
||||
// 是否允许关闭
|
||||
if (settings.close) {
|
||||
title.append(
|
||||
$('<i>', {
|
||||
'class': 'tab-close fa fa-remove',
|
||||
'style': 'display:none',
|
||||
})
|
||||
);
|
||||
}
|
||||
// 创建新TAB的内容
|
||||
var content = $('<div>', {
|
||||
'class': 'tab-pane',
|
||||
//'class': 'tab-pane ' + settings.contentStyle,
|
||||
'id': id,
|
||||
// 'height': settings.height - 5,
|
||||
'role': 'tabpanel'
|
||||
});
|
||||
|
||||
// 加入TABS
|
||||
tab_li.append(title);
|
||||
tab_content.append(content.append(cover));
|
||||
|
||||
$.addtabs.drop();
|
||||
|
||||
} else if (!opts.refresh) {
|
||||
$('#tab_' + id).addClass('active');
|
||||
$('#' + id).addClass('active');
|
||||
return;
|
||||
} else {
|
||||
content = $('#' + id);
|
||||
content.html('');
|
||||
}
|
||||
// 加载条
|
||||
if (settings.loadbar) {
|
||||
|
||||
content.html($('<div>', {
|
||||
'class': ''
|
||||
}).append(
|
||||
$('<div>', {
|
||||
'class': 'progress-bar progress-bar-striped progress-bar-success active',
|
||||
'role': 'progressbar',
|
||||
'aria-valuenow': '100',
|
||||
'aria-valuemin': '0',
|
||||
'aria-valuemax': '100',
|
||||
'style': 'width:100%;position:absolute;height:20px;z-index:9999;'
|
||||
}).append('<span class="sr-only">100% Complete</span>')
|
||||
.append('<span>' + settings.local.loadbar + '</span>')
|
||||
));
|
||||
}
|
||||
|
||||
// 是否指定TAB内容
|
||||
if (opts.content) {
|
||||
content.html(opts.content);
|
||||
} else if (settings.iframe == true && (opts.ajax == 'false' || !opts.ajax)) { //没有内容,使用IFRAME打开链接
|
||||
|
||||
var iframe = $('<iframe>', {
|
||||
'class': 'tabIframe',
|
||||
//'height': settings.height,
|
||||
'id': 'iframe_' + opts.id,
|
||||
'name': 'iframe_' + opts.id,
|
||||
'width': "100%",
|
||||
'height': "100%",
|
||||
'frameborder': "no",
|
||||
'border': "0",
|
||||
'src': opts.url
|
||||
});
|
||||
content.html(iframe);
|
||||
|
||||
//layer.msg('页面加载中,请稍候...', {icon: 2,shade: 0, time: 1000 * 120});
|
||||
layer.load(2);
|
||||
iframe.load(function() {
|
||||
layer.closeAll('loading');
|
||||
})
|
||||
|
||||
} else {
|
||||
var ajaxOption = $.extend(settings.ajax, opts.ajax || {});
|
||||
ajaxOption.url = opts.url;
|
||||
ajaxOption.error = function(XMLHttpRequest, textStatus) { content.html(XMLHttpRequest.responseText); };
|
||||
ajaxOption.success = function (result) {
|
||||
content.html(result);
|
||||
}
|
||||
$.ajax(ajaxOption);
|
||||
}
|
||||
|
||||
// 激活TAB
|
||||
tab_li.find('#tab_' + id).addClass('active');
|
||||
tab_content.find('#' + id).addClass('active');
|
||||
tab_content.find('#' + id).find('#tabCover').remove();
|
||||
};
|
||||
|
||||
$.addtabs.close = function (opts) {
|
||||
|
||||
var lastTabId = localStorage.getItem('addtabs_active_id');
|
||||
// 如果关闭的是当前激活的TAB,激活他的前一个TAB
|
||||
if ($("#tab_" + opts.id).hasClass('active')) {
|
||||
if ($('#tab_' + opts.id).parents('li.tabdrop').length > 0 && !$('#tab_' + opts.id).parents('li.tabdrop').hasClass('hide')) {
|
||||
|
||||
var lastTab = $("#tab_" + lastTabId);
|
||||
if (lastTab.size() > 0) {
|
||||
$("#tab_" + lastTabId).tab('show');
|
||||
} else {
|
||||
$('#tab_' + opts.id).parents('.tabs-list').find('li').last().tab('show');
|
||||
}
|
||||
|
||||
} else {
|
||||
var lastTab = $("#tab_" + lastTabId);
|
||||
if (lastTab.size() > 0) {
|
||||
$("#tab_" + lastTabId).tab('show');
|
||||
} else {
|
||||
$("#tab_" + opts.id).prev('li').tab('show');
|
||||
}
|
||||
}
|
||||
|
||||
var lastTab = $("#tab_" + lastTabId);
|
||||
if (lastTab.size() > 0) {
|
||||
$("#" + lastTabId).addClass('active');
|
||||
} else {
|
||||
$("#" + opts.id).prev().addClass('active');
|
||||
}
|
||||
}
|
||||
// 关闭TAB
|
||||
$("#tab_" + opts.id).remove();
|
||||
$("#" + opts.id).remove();
|
||||
if (settings.store) {
|
||||
var tabs = $.parseJSON(_store('addtabs'+settings.storeName));
|
||||
delete tabs[opts.id];
|
||||
tabs = JSON.stringify(tabs);
|
||||
_store('addtabs'+settings.storeName, tabs);
|
||||
}
|
||||
|
||||
$.addtabs.drop();
|
||||
|
||||
settings.callback();
|
||||
};
|
||||
|
||||
$.addtabs.closeAll = function (target) {
|
||||
if (typeof target == 'string') {
|
||||
target = $('body').find(target);
|
||||
}
|
||||
$.each(target.find('li[id]'), function () {
|
||||
var id = $(this).children('a').attr('aria-controls');
|
||||
$("#tab_" + id).remove();
|
||||
$("#" + id).remove();
|
||||
});
|
||||
target.find('li[role = "presentation"]').first().addClass('active');
|
||||
var firstID = target.find('li[role = "presentation"]').first().children('a').attr('aria-controls');
|
||||
$('#' + firstID).addClass('active');
|
||||
$.addtabs.drop();
|
||||
};
|
||||
|
||||
$.addtabs.drop = function () {
|
||||
// 创建下拉标签
|
||||
var dropdown = $('<li>', {
|
||||
'class': 'dropdown pull-right hide tabdrop'
|
||||
}).append(
|
||||
$('<a>', {
|
||||
'class': 'dropdown-toggle',
|
||||
'data-toggle': 'dropdown',
|
||||
'href': '#'
|
||||
}).append(
|
||||
$('<i>', {
|
||||
'class': "fa fa-align-justify"
|
||||
})
|
||||
).append(
|
||||
$(' <b>', {
|
||||
'class': 'caret'
|
||||
})
|
||||
)
|
||||
).append(
|
||||
$('<ul>', {
|
||||
'class': "dropdown-menu"
|
||||
})
|
||||
)
|
||||
|
||||
$('body').find('.tabs-list').each(function () {
|
||||
var element = $(this);
|
||||
// 检测是否已增加
|
||||
if (element.find('.tabdrop').length < 1) {
|
||||
dropdown.prependTo(element);
|
||||
} else {
|
||||
dropdown = element.find('.tabdrop');
|
||||
}
|
||||
// 检测是否有下拉样式
|
||||
if (element.parent().is('.tabs-below')) {
|
||||
dropdown.addClass('dropup');
|
||||
}
|
||||
var collection = 0;
|
||||
|
||||
var ww = $(window).width();
|
||||
var left = $('#navbar-left').width();
|
||||
var right = $('.nav-user').width();
|
||||
var www = ww - left - right;
|
||||
// 检查超过一行的标签页
|
||||
element.append(dropdown.find('li'))
|
||||
.find('>li')
|
||||
.not('.tabdrop')
|
||||
.each(function() {
|
||||
www = www - $(this).width();
|
||||
// this.offsetTop > 0 ||
|
||||
/*
|
||||
if (element.width() - $(this).position().left - $(this).width() < 83) {
|
||||
dropdown.find('ul').prepend($(this));
|
||||
collection++;
|
||||
}
|
||||
*/
|
||||
if (www < $(this).width()) {
|
||||
dropdown.find('ul').prepend($(this));
|
||||
collection++;
|
||||
}
|
||||
});
|
||||
|
||||
// 如果有超出的,显示下拉标签
|
||||
if (collection > 0) {
|
||||
dropdown.removeClass('hide');
|
||||
if (dropdown.find('.active').length == 1) {
|
||||
dropdown.addClass('active');
|
||||
} else {
|
||||
dropdown.removeClass('active');
|
||||
}
|
||||
} else {
|
||||
dropdown.addClass('hide');
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
})(jQuery);
|
||||
|
||||
$(function () {
|
||||
$.addtabs();
|
||||
})
|
||||
@@ -0,0 +1,55 @@
|
||||
.ac_results {
|
||||
padding: 0;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
z-index: 99999;
|
||||
border: 1px solid #66afe9;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px rgba(102,175,233,.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px rgba(102,175,233,.6);
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
.ac_results ul {
|
||||
width: 100%;
|
||||
list-style-position: outside;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ac_results li {
|
||||
margin: 0;
|
||||
padding: 5px;
|
||||
cursor: default;
|
||||
display: block;
|
||||
/*width: 100%;*/
|
||||
font: menu;
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ac_loading {
|
||||
background: white url(indicator.gif) right center no-repeat;
|
||||
}
|
||||
|
||||
.ac_odd {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.ac_over {
|
||||
background-color: #0e90d2;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.ac_result {
|
||||
border: 1px solid #23ad44 !important;
|
||||
}
|
||||
|
||||
.ac_result:active, .ac_result:focus {
|
||||
border-color: #23ad44 !important;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px rgba(139, 233, 102, 0.6) !important;
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px rgba(139, 233, 102, 0.6) !important;
|
||||
}
|
||||
@@ -0,0 +1,886 @@
|
||||
/*
|
||||
* jQuery Autocomplete plugin 1.2.3
|
||||
*
|
||||
* Copyright (c) 2009 Jörn Zaefferer
|
||||
*
|
||||
* Dual licensed under the MIT and GPL licenses:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
* http://www.gnu.org/licenses/gpl.html
|
||||
*
|
||||
* With small modifications by Alfonso Gómez-Arzola.
|
||||
* See changelog for details.
|
||||
*
|
||||
*/
|
||||
|
||||
;(function($) {
|
||||
|
||||
$.fn.extend({
|
||||
autocomplete: function(urlOrData, options) {
|
||||
var isUrl = typeof urlOrData == "string";
|
||||
options = $.extend({}, $.Autocompleter.defaults, {
|
||||
url: isUrl ? urlOrData : null,
|
||||
data: isUrl ? null : urlOrData,
|
||||
delay: isUrl ? $.Autocompleter.defaults.delay : 10,
|
||||
max: options && !options.scroll ? 10 : 150,
|
||||
noRecord: "No Records."
|
||||
}, options);
|
||||
|
||||
// if highlight is set to false, replace it with a do-nothing function
|
||||
options.highlight = options.highlight || function(value) { return value; };
|
||||
|
||||
// if the formatMatch option is not specified, then use formatItem for backwards compatibility
|
||||
options.formatMatch = options.formatMatch || options.formatItem;
|
||||
|
||||
return this.each(function() {
|
||||
new $.Autocompleter(this, options);
|
||||
});
|
||||
},
|
||||
result: function(handler) {
|
||||
return this.bind("result", handler);
|
||||
},
|
||||
search: function(handler) {
|
||||
return this.trigger("search", [handler]);
|
||||
},
|
||||
flushCache: function() {
|
||||
return this.trigger("flushCache");
|
||||
},
|
||||
setOptions: function(options){
|
||||
return this.trigger("setOptions", [options]);
|
||||
},
|
||||
unautocomplete: function() {
|
||||
return this.trigger("unautocomplete");
|
||||
}
|
||||
});
|
||||
|
||||
$.Autocompleter = function(input, options) {
|
||||
|
||||
var KEY = {
|
||||
UP: 38,
|
||||
DOWN: 40,
|
||||
DEL: 46,
|
||||
TAB: 9,
|
||||
RETURN: 13,
|
||||
ESC: 27,
|
||||
COMMA: 188,
|
||||
PAGEUP: 33,
|
||||
PAGEDOWN: 34,
|
||||
BACKSPACE: 8
|
||||
};
|
||||
|
||||
var globalFailure = null;
|
||||
if(options.failure != null && typeof options.failure == "function") {
|
||||
globalFailure = options.failure;
|
||||
}
|
||||
|
||||
// Create $ object for input element
|
||||
var $input = $(input).attr("autocomplete", "off").addClass(options.inputClass);
|
||||
|
||||
var timeout;
|
||||
var previousValue = "";
|
||||
var cache = $.Autocompleter.Cache(options);
|
||||
var hasFocus = 0;
|
||||
var lastKeyPressCode;
|
||||
var config = {
|
||||
mouseDownOnSelect: false
|
||||
};
|
||||
var select = $.Autocompleter.Select(options, input, selectCurrent, config);
|
||||
|
||||
var blockSubmit;
|
||||
|
||||
// prevent form submit in opera when selecting with return key
|
||||
navigator.userAgent.indexOf("Opera") != -1 && $(input.form).bind("submit.autocomplete", function() {
|
||||
if (blockSubmit) {
|
||||
blockSubmit = false;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
// older versions of opera don't trigger keydown multiple times while pressed, others don't work with keypress at all
|
||||
$input.bind((navigator.userAgent.indexOf("Opera") != -1 && !'KeyboardEvent' in window ? "keypress" : "keydown") + ".autocomplete", function(event) {
|
||||
// a keypress means the input has focus
|
||||
// avoids issue where input had focus before the autocomplete was applied
|
||||
hasFocus = 1;
|
||||
// track last key pressed
|
||||
lastKeyPressCode = event.keyCode;
|
||||
|
||||
$input.removeClass('ac_result');
|
||||
$input.next().val('');
|
||||
|
||||
switch(event.keyCode) {
|
||||
|
||||
case KEY.UP:
|
||||
if ( select.visible() ) {
|
||||
event.preventDefault();
|
||||
select.prev();
|
||||
} else {
|
||||
onChange(0, true);
|
||||
}
|
||||
break;
|
||||
|
||||
case KEY.DOWN:
|
||||
if ( select.visible() ) {
|
||||
event.preventDefault();
|
||||
select.next();
|
||||
} else {
|
||||
onChange(0, true);
|
||||
}
|
||||
break;
|
||||
|
||||
case KEY.PAGEUP:
|
||||
if ( select.visible() ) {
|
||||
event.preventDefault();
|
||||
select.pageUp();
|
||||
} else {
|
||||
onChange(0, true);
|
||||
}
|
||||
break;
|
||||
|
||||
case KEY.PAGEDOWN:
|
||||
if ( select.visible() ) {
|
||||
event.preventDefault();
|
||||
select.pageDown();
|
||||
} else {
|
||||
onChange(0, true);
|
||||
}
|
||||
break;
|
||||
|
||||
// matches also semicolon
|
||||
case options.multiple && $.trim(options.multipleSeparator) == "," && KEY.COMMA:
|
||||
case KEY.TAB:
|
||||
case KEY.RETURN:
|
||||
if( selectCurrent() ) {
|
||||
// stop default to prevent a form submit, Opera needs special handling
|
||||
event.preventDefault();
|
||||
blockSubmit = true;
|
||||
return false;
|
||||
}
|
||||
break;
|
||||
|
||||
case KEY.ESC:
|
||||
select.hide();
|
||||
break;
|
||||
|
||||
default:
|
||||
clearTimeout(timeout);
|
||||
timeout = setTimeout(onChange, options.delay);
|
||||
break;
|
||||
}
|
||||
}).focus(function(){
|
||||
// track whether the field has focus, we shouldn't process any
|
||||
// results if the field no longer has focus
|
||||
hasFocus++;
|
||||
}).blur(function() {
|
||||
hasFocus = 0;
|
||||
if (!config.mouseDownOnSelect) {
|
||||
hideResults();
|
||||
}
|
||||
}).click(function() {
|
||||
// show select when clicking in a focused field
|
||||
// but if clickFire is true, don't require field
|
||||
// to be focused to begin with; just show select
|
||||
if( options.clickFire ) {
|
||||
if ( !select.visible() ) {
|
||||
onChange(0, true);
|
||||
}
|
||||
} else {
|
||||
if ( hasFocus++ > 1 && !select.visible() ) {
|
||||
onChange(0, true);
|
||||
}
|
||||
}
|
||||
}).bind("search", function() {
|
||||
// TODO why not just specifying both arguments?
|
||||
var fn = (arguments.length > 1) ? arguments[1] : null;
|
||||
function findValueCallback(q, data) {
|
||||
var result;
|
||||
if( data && data.length ) {
|
||||
for (var i=0; i < data.length; i++) {
|
||||
if( data[i].result.toLowerCase() == q.toLowerCase() ) {
|
||||
result = data[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if( typeof fn == "function" ) fn(result);
|
||||
else $input.trigger("result", result && [result.data, result.value]);
|
||||
}
|
||||
$.each(trimWords($input.val()), function(i, value) {
|
||||
request(value, findValueCallback, findValueCallback);
|
||||
});
|
||||
}).bind("flushCache", function() {
|
||||
cache.flush();
|
||||
}).bind("setOptions", function() {
|
||||
$.extend(true, options, arguments[1]);
|
||||
// if we've updated the data, repopulate
|
||||
if ( "data" in arguments[1] )
|
||||
cache.populate();
|
||||
}).bind("unautocomplete", function() {
|
||||
select.unbind();
|
||||
$input.unbind();
|
||||
$(input.form).unbind(".autocomplete");
|
||||
});
|
||||
|
||||
|
||||
function selectCurrent() {
|
||||
var selected = select.selected();
|
||||
if( !selected )
|
||||
return false;
|
||||
|
||||
var v = selected.result;
|
||||
previousValue = v;
|
||||
|
||||
if ( options.multiple ) {
|
||||
var words = trimWords($input.val());
|
||||
if ( words.length > 1 ) {
|
||||
var seperator = options.multipleSeparator.length;
|
||||
var cursorAt = $(input).selection().start;
|
||||
var wordAt, progress = 0;
|
||||
$.each(words, function(i, word) {
|
||||
progress += word.length;
|
||||
if (cursorAt <= progress) {
|
||||
wordAt = i;
|
||||
return false;
|
||||
}
|
||||
progress += seperator;
|
||||
});
|
||||
words[wordAt] = v;
|
||||
// TODO this should set the cursor to the right position, but it gets overriden somewhere
|
||||
//$.Autocompleter.Selection(input, progress + seperator, progress + seperator);
|
||||
v = words.join( options.multipleSeparator );
|
||||
}
|
||||
v += options.multipleSeparator;
|
||||
}
|
||||
|
||||
// ????
|
||||
$input.addClass('ac_result');
|
||||
$input.next().val(selected.value);
|
||||
|
||||
$input.val(v);
|
||||
hideResultsNow();
|
||||
$input.trigger("result", [selected.data, selected.value]);
|
||||
return true;
|
||||
}
|
||||
|
||||
function onChange(crap, skipPrevCheck) {
|
||||
if( lastKeyPressCode == KEY.DEL ) {
|
||||
select.hide();
|
||||
return;
|
||||
}
|
||||
|
||||
var currentValue = $input.val();
|
||||
|
||||
if ( !skipPrevCheck && currentValue == previousValue )
|
||||
return;
|
||||
|
||||
previousValue = currentValue;
|
||||
|
||||
currentValue = lastWord(currentValue);
|
||||
if ( currentValue.length >= options.minChars) {
|
||||
$input.addClass(options.loadingClass);
|
||||
if (!options.matchCase)
|
||||
currentValue = currentValue.toLowerCase();
|
||||
request(currentValue, receiveData, hideResultsNow);
|
||||
} else {
|
||||
stopLoading();
|
||||
select.hide();
|
||||
}
|
||||
};
|
||||
|
||||
function onChange2(crap, skipPrevCheck) {
|
||||
if(lastKeyPressCode == KEY.DEL) {
|
||||
select.hide();
|
||||
return;
|
||||
}
|
||||
|
||||
var currentValue = $input.val();
|
||||
|
||||
if ( !skipPrevCheck && currentValue == previousValue )
|
||||
return;
|
||||
|
||||
previousValue = currentValue;
|
||||
|
||||
currentValue = lastWord(currentValue);
|
||||
if ( currentValue.length >= options.minChars) {
|
||||
$input.addClass(options.loadingClass);
|
||||
if (!options.matchCase)
|
||||
currentValue = currentValue.toLowerCase();
|
||||
request(currentValue, receiveData, hideResultsNow);
|
||||
} else {
|
||||
stopLoading();
|
||||
select.hide();
|
||||
}
|
||||
};
|
||||
|
||||
function trimWords(value) {
|
||||
if (!value)
|
||||
return [""];
|
||||
if (!options.multiple)
|
||||
return [$.trim(value)];
|
||||
return $.map(value.split(options.multipleSeparator), function(word) {
|
||||
return $.trim(value).length ? $.trim(word) : null;
|
||||
});
|
||||
}
|
||||
|
||||
function lastWord(value) {
|
||||
if ( !options.multiple )
|
||||
return value;
|
||||
var words = trimWords(value);
|
||||
if (words.length == 1)
|
||||
return words[0];
|
||||
var cursorAt = $(input).selection().start;
|
||||
if (cursorAt == value.length) {
|
||||
words = trimWords(value)
|
||||
} else {
|
||||
words = trimWords(value.replace(value.substring(cursorAt), ""));
|
||||
}
|
||||
return words[words.length - 1];
|
||||
}
|
||||
|
||||
// fills in the input box w/the first match (assumed to be the best match)
|
||||
// q: the term entered
|
||||
// sValue: the first matching result
|
||||
function autoFill(q, sValue){
|
||||
// autofill in the complete box w/the first match as long as the user hasn't entered in more data
|
||||
// if the last user key pressed was backspace, don't autofill
|
||||
if( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) {
|
||||
// fill in the value (keep the case the user has typed)
|
||||
$input.val($input.val() + sValue.substring(lastWord(previousValue).length));
|
||||
// select the portion of the value not typed by the user (so the next character will erase)
|
||||
$(input).selection(previousValue.length, previousValue.length + sValue.length);
|
||||
}
|
||||
};
|
||||
|
||||
function hideResults() {
|
||||
clearTimeout(timeout);
|
||||
timeout = setTimeout(hideResultsNow, 200);
|
||||
};
|
||||
|
||||
function hideResultsNow() {
|
||||
var wasVisible = select.visible();
|
||||
select.hide();
|
||||
clearTimeout(timeout);
|
||||
stopLoading();
|
||||
if (options.mustMatch) {
|
||||
// call search and run callback
|
||||
$input.search(
|
||||
function (result){
|
||||
// if no value found, clear the input box
|
||||
if( !result ) {
|
||||
if (options.multiple) {
|
||||
var words = trimWords($input.val()).slice(0, -1);
|
||||
$input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : "") );
|
||||
}
|
||||
else {
|
||||
$input.val( "" );
|
||||
$input.trigger("result", null);
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
function receiveData(q, data) {
|
||||
if ( data && data.length && hasFocus ) {
|
||||
stopLoading();
|
||||
select.display(data, q);
|
||||
autoFill(q, data[0].value);
|
||||
select.show();
|
||||
} else {
|
||||
hideResultsNow();
|
||||
}
|
||||
};
|
||||
|
||||
function request(term, success, failure) {
|
||||
if (!options.matchCase)
|
||||
term = term.toLowerCase();
|
||||
var data = cache.load(term);
|
||||
// recieve the cached data
|
||||
if (data) {
|
||||
if(data.length) {
|
||||
success(term, data);
|
||||
}
|
||||
else{
|
||||
var parsed = options.parse && options.parse(options.noRecord) || parse(options.noRecord);
|
||||
success(term,parsed);
|
||||
}
|
||||
// if an AJAX url has been supplied, try loading the data now
|
||||
} else if( (typeof options.url == "string") && (options.url.length > 0) ){
|
||||
|
||||
var extraParams = {
|
||||
timestamp: +new Date()
|
||||
};
|
||||
$.each(options.extraParams, function(key, param) {
|
||||
extraParams[key] = typeof param == "function" ? param() : param;
|
||||
});
|
||||
|
||||
// 自定义参数获取
|
||||
options.ajaxParams(extraParams);
|
||||
|
||||
$.ajax({
|
||||
// try to leverage ajaxQueue plugin to abort previous requests
|
||||
mode: "abort",
|
||||
// limit abortion to this input
|
||||
port: "autocomplete" + input.name,
|
||||
dataType: options.dataType,
|
||||
type: 'POST',
|
||||
url: options.url,
|
||||
data: $.extend({
|
||||
q: lastWord(term),
|
||||
limit: options.max
|
||||
}, extraParams),
|
||||
success: function(data) {
|
||||
var parsed = options.parse && options.parse(data) || parse(data);
|
||||
cache.add(term, parsed);
|
||||
success(term, parsed);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
// if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match
|
||||
select.emptyList();
|
||||
if(globalFailure != null) {
|
||||
globalFailure();
|
||||
}
|
||||
else {
|
||||
failure(term);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function parse(data) {
|
||||
var parsed = [];
|
||||
var rows = data.split("\n");
|
||||
for (var i=0; i < rows.length; i++) {
|
||||
var row = $.trim(rows[i]);
|
||||
if (row) {
|
||||
row = row.split("|");
|
||||
parsed[parsed.length] = {
|
||||
data: row,
|
||||
value: row[0],
|
||||
result: options.formatResult && options.formatResult(row, row[0]) || row[0]
|
||||
};
|
||||
}
|
||||
}
|
||||
return parsed;
|
||||
};
|
||||
|
||||
function stopLoading() {
|
||||
$input.removeClass(options.loadingClass);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
$.Autocompleter.defaults = {
|
||||
inputClass: "ac_input",
|
||||
resultsClass: "ac_results",
|
||||
loadingClass: "ac_loading",
|
||||
minChars: 1,
|
||||
delay: 400,
|
||||
matchCase: false,
|
||||
matchSubset: true,
|
||||
matchContains: false,
|
||||
cacheLength: 100,
|
||||
max: 1000,
|
||||
mustMatch: false,
|
||||
extraParams: {},
|
||||
selectFirst: true,
|
||||
formatItem: function(row) { return row[0]; },
|
||||
formatMatch: null,
|
||||
autoFill: false,
|
||||
width: 0,
|
||||
multiple: false,
|
||||
multipleSeparator: " ",
|
||||
inputFocus: true,
|
||||
clickFire: false,
|
||||
highlight: function(value, term) {
|
||||
return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi, "\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<strong>$1</strong>");
|
||||
},
|
||||
scroll: true,
|
||||
scrollHeight: 180,
|
||||
scrollJumpPosition: true
|
||||
};
|
||||
|
||||
$.Autocompleter.Cache = function(options) {
|
||||
|
||||
var data = {};
|
||||
var length = 0;
|
||||
|
||||
function matchSubset(s, sub) {
|
||||
s = s + '';
|
||||
if (!options.matchCase)
|
||||
s = s.toLowerCase();
|
||||
var i = s.indexOf(sub);
|
||||
if (options.matchContains == "word"){
|
||||
i = s.toLowerCase().search("\\b" + sub.toLowerCase());
|
||||
}
|
||||
if (i == -1) return false;
|
||||
return i == 0 || options.matchContains;
|
||||
};
|
||||
|
||||
function add(q, value) {
|
||||
if (length > options.cacheLength){
|
||||
flush();
|
||||
}
|
||||
if (!data[q]){
|
||||
length++;
|
||||
}
|
||||
data[q] = value;
|
||||
}
|
||||
|
||||
function populate(){
|
||||
if( !options.data ) return false;
|
||||
// track the matches
|
||||
var stMatchSets = {},
|
||||
nullData = 0;
|
||||
|
||||
// no url was specified, we need to adjust the cache length to make sure it fits the local data store
|
||||
if( !options.url ) options.cacheLength = 1;
|
||||
|
||||
// track all options for minChars = 0
|
||||
stMatchSets[""] = [];
|
||||
|
||||
// loop through the array and create a lookup structure
|
||||
for ( var i = 0, ol = options.data.length; i < ol; i++ ) {
|
||||
var rawValue = options.data[i];
|
||||
// if rawValue is a string, make an array otherwise just reference the array
|
||||
rawValue = (typeof rawValue == "string") ? [rawValue] : rawValue;
|
||||
|
||||
var value = options.formatMatch(rawValue, i+1, options.data.length);
|
||||
if ( typeof(value) === 'undefined' || value === false )
|
||||
continue;
|
||||
|
||||
var firstChar = value.charAt(0).toLowerCase();
|
||||
// if no lookup array for this character exists, look it up now
|
||||
if( !stMatchSets[firstChar] )
|
||||
stMatchSets[firstChar] = [];
|
||||
|
||||
// if the match is a string
|
||||
var row = {
|
||||
value: value,
|
||||
data: rawValue,
|
||||
result: options.formatResult && options.formatResult(rawValue) || value
|
||||
};
|
||||
|
||||
// push the current match into the set list
|
||||
stMatchSets[firstChar].push(row);
|
||||
|
||||
// keep track of minChars zero items
|
||||
if ( nullData++ < options.max ) {
|
||||
stMatchSets[""].push(row);
|
||||
}
|
||||
};
|
||||
|
||||
// add the data items to the cache
|
||||
$.each(stMatchSets, function(i, value) {
|
||||
// increase the cache size
|
||||
options.cacheLength++;
|
||||
// add to the cache
|
||||
add(i, value);
|
||||
});
|
||||
}
|
||||
|
||||
// populate any existing data
|
||||
setTimeout(populate, 25);
|
||||
|
||||
function flush(){
|
||||
data = {};
|
||||
length = 0;
|
||||
}
|
||||
|
||||
return {
|
||||
flush: flush,
|
||||
add: add,
|
||||
populate: populate,
|
||||
load: function(q) {
|
||||
if (!options.cacheLength || !length)
|
||||
return null;
|
||||
/*
|
||||
* if dealing w/local data and matchContains than we must make sure
|
||||
* to loop through all the data collections looking for matches
|
||||
*/
|
||||
if( !options.url && options.matchContains ){
|
||||
// track all matches
|
||||
var csub = [];
|
||||
// loop through all the data grids for matches
|
||||
for( var k in data ){
|
||||
// don't search through the stMatchSets[""] (minChars: 0) cache
|
||||
// this prevents duplicates
|
||||
if( k.length > 0 ){
|
||||
var c = data[k];
|
||||
$.each(c, function(i, x) {
|
||||
// if we've got a match, add it to the array
|
||||
if (matchSubset(x.value, q)) {
|
||||
csub.push(x);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
return csub;
|
||||
} else
|
||||
// if the exact item exists, use it
|
||||
if (data[q]){
|
||||
return data[q];
|
||||
} else
|
||||
if (options.matchSubset) {
|
||||
for (var i = q.length - 1; i >= options.minChars; i--) {
|
||||
var c = data[q.substr(0, i)];
|
||||
if (c) {
|
||||
var csub = [];
|
||||
$.each(c, function(i, x) {
|
||||
if (matchSubset(x.value, q)) {
|
||||
csub[csub.length] = x;
|
||||
}
|
||||
});
|
||||
return csub;
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
$.Autocompleter.Select = function (options, input, select, config) {
|
||||
var CLASSES = {
|
||||
ACTIVE: "ac_over"
|
||||
};
|
||||
|
||||
var listItems,
|
||||
active = -1,
|
||||
data,
|
||||
term = "",
|
||||
needsInit = true,
|
||||
element,
|
||||
list;
|
||||
|
||||
// Create results
|
||||
function init() {
|
||||
if (!needsInit)
|
||||
return;
|
||||
element = $("<div/>")
|
||||
.hide()
|
||||
.addClass(options.resultsClass)
|
||||
.css("position", "absolute")
|
||||
.appendTo(document.body)
|
||||
.hover(function(event) {
|
||||
// Browsers except FF do not fire mouseup event on scrollbars, resulting in mouseDownOnSelect remaining true, and results list not always hiding.
|
||||
if($(this).is(":visible")) {
|
||||
input.focus();
|
||||
}
|
||||
config.mouseDownOnSelect = false;
|
||||
});
|
||||
|
||||
list = $("<ul/>").appendTo(element).mouseover( function(event) {
|
||||
if(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') {
|
||||
active = $("li", list).removeClass(CLASSES.ACTIVE).index(target(event));
|
||||
$(target(event)).addClass(CLASSES.ACTIVE);
|
||||
}
|
||||
}).click(function(event) {
|
||||
$(target(event)).addClass(CLASSES.ACTIVE);
|
||||
select();
|
||||
if( options.inputFocus )
|
||||
input.focus();
|
||||
return false;
|
||||
}).mousedown(function() {
|
||||
config.mouseDownOnSelect = true;
|
||||
}).mouseup(function() {
|
||||
config.mouseDownOnSelect = false;
|
||||
});
|
||||
|
||||
if( options.width > 0 )
|
||||
element.css("width", options.width);
|
||||
|
||||
needsInit = false;
|
||||
}
|
||||
|
||||
function target(event) {
|
||||
var element = event.target;
|
||||
while(element && element.tagName != "LI")
|
||||
element = element.parentNode;
|
||||
// more fun with IE, sometimes event.target is empty, just ignore it then
|
||||
if(!element)
|
||||
return [];
|
||||
return element;
|
||||
}
|
||||
|
||||
function moveSelect(step) {
|
||||
listItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE);
|
||||
movePosition(step);
|
||||
var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE);
|
||||
if(options.scroll) {
|
||||
var offset = 0;
|
||||
listItems.slice(0, active).each(function() {
|
||||
offset += this.offsetHeight;
|
||||
});
|
||||
if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) {
|
||||
list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight());
|
||||
} else if(offset < list.scrollTop()) {
|
||||
list.scrollTop(offset);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function movePosition(step) {
|
||||
if (options.scrollJumpPosition || (!options.scrollJumpPosition && !((step < 0 && active == 0) || (step > 0 && active == listItems.size() - 1)) )) {
|
||||
active += step;
|
||||
if (active < 0) {
|
||||
active = listItems.size() - 1;
|
||||
} else if (active >= listItems.size()) {
|
||||
active = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function limitNumberOfItems(available) {
|
||||
return options.max && options.max < available
|
||||
? options.max
|
||||
: available;
|
||||
}
|
||||
|
||||
function fillList() {
|
||||
list.empty();
|
||||
var max = limitNumberOfItems(data.length);
|
||||
for (var i=0; i < max; i++) {
|
||||
if (!data[i])
|
||||
continue;
|
||||
var formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term);
|
||||
if ( formatted === false )
|
||||
continue;
|
||||
var li = $("<li/>").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? "ac_even" : "ac_odd").appendTo(list)[0];
|
||||
$.data(li, "ac_data", data[i]);
|
||||
}
|
||||
listItems = list.find("li");
|
||||
if ( options.selectFirst ) {
|
||||
listItems.slice(0, 1).addClass(CLASSES.ACTIVE);
|
||||
active = 0;
|
||||
}
|
||||
// apply bgiframe if available
|
||||
if ( $.fn.bgiframe )
|
||||
list.bgiframe();
|
||||
}
|
||||
|
||||
return {
|
||||
display: function(d, q) {
|
||||
init();
|
||||
data = d;
|
||||
term = q;
|
||||
fillList();
|
||||
},
|
||||
next: function() {
|
||||
moveSelect(1);
|
||||
},
|
||||
prev: function() {
|
||||
moveSelect(-1);
|
||||
},
|
||||
pageUp: function() {
|
||||
if (active != 0 && active - 8 < 0) {
|
||||
moveSelect( -active );
|
||||
} else {
|
||||
moveSelect(-8);
|
||||
}
|
||||
},
|
||||
pageDown: function() {
|
||||
if (active != listItems.size() - 1 && active + 8 > listItems.size()) {
|
||||
moveSelect( listItems.size() - 1 - active );
|
||||
} else {
|
||||
moveSelect(8);
|
||||
}
|
||||
},
|
||||
hide: function() {
|
||||
element && element.hide();
|
||||
listItems && listItems.removeClass(CLASSES.ACTIVE);
|
||||
active = -1;
|
||||
},
|
||||
visible : function() {
|
||||
return element && element.is(":visible");
|
||||
},
|
||||
current: function() {
|
||||
return this.visible() && (listItems.filter("." + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]);
|
||||
},
|
||||
show: function() {
|
||||
var offset = $(input).offset();
|
||||
element.css({
|
||||
width: typeof options.width == "string" || options.width > 0 ? options.width : $(input).outerWidth(),
|
||||
top: offset.top + input.offsetHeight,
|
||||
left: offset.left
|
||||
}).show();
|
||||
if(options.scroll) {
|
||||
list.scrollTop(0);
|
||||
list.css({
|
||||
maxHeight: options.scrollHeight,
|
||||
overflow: 'auto'
|
||||
});
|
||||
|
||||
if(navigator.userAgent.indexOf("MSIE") != -1 && typeof document.body.style.maxHeight === "undefined") {
|
||||
var listHeight = 0;
|
||||
listItems.each(function() {
|
||||
listHeight += this.offsetHeight;
|
||||
});
|
||||
var scrollbarsVisible = listHeight > options.scrollHeight;
|
||||
list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight );
|
||||
if (!scrollbarsVisible) {
|
||||
// IE doesn't recalculate width when scrollbar disappears
|
||||
listItems.width( list.width() - parseInt(listItems.css("padding-left")) - parseInt(listItems.css("padding-right")) );
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
selected: function() {
|
||||
var selected = listItems && listItems.filter("." + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);
|
||||
return selected && selected.length && $.data(selected[0], "ac_data");
|
||||
},
|
||||
emptyList: function (){
|
||||
list && list.empty();
|
||||
},
|
||||
unbind: function() {
|
||||
element && element.remove();
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
$.fn.selection = function(start, end) {
|
||||
if (start !== undefined) {
|
||||
return this.each(function() {
|
||||
if( this.createTextRange ){
|
||||
var selRange = this.createTextRange();
|
||||
if (end === undefined || start == end) {
|
||||
selRange.move("character", start);
|
||||
selRange.select();
|
||||
} else {
|
||||
selRange.collapse(true);
|
||||
selRange.moveStart("character", start);
|
||||
selRange.moveEnd("character", end);
|
||||
selRange.select();
|
||||
}
|
||||
} else if( this.setSelectionRange ){
|
||||
this.setSelectionRange(start, end);
|
||||
} else if( this.selectionStart ){
|
||||
this.selectionStart = start;
|
||||
this.selectionEnd = end;
|
||||
}
|
||||
});
|
||||
}
|
||||
var field = this[0];
|
||||
if ( field.createTextRange ) {
|
||||
var range = document.selection.createRange(),
|
||||
orig = field.value,
|
||||
teststring = "<->",
|
||||
textLength = range.text.length;
|
||||
range.text = teststring;
|
||||
var caretAt = field.value.indexOf(teststring);
|
||||
field.value = orig;
|
||||
this.selection(caretAt, caretAt + textLength);
|
||||
return {
|
||||
start: caretAt,
|
||||
end: caretAt + textLength
|
||||
}
|
||||
} else if( field.selectionStart !== undefined ){
|
||||
return {
|
||||
start: field.selectionStart,
|
||||
end: field.selectionEnd
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
})(jQuery);
|
||||
@@ -0,0 +1,984 @@
|
||||
@font-face {
|
||||
font-family:'Glyphicons Halflings';
|
||||
src:url('../fonts/glyphicons-halflings-regular.eot');
|
||||
src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),
|
||||
url('../fonts/glyphicons-halflings-regular.woff') format('woff'),
|
||||
url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),
|
||||
url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')
|
||||
}
|
||||
.icon {
|
||||
position:relative;
|
||||
top:1px;
|
||||
display:inline-block;
|
||||
font-family:'Glyphicons Halflings';
|
||||
font-style:normal;
|
||||
font-weight:normal;
|
||||
line-height:1;
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-moz-osx-font-smoothing:grayscale
|
||||
}
|
||||
.icon.x05 {
|
||||
font-size:6px
|
||||
}
|
||||
.icon.x2 {
|
||||
font-size:24px
|
||||
}
|
||||
.icon.x3 {
|
||||
font-size:36px
|
||||
}
|
||||
.icon.x4 {
|
||||
font-size:48px
|
||||
}
|
||||
.icon.x5 {
|
||||
font-size:60px
|
||||
}
|
||||
.icon.x6 {
|
||||
font-size:72px
|
||||
}
|
||||
.icon.x7 {
|
||||
font-size:84px
|
||||
}
|
||||
.icon.x8 {
|
||||
font-size:96px
|
||||
}
|
||||
.icon.light:before {
|
||||
color:#f2f2f2
|
||||
}
|
||||
.icon.drop:before {
|
||||
text-shadow:-1px 1px 3px rgba(0,0,0,0.3)
|
||||
}
|
||||
.icon.flip {
|
||||
-moz-transform:scaleX(-1);
|
||||
-o-transform:scaleX(-1);
|
||||
-webkit-transform:scaleX(-1);
|
||||
transform:scaleX(-1);
|
||||
filter:FlipH;
|
||||
-ms-filter:"FlipH"
|
||||
}
|
||||
.icon.flipv {
|
||||
-moz-transform:scaleY(-1);
|
||||
-o-transform:scaleY(-1);
|
||||
-webkit-transform:scaleY(-1);
|
||||
transform:scaleY(-1);
|
||||
filter:FlipV;
|
||||
-ms-filter:"FlipV"
|
||||
}
|
||||
.icon.rotate90 {
|
||||
-webkit-transform:rotate(90deg);
|
||||
-moz-transform:rotate(90deg);
|
||||
-ms-transform:rotate(90deg);
|
||||
transform:rotate(90deg)
|
||||
}
|
||||
.icon.rotate180 {
|
||||
-webkit-transform:rotate(180deg);
|
||||
-moz-transform:rotate(180deg);
|
||||
-ms-transform:rotate(180deg);
|
||||
transform:rotate(180deg)
|
||||
}
|
||||
.icon.rotate270 {
|
||||
-webkit-transform:rotate(270deg);
|
||||
-moz-transform:rotate(270deg);
|
||||
-ms-transform:rotate(270deg);
|
||||
transform:rotate(270deg)
|
||||
}
|
||||
.icon-glass:before {
|
||||
content:"\E001"
|
||||
}
|
||||
.icon-music:before {
|
||||
content:"\E002"
|
||||
}
|
||||
.icon-search:before {
|
||||
content:"\E003"
|
||||
}
|
||||
.icon-envelope:before {
|
||||
content:"\E004"
|
||||
}
|
||||
.icon-heart:before {
|
||||
content:"\E005"
|
||||
}
|
||||
.icon-star:before {
|
||||
content:"\E006"
|
||||
}
|
||||
.icon-star-empty:before {
|
||||
content:"\E007"
|
||||
}
|
||||
.icon-user:before {
|
||||
content:"\E008"
|
||||
}
|
||||
.icon-film:before {
|
||||
content:"\E009"
|
||||
}
|
||||
.icon-th-large:before {
|
||||
content:"\E010"
|
||||
}
|
||||
.icon-th:before {
|
||||
content:"\E011"
|
||||
}
|
||||
.icon-th-list:before {
|
||||
content:"\E012"
|
||||
}
|
||||
.icon-ok:before {
|
||||
content:"\E013"
|
||||
}
|
||||
.icon-remove:before {
|
||||
content:"\E014"
|
||||
}
|
||||
.icon-zoom-in:before {
|
||||
content:"\E015"
|
||||
}
|
||||
.icon-zoom-out:before {
|
||||
content:"\E016"
|
||||
}
|
||||
.icon-off:before {
|
||||
content:"\E017"
|
||||
}
|
||||
.icon-signal:before {
|
||||
content:"\E018"
|
||||
}
|
||||
.icon-cog:before {
|
||||
content:"\E019"
|
||||
}
|
||||
.icon-trash:before {
|
||||
content:"\E020"
|
||||
}
|
||||
.icon-home:before {
|
||||
content:"\E021"
|
||||
}
|
||||
.icon-file:before {
|
||||
content:"\E022"
|
||||
}
|
||||
.icon-time:before {
|
||||
content:"\E023"
|
||||
}
|
||||
.icon-road:before {
|
||||
content:"\E024"
|
||||
}
|
||||
.icon-download-alt:before {
|
||||
content:"\E025"
|
||||
}
|
||||
.icon-download:before {
|
||||
content:"\E026"
|
||||
}
|
||||
.icon-upload:before {
|
||||
content:"\E027"
|
||||
}
|
||||
.icon-inbox:before {
|
||||
content:"\E028"
|
||||
}
|
||||
.icon-play-circle:before {
|
||||
content:"\E029"
|
||||
}
|
||||
.icon-repeat:before {
|
||||
content:"\E030"
|
||||
}
|
||||
.icon-refresh:before {
|
||||
content:"\E031"
|
||||
}
|
||||
.icon-list-alt:before {
|
||||
content:"\E032"
|
||||
}
|
||||
.icon-lock:before {
|
||||
content:"\E033"
|
||||
}
|
||||
.icon-flag:before {
|
||||
content:"\E034"
|
||||
}
|
||||
.icon-headphones:before {
|
||||
content:"\E035"
|
||||
}
|
||||
.icon-volume-off:before {
|
||||
content:"\E036"
|
||||
}
|
||||
.icon-volume-down:before {
|
||||
content:"\E037"
|
||||
}
|
||||
.icon-volume-up:before {
|
||||
content:"\E038"
|
||||
}
|
||||
.icon-qrcode:before {
|
||||
content:"\E039"
|
||||
}
|
||||
.icon-barcode:before {
|
||||
content:"\E040"
|
||||
}
|
||||
.icon-tag:before {
|
||||
content:"\E041"
|
||||
}
|
||||
.icon-tags:before {
|
||||
content:"\E042"
|
||||
}
|
||||
.icon-book:before {
|
||||
content:"\E043"
|
||||
}
|
||||
.icon-bookmark:before {
|
||||
content:"\E044"
|
||||
}
|
||||
.icon-print:before {
|
||||
content:"\E045"
|
||||
}
|
||||
.icon-camera:before {
|
||||
content:"\E046"
|
||||
}
|
||||
.icon-font:before {
|
||||
content:"\E047"
|
||||
}
|
||||
.icon-bold:before {
|
||||
content:"\E048"
|
||||
}
|
||||
.icon-italic:before {
|
||||
content:"\E049"
|
||||
}
|
||||
.icon-text-height:before {
|
||||
content:"\E050"
|
||||
}
|
||||
.icon-text-width:before {
|
||||
content:"\E051"
|
||||
}
|
||||
.icon-align-left:before {
|
||||
content:"\E052"
|
||||
}
|
||||
.icon-align-center:before {
|
||||
content:"\E053"
|
||||
}
|
||||
.icon-align-right:before {
|
||||
content:"\E054"
|
||||
}
|
||||
.icon-align-justify:before {
|
||||
content:"\E055"
|
||||
}
|
||||
.icon-list:before {
|
||||
content:"\E056"
|
||||
}
|
||||
.icon-indent-left:before {
|
||||
content:"\E057"
|
||||
}
|
||||
.icon-indent-right:before {
|
||||
content:"\E058"
|
||||
}
|
||||
.icon-facetime-video:before {
|
||||
content:"\E059"
|
||||
}
|
||||
.icon-picture:before {
|
||||
content:"\E060"
|
||||
}
|
||||
.icon-pencil:before {
|
||||
content:"\E061"
|
||||
}
|
||||
.icon-map-marker:before {
|
||||
content:"\E062"
|
||||
}
|
||||
.icon-adjust:before {
|
||||
content:"\E063"
|
||||
}
|
||||
.icon-tint:before {
|
||||
content:"\E064"
|
||||
}
|
||||
.icon-edit:before {
|
||||
content:"\E065"
|
||||
}
|
||||
.icon-share:before {
|
||||
content:"\E066"
|
||||
}
|
||||
.icon-check:before {
|
||||
content:"\E067"
|
||||
}
|
||||
.icon-move:before {
|
||||
content:"\E068"
|
||||
}
|
||||
.icon-step-backward:before {
|
||||
content:"\E069"
|
||||
}
|
||||
.icon-fast-backward:before {
|
||||
content:"\E070"
|
||||
}
|
||||
.icon-backward:before {
|
||||
content:"\E071"
|
||||
}
|
||||
.icon-play:before {
|
||||
content:"\E072"
|
||||
}
|
||||
.icon-pause:before {
|
||||
content:"\E073"
|
||||
}
|
||||
.icon-stop:before {
|
||||
content:"\E074"
|
||||
}
|
||||
.icon-forward:before {
|
||||
content:"\E075"
|
||||
}
|
||||
.icon-fast-forward:before {
|
||||
content:"\E076"
|
||||
}
|
||||
.icon-step-forward:before {
|
||||
content:"\E077"
|
||||
}
|
||||
.icon-eject:before {
|
||||
content:"\E078"
|
||||
}
|
||||
.icon-chevron-left:before {
|
||||
content:"\E079"
|
||||
}
|
||||
.icon-chevron-right:before {
|
||||
content:"\E080"
|
||||
}
|
||||
.icon-plus-sign:before {
|
||||
content:"\E081"
|
||||
}
|
||||
.icon-minus-sign:before {
|
||||
content:"\E082"
|
||||
}
|
||||
.icon-remove-sign:before {
|
||||
content:"\E083"
|
||||
}
|
||||
.icon-ok-sign:before {
|
||||
content:"\E084"
|
||||
}
|
||||
.icon-question-sign:before {
|
||||
content:"\E085"
|
||||
}
|
||||
.icon-info-sign:before {
|
||||
content:"\E086"
|
||||
}
|
||||
.icon-screenshot:before {
|
||||
content:"\E087"
|
||||
}
|
||||
.icon-remove-circle:before {
|
||||
content:"\E088"
|
||||
}
|
||||
.icon-ok-circle:before {
|
||||
content:"\E089"
|
||||
}
|
||||
.icon-ban-circle:before {
|
||||
content:"\E090"
|
||||
}
|
||||
.icon-arrow-left:before {
|
||||
content:"\E091"
|
||||
}
|
||||
.icon-arrow-right:before {
|
||||
content:"\E092"
|
||||
}
|
||||
.icon-arrow-up:before {
|
||||
content:"\E093"
|
||||
}
|
||||
.icon-arrow-down:before {
|
||||
content:"\E094"
|
||||
}
|
||||
.icon-share-alt:before {
|
||||
content:"\E095"
|
||||
}
|
||||
.icon-resize-full:before {
|
||||
content:"\E096"
|
||||
}
|
||||
.icon-resize-small:before {
|
||||
content:"\E097"
|
||||
}
|
||||
.icon-plus:before {
|
||||
content:"\E098"
|
||||
}
|
||||
.icon-minus:before {
|
||||
content:"\E099"
|
||||
}
|
||||
.icon-asterisk:before {
|
||||
content:"\E100"
|
||||
}
|
||||
.icon-exclamation-sign:before {
|
||||
content:"\E101"
|
||||
}
|
||||
.icon-gift:before {
|
||||
content:"\E102"
|
||||
}
|
||||
.icon-leaf:before {
|
||||
content:"\E103"
|
||||
}
|
||||
.icon-fire:before {
|
||||
content:"\E104"
|
||||
}
|
||||
.icon-eye-open:before {
|
||||
content:"\E105"
|
||||
}
|
||||
.icon-eye-close:before {
|
||||
content:"\E106"
|
||||
}
|
||||
.icon-warning-sign:before {
|
||||
content:"\E107"
|
||||
}
|
||||
.icon-plane:before {
|
||||
content:"\E108"
|
||||
}
|
||||
.icon-calendar:before {
|
||||
content:"\E109"
|
||||
}
|
||||
.icon-random:before {
|
||||
content:"\E110"
|
||||
}
|
||||
.icon-comments:before {
|
||||
content:"\E111"
|
||||
}
|
||||
.icon-magnet:before {
|
||||
content:"\E112"
|
||||
}
|
||||
.icon-chevron-up:before {
|
||||
content:"\E113"
|
||||
}
|
||||
.icon-chevron-down:before {
|
||||
content:"\E114"
|
||||
}
|
||||
.icon-retweet:before {
|
||||
content:"\E115"
|
||||
}
|
||||
.icon-shopping-cart:before {
|
||||
content:"\E116"
|
||||
}
|
||||
.icon-folder-close:before {
|
||||
content:"\E117"
|
||||
}
|
||||
.icon-folder-open:before {
|
||||
content:"\E118"
|
||||
}
|
||||
.icon-resize-vertical:before {
|
||||
content:"\E119"
|
||||
}
|
||||
.icon-resize-horizontal:before {
|
||||
content:"\E120"
|
||||
}
|
||||
.icon-hdd:before {
|
||||
content:"\E121"
|
||||
}
|
||||
.icon-bullhorn:before {
|
||||
content:"\E122"
|
||||
}
|
||||
.icon-bell:before {
|
||||
content:"\E123"
|
||||
}
|
||||
.icon-certificate:before {
|
||||
content:"\E124"
|
||||
}
|
||||
.icon-thumbs-up:before {
|
||||
content:"\E125"
|
||||
}
|
||||
.icon-thumbs-down:before {
|
||||
content:"\E126"
|
||||
}
|
||||
.icon-hand-right:before {
|
||||
content:"\E127"
|
||||
}
|
||||
.icon-hand-left:before {
|
||||
content:"\E128"
|
||||
}
|
||||
.icon-hand-top:before {
|
||||
content:"\E129"
|
||||
}
|
||||
.icon-hand-down:before {
|
||||
content:"\E130"
|
||||
}
|
||||
.icon-circle-arrow-right:before {
|
||||
content:"\E131"
|
||||
}
|
||||
.icon-circle-arrow-left:before {
|
||||
content:"\E132"
|
||||
}
|
||||
.icon-circle-arrow-top:before {
|
||||
content:"\E133"
|
||||
}
|
||||
.icon-circle-arrow-down:before {
|
||||
content:"\E134"
|
||||
}
|
||||
.icon-globe:before {
|
||||
content:"\E135"
|
||||
}
|
||||
.icon-wrench:before {
|
||||
content:"\E136"
|
||||
}
|
||||
.icon-tasks:before {
|
||||
content:"\E137"
|
||||
}
|
||||
.icon-filter:before {
|
||||
content:"\E138"
|
||||
}
|
||||
.icon-briefcase:before {
|
||||
content:"\E139"
|
||||
}
|
||||
.icon-fullscreen:before {
|
||||
content:"\E140"
|
||||
}
|
||||
.icon-dashboard:before {
|
||||
content:"\E141"
|
||||
}
|
||||
.icon-paperclip:before {
|
||||
content:"\E142"
|
||||
}
|
||||
.icon-heart-empty:before {
|
||||
content:"\E143"
|
||||
}
|
||||
.icon-link:before {
|
||||
content:"\E144"
|
||||
}
|
||||
.icon-phone:before {
|
||||
content:"\E145"
|
||||
}
|
||||
.icon-pushpin:before {
|
||||
content:"\E146"
|
||||
}
|
||||
.icon-euro:before {
|
||||
content:"\E147"
|
||||
}
|
||||
.icon-usd:before {
|
||||
content:"\E148"
|
||||
}
|
||||
.icon-gbp:before {
|
||||
content:"\E149"
|
||||
}
|
||||
.icon-sort:before {
|
||||
content:"\E150"
|
||||
}
|
||||
.icon-sort-by-alphabet:before {
|
||||
content:"\E151"
|
||||
}
|
||||
.icon-sort-by-alphabet-alt:before {
|
||||
content:"\E152"
|
||||
}
|
||||
.icon-sort-by-order:before {
|
||||
content:"\E153"
|
||||
}
|
||||
.icon-sort-by-order-alt:before {
|
||||
content:"\E154"
|
||||
}
|
||||
.icon-sort-by-attributes:before {
|
||||
content:"\E155"
|
||||
}
|
||||
.icon-sort-by-attributes-alt:before {
|
||||
content:"\E156"
|
||||
}
|
||||
.icon-unchecked:before {
|
||||
content:"\E157"
|
||||
}
|
||||
.icon-expand:before {
|
||||
content:"\E158"
|
||||
}
|
||||
.icon-collapse:before {
|
||||
content:"\E159"
|
||||
}
|
||||
.icon-collapse-top:before {
|
||||
content:"\E160"
|
||||
}
|
||||
.icon-log-in:before {
|
||||
content:"\E161"
|
||||
}
|
||||
.icon-flash:before {
|
||||
content:"\E162"
|
||||
}
|
||||
.icon-log-out:before {
|
||||
content:"\E163"
|
||||
}
|
||||
.icon-new-window:before {
|
||||
content:"\E164"
|
||||
}
|
||||
.icon-record:before {
|
||||
content:"\E165"
|
||||
}
|
||||
.icon-save:before {
|
||||
content:"\E166"
|
||||
}
|
||||
.icon-open:before {
|
||||
content:"\E167"
|
||||
}
|
||||
.icon-saved:before {
|
||||
content:"\E168"
|
||||
}
|
||||
.icon-import:before {
|
||||
content:"\E169"
|
||||
}
|
||||
.icon-export:before {
|
||||
content:"\E170"
|
||||
}
|
||||
.icon-send:before {
|
||||
content:"\E171"
|
||||
}
|
||||
.icon-floppy-disk:before {
|
||||
content:"\E172"
|
||||
}
|
||||
.icon-floppy-saved:before {
|
||||
content:"\E173"
|
||||
}
|
||||
.icon-floppy-remove:before {
|
||||
content:"\E174"
|
||||
}
|
||||
.icon-floppy-save:before {
|
||||
content:"\E175"
|
||||
}
|
||||
.icon-floppy-open:before {
|
||||
content:"\E176"
|
||||
}
|
||||
.icon-credit-card:before {
|
||||
content:"\E177"
|
||||
}
|
||||
.icon-transfer:before {
|
||||
content:"\E178"
|
||||
}
|
||||
.icon-cutlery:before {
|
||||
content:"\E179"
|
||||
}
|
||||
.icon-header:before {
|
||||
content:"\E180"
|
||||
}
|
||||
.icon-compressed:before {
|
||||
content:"\E181"
|
||||
}
|
||||
.icon-earphone:before {
|
||||
content:"\E182"
|
||||
}
|
||||
.icon-phone-alt:before {
|
||||
content:"\E183"
|
||||
}
|
||||
.icon-tower:before {
|
||||
content:"\E184"
|
||||
}
|
||||
.icon-stats:before {
|
||||
content:"\E185"
|
||||
}
|
||||
.icon-sd-video:before {
|
||||
content:"\E186"
|
||||
}
|
||||
.icon-hd-video:before {
|
||||
content:"\E187"
|
||||
}
|
||||
.icon-subtitles:before {
|
||||
content:"\E188"
|
||||
}
|
||||
.icon-sound-stereo:before {
|
||||
content:"\E189"
|
||||
}
|
||||
.icon-sound-dolby:before {
|
||||
content:"\E190"
|
||||
}
|
||||
.icon-sound-5-1:before {
|
||||
content:"\E191"
|
||||
}
|
||||
.icon-sound-6-1:before {
|
||||
content:"\E192"
|
||||
}
|
||||
.icon-sound-7-1:before {
|
||||
content:"\E193"
|
||||
}
|
||||
.icon-copyright-mark:before {
|
||||
content:"\E194"
|
||||
}
|
||||
.icon-registration-mark:before {
|
||||
content:"\E195"
|
||||
}
|
||||
.icon-cloud:before {
|
||||
content:"\E196"
|
||||
}
|
||||
.icon-cloud-download:before {
|
||||
content:"\E197"
|
||||
}
|
||||
.icon-cloud-upload:before {
|
||||
content:"\E198"
|
||||
}
|
||||
.icon-tree-conifer:before {
|
||||
content:"\E199"
|
||||
}
|
||||
.icon-tree-deciduous:before {
|
||||
content:"\E200"
|
||||
}
|
||||
.icon-cd:before {
|
||||
content:"\E201"
|
||||
}
|
||||
.icon-save-file:before {
|
||||
content:"\E202"
|
||||
}
|
||||
.icon-open-file:before {
|
||||
content:"\E203"
|
||||
}
|
||||
.icon-level-up:before {
|
||||
content:"\E204"
|
||||
}
|
||||
.icon-copy:before {
|
||||
content:"\E205"
|
||||
}
|
||||
.icon-paste:before {
|
||||
content:"\E206"
|
||||
}
|
||||
.icon-door:before {
|
||||
content:"\E207"
|
||||
}
|
||||
.icon-key:before {
|
||||
content:"\E208"
|
||||
}
|
||||
.icon-alert:before {
|
||||
content:"\E209"
|
||||
}
|
||||
.icon-equalizer:before {
|
||||
content:"\E210"
|
||||
}
|
||||
.icon-king:before {
|
||||
content:"\E211"
|
||||
}
|
||||
.icon-queen:before {
|
||||
content:"\E212"
|
||||
}
|
||||
.icon-pawn:before {
|
||||
content:"\E213"
|
||||
}
|
||||
.icon-bishop:before {
|
||||
content:"\E214"
|
||||
}
|
||||
.icon-knight:before {
|
||||
content:"\E215"
|
||||
}
|
||||
.icon-baby-formula:before {
|
||||
content:"\E216"
|
||||
}
|
||||
.icon-tent:before {
|
||||
content:"\E217"
|
||||
}
|
||||
.icon-blackboard:before {
|
||||
content:"\E218"
|
||||
}
|
||||
.icon-bed:before {
|
||||
content:"\E219"
|
||||
}
|
||||
.icon-apple:before {
|
||||
content:"\E220"
|
||||
}
|
||||
.icon-erase:before {
|
||||
content:"\E221"
|
||||
}
|
||||
.icon-hourglass:before {
|
||||
content:"\E222"
|
||||
}
|
||||
.icon-lamp:before {
|
||||
content:"\E223"
|
||||
}
|
||||
.icon-duplicate:before {
|
||||
content:"\E224"
|
||||
}
|
||||
.icon-piggy-bank:before {
|
||||
content:"\E225"
|
||||
}
|
||||
.icon-scissors:before {
|
||||
content:"\E226"
|
||||
}
|
||||
.icon-bitcoin:before {
|
||||
content:"\E227"
|
||||
}
|
||||
.icon-yen:before {
|
||||
content:"\E228"
|
||||
}
|
||||
.icon-ruble:before {
|
||||
content:"\E229"
|
||||
}
|
||||
.icon-scale:before {
|
||||
content:"\E230"
|
||||
}
|
||||
.icon-ice-lolly:before {
|
||||
content:"\E231"
|
||||
}
|
||||
.icon-ice-lolly-tasted:before {
|
||||
content:"\E232"
|
||||
}
|
||||
.icon-education:before {
|
||||
content:"\E233"
|
||||
}
|
||||
.icon-option-horizontal:before {
|
||||
content:"\E234"
|
||||
}
|
||||
.icon-option-vertical:before {
|
||||
content:"\E235"
|
||||
}
|
||||
.icon-menu-hamburger:before {
|
||||
content:"\E236"
|
||||
}
|
||||
.icon-modal-window:before {
|
||||
content:"\E237"
|
||||
}
|
||||
.icon-oil:before {
|
||||
content:"\E238"
|
||||
}
|
||||
.icon-grain:before {
|
||||
content:"\E239"
|
||||
}
|
||||
.icon-sunglasses:before {
|
||||
content:"\E240"
|
||||
}
|
||||
.icon-text-size:before {
|
||||
content:"\E241"
|
||||
}
|
||||
.icon-text-color:before {
|
||||
content:"\E242"
|
||||
}
|
||||
.icon-text-background:before {
|
||||
content:"\E243"
|
||||
}
|
||||
.icon-object-align-top:before {
|
||||
content:"\E244"
|
||||
}
|
||||
.icon-object-align-bottom:before {
|
||||
content:"\E245"
|
||||
}
|
||||
.icon-object-align-horizontal:before {
|
||||
content:"\E246"
|
||||
}
|
||||
.icon-object-align-left:before {
|
||||
content:"\E247"
|
||||
}
|
||||
.icon-object-align-vertical:before {
|
||||
content:"\E248"
|
||||
}
|
||||
.icon-object-align-right:before {
|
||||
content:"\E249"
|
||||
}
|
||||
.icon-triangle-right:before {
|
||||
content:"\E250"
|
||||
}
|
||||
.icon-triangle-left:before {
|
||||
content:"\E251"
|
||||
}
|
||||
.icon-triangle-bottom:before {
|
||||
content:"\E252"
|
||||
}
|
||||
.icon-triangle-top:before {
|
||||
content:"\E253"
|
||||
}
|
||||
.icon-terminal:before {
|
||||
content:"\E254"
|
||||
}
|
||||
.icon-superscript:before {
|
||||
content:"\E255"
|
||||
}
|
||||
.icon-subscript:before {
|
||||
content:"\E256"
|
||||
}
|
||||
.icon-menu-left:before {
|
||||
content:"\E257"
|
||||
}
|
||||
.icon-menu-right:before {
|
||||
content:"\E258"
|
||||
}
|
||||
.icon-menu-down:before {
|
||||
content:"\E259"
|
||||
}
|
||||
.icon-menu-up:before {
|
||||
content:"\E260"
|
||||
}
|
||||
.icon-building:before {
|
||||
content:"\E261"
|
||||
}
|
||||
.icon-tick:before {
|
||||
content:"\E262"
|
||||
}
|
||||
.icon-star-half:before {
|
||||
content:"\E263"
|
||||
}
|
||||
.icon-hash:before {
|
||||
content:"\E264"
|
||||
}
|
||||
.icon-directions:before {
|
||||
content:"\E265"
|
||||
}
|
||||
.icon-gas:before {
|
||||
content:"\E266"
|
||||
}
|
||||
.icon-snowflake:before {
|
||||
content:"\E267"
|
||||
}
|
||||
.icon-sunlight:before {
|
||||
content:"\E268"
|
||||
}
|
||||
.icon-selectbox:before {
|
||||
content:"\E269"
|
||||
}
|
||||
.icon-sortable:before {
|
||||
content:"\E270"
|
||||
}
|
||||
.icon-note-empty:before {
|
||||
content:"\E271"
|
||||
}
|
||||
.icon-note:before {
|
||||
content:"\E272"
|
||||
}
|
||||
.icon-direction-right:before {
|
||||
content:"\E273"
|
||||
}
|
||||
.icon-direction-left:before {
|
||||
content:"\E274"
|
||||
}
|
||||
.icon-direction-down:before {
|
||||
content:"\E275"
|
||||
}
|
||||
.icon-direction-up:before {
|
||||
content:"\E276"
|
||||
}
|
||||
.icon-parking:before {
|
||||
content:"\E277"
|
||||
}
|
||||
.icon-coffee-cup:before {
|
||||
content:"\E278"
|
||||
}
|
||||
.icon-record-empty:before {
|
||||
content:"\E279"
|
||||
}
|
||||
.icon-move-square:before {
|
||||
content:"\E280"
|
||||
}
|
||||
.icon-bug:before {
|
||||
content:"\E281"
|
||||
}
|
||||
.icon-display:before {
|
||||
content:"\E282"
|
||||
}
|
||||
.icon-direction:before {
|
||||
content:"\E283"
|
||||
}
|
||||
.icon-group:before {
|
||||
content:"\E284"
|
||||
}
|
||||
.icon-reflect-y:before {
|
||||
content:"\E285"
|
||||
}
|
||||
.icon-reflect-x:before {
|
||||
content:"\E286"
|
||||
}
|
||||
.icon-battery-charging:before {
|
||||
content:"\E287"
|
||||
}
|
||||
.icon-battery-full:before {
|
||||
content:"\E288"
|
||||
}
|
||||
.icon-battery-75:before {
|
||||
content:"\E289"
|
||||
}
|
||||
.icon-battery-50:before {
|
||||
content:"\E290"
|
||||
}
|
||||
.icon-battery-25:before {
|
||||
content:"\E291"
|
||||
}
|
||||
.icon-battery-10:before {
|
||||
content:"\E292"
|
||||
}
|
||||
.icon-paired:before {
|
||||
content:"\E293"
|
||||
}
|
||||
.icon-rotate-right:before {
|
||||
content:"\E294"
|
||||
}
|
||||
.icon-rotate-left:before {
|
||||
content:"\E295"
|
||||
}
|
||||
.icon-list-numbered:before {
|
||||
content:"\E296"
|
||||
}
|
||||
.icon-paragraph:before {
|
||||
content:"\E297"
|
||||
}
|
||||
.icon-list-plus:before {
|
||||
content:"\E298"
|
||||
}
|
||||
.icon-synchronization:before {
|
||||
content:"\E299"
|
||||
}
|
||||
.icon-cube-black:before {
|
||||
content:"\E300"
|
||||
}
|
||||
@@ -0,0 +1,205 @@
|
||||
/*!
|
||||
* Bootstrap Context Menu
|
||||
* Author: @sydcanem
|
||||
* https://github.com/sydcanem/bootstrap-contextmenu
|
||||
*
|
||||
* Inspired by Bootstrap's dropdown plugin.
|
||||
* Bootstrap (http://getbootstrap.com).
|
||||
*
|
||||
* Licensed under MIT
|
||||
* ========================================================= */
|
||||
|
||||
;(function($) {
|
||||
|
||||
'use strict';
|
||||
|
||||
/* CONTEXTMENU CLASS DEFINITION
|
||||
* ============================ */
|
||||
var toggle = '[data-toggle="context"]';
|
||||
|
||||
var ContextMenu = function (element, options) {
|
||||
this.$element = $(element);
|
||||
|
||||
this.before = options.before || this.before;
|
||||
this.onItem = options.onItem || this.onItem;
|
||||
this.scopes = options.scopes || null;
|
||||
|
||||
if (options.target) {
|
||||
this.$element.data('target', options.target);
|
||||
}
|
||||
|
||||
this.listen();
|
||||
};
|
||||
|
||||
ContextMenu.prototype = {
|
||||
|
||||
constructor: ContextMenu
|
||||
,show: function(e) {
|
||||
|
||||
var $menu
|
||||
, evt
|
||||
, tp
|
||||
, items
|
||||
, relatedTarget = { relatedTarget: this };
|
||||
|
||||
if (this.isDisabled()) return;
|
||||
|
||||
this.closemenu();
|
||||
|
||||
if (!this.before.call(this,e,$(e.currentTarget))) return;
|
||||
|
||||
$menu = this.getMenu();
|
||||
$menu.trigger(evt = $.Event('show.bs.context', relatedTarget));
|
||||
|
||||
tp = this.getPosition(e, $menu);
|
||||
items = 'li:not(.divider)';
|
||||
$menu.attr('style', '')
|
||||
.css(tp)
|
||||
.addClass('open')
|
||||
.on('click.context.data-api', items, $.proxy(this.onItem, this, $(e.currentTarget)))
|
||||
.trigger('shown.bs.context', relatedTarget);
|
||||
|
||||
// Delegating the `closemenu` only on the currently opened menu.
|
||||
// This prevents other opened menus from closing.
|
||||
$('html')
|
||||
.on('click.context.data-api', $menu.selector, $.proxy(this.closemenu, this));
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
,closemenu: function(e) {
|
||||
var $menu
|
||||
, evt
|
||||
, items
|
||||
, relatedTarget;
|
||||
|
||||
$menu = this.getMenu();
|
||||
|
||||
if(!$menu.hasClass('open')) return;
|
||||
|
||||
relatedTarget = { relatedTarget: this };
|
||||
$menu.trigger(evt = $.Event('hide.bs.context', relatedTarget));
|
||||
|
||||
items = 'li:not(.divider)';
|
||||
$menu.removeClass('open')
|
||||
.off('click.context.data-api', items)
|
||||
.trigger('hidden.bs.context', relatedTarget);
|
||||
|
||||
$('html')
|
||||
.off('click.context.data-api', $menu.selector);
|
||||
// Don't propagate click event so other currently
|
||||
// opened menus won't close.
|
||||
return false;
|
||||
}
|
||||
|
||||
,keydown: function(e) {
|
||||
if (e.which == 27) this.closemenu(e);
|
||||
}
|
||||
|
||||
,before: function(e) {
|
||||
return true;
|
||||
}
|
||||
|
||||
,onItem: function(e) {
|
||||
return true;
|
||||
}
|
||||
|
||||
,listen: function () {
|
||||
this.$element.on('contextmenu.context.data-api', this.scopes, $.proxy(this.show, this));
|
||||
$('html').on('click.context.data-api', $.proxy(this.closemenu, this));
|
||||
$('html').on('keydown.context.data-api', $.proxy(this.keydown, this));
|
||||
}
|
||||
|
||||
,destroy: function() {
|
||||
this.$element.off('.context.data-api').removeData('context');
|
||||
$('html').off('.context.data-api');
|
||||
}
|
||||
|
||||
,isDisabled: function() {
|
||||
return this.$element.hasClass('disabled') ||
|
||||
this.$element.attr('disabled');
|
||||
}
|
||||
|
||||
,getMenu: function () {
|
||||
var selector = this.$element.data('target')
|
||||
, $menu;
|
||||
|
||||
if (!selector) {
|
||||
selector = this.$element.attr('href');
|
||||
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, ''); //strip for ie7
|
||||
}
|
||||
|
||||
$menu = $(selector);
|
||||
|
||||
return $menu && $menu.length ? $menu : this.$element.find(selector);
|
||||
}
|
||||
|
||||
,getPosition: function(e, $menu) {
|
||||
var mouseX = e.clientX
|
||||
, mouseY = e.clientY
|
||||
, boundsX = $(window).width()
|
||||
, boundsY = $(window).height()
|
||||
, menuWidth = $menu.find('.dropdown-menu').outerWidth()
|
||||
, menuHeight = $menu.find('.dropdown-menu').outerHeight()
|
||||
, tp = {"position":"absolute","z-index":9999}
|
||||
, Y, X, parentOffset;
|
||||
|
||||
if (mouseY + menuHeight > boundsY) {
|
||||
Y = {"top": mouseY - menuHeight + $(window).scrollTop()};
|
||||
} else {
|
||||
Y = {"top": mouseY + $(window).scrollTop()};
|
||||
}
|
||||
|
||||
if ((mouseX + menuWidth > boundsX) && ((mouseX - menuWidth) > 0)) {
|
||||
X = {"left": mouseX - menuWidth + $(window).scrollLeft()};
|
||||
} else {
|
||||
X = {"left": mouseX + $(window).scrollLeft()};
|
||||
}
|
||||
|
||||
// If context-menu's parent is positioned using absolute or relative positioning,
|
||||
// the calculated mouse position will be incorrect.
|
||||
// Adjust the position of the menu by its offset parent position.
|
||||
parentOffset = $menu.offsetParent().offset();
|
||||
X.left = X.left - parentOffset.left;
|
||||
Y.top = Y.top - parentOffset.top;
|
||||
|
||||
return $.extend(tp, Y, X);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/* CONTEXT MENU PLUGIN DEFINITION
|
||||
* ========================== */
|
||||
|
||||
$.fn.contextmenu = function (option,e) {
|
||||
return this.each(function () {
|
||||
var $this = $(this)
|
||||
, data = $this.data('context')
|
||||
, options = (typeof option == 'object') && option;
|
||||
|
||||
if (!data) $this.data('context', (data = new ContextMenu($this, options)));
|
||||
if (typeof option == 'string') data[option].call(data, e);
|
||||
});
|
||||
};
|
||||
|
||||
$.fn.contextmenu.Constructor = ContextMenu;
|
||||
|
||||
/* APPLY TO STANDARD CONTEXT MENU ELEMENTS
|
||||
* =================================== */
|
||||
|
||||
$(document)
|
||||
.on('contextmenu.context.data-api', function() {
|
||||
$(toggle).each(function () {
|
||||
var data = $(this).data('context');
|
||||
if (!data) return;
|
||||
data.closemenu();
|
||||
});
|
||||
})
|
||||
.on('contextmenu.context.data-api', toggle, function(e) {
|
||||
$(this).contextmenu('show', e);
|
||||
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
}(jQuery));
|
||||
@@ -0,0 +1,9 @@
|
||||
/*!
|
||||
* Cropper v3.1.6
|
||||
* https://github.com/fengyuanchen/cropper
|
||||
*
|
||||
* Copyright (c) 2014-2018 Chen Fengyuan
|
||||
* Released under the MIT license
|
||||
*
|
||||
* Date: 2018-03-01T13:33:39.581Z
|
||||
*/.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline-color:rgba(51,153,255,.75);outline:1px solid #39f;overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
|
||||
@@ -0,0 +1,499 @@
|
||||
/*
|
||||
* My97 DatePicker 4.8 Beta3
|
||||
* License: http://www.my97.net/dp/license.asp
|
||||
*/
|
||||
var $dp, datePicker;
|
||||
|
||||
(function() {
|
||||
var $ = {
|
||||
$langList: [{
|
||||
name: "en",
|
||||
charset: "UTF-8"
|
||||
},
|
||||
{
|
||||
name: "zh-cn",
|
||||
charset: "UTF-8"
|
||||
},
|
||||
{
|
||||
name: "zh-tw",
|
||||
charset: "UTF-8"
|
||||
}],
|
||||
$skinList: [{
|
||||
name: "default",
|
||||
charset: "UTF-8"
|
||||
},
|
||||
{
|
||||
name: "wang",
|
||||
charset: "UTF-8"
|
||||
}],
|
||||
$wdate: true,
|
||||
$crossFrame: true,
|
||||
$preLoad: false,
|
||||
$dpPath: "",
|
||||
doubleCalendar: false,
|
||||
enableKeyboard: true,
|
||||
enableInputMask: true,
|
||||
autoUpdateOnChanged: null,
|
||||
weekMethod: "ISO8601",
|
||||
position: {},
|
||||
lang: "auto",
|
||||
skin: "wang",
|
||||
dateFmt: "yyyy-MM-dd",
|
||||
realDateFmt: "yyyy-MM-dd",
|
||||
realTimeFmt: "HH:mm:ss",
|
||||
realFullFmt: "%Date %Time",
|
||||
minDate: "1900-01-01 00:00:00",
|
||||
maxDate: "2099-12-31 23:59:59",
|
||||
startDate: "",
|
||||
alwaysUseStartDate: false,
|
||||
yearOffset: 1911,
|
||||
firstDayOfWeek: 0,
|
||||
isShowWeek: false,
|
||||
highLineWeekDay: true,
|
||||
isShowClear: true,
|
||||
isShowToday: true,
|
||||
isShowOK: true,
|
||||
isShowOthers: true,
|
||||
readOnly: false,
|
||||
errDealMode: 0,
|
||||
autoPickDate: null,
|
||||
qsEnabled: true,
|
||||
autoShowQS: false,
|
||||
specialDates: null,
|
||||
specialDays: null,
|
||||
disabledDates: null,
|
||||
disabledDays: null,
|
||||
opposite: false,
|
||||
onpicking: null,
|
||||
onpicked: null,
|
||||
onclearing: null,
|
||||
oncleared: null,
|
||||
ychanging: null,
|
||||
ychanged: null,
|
||||
Mchanging: null,
|
||||
Mchanged: null,
|
||||
dchanging: null,
|
||||
dchanged: null,
|
||||
Hchanging: null,
|
||||
Hchanged: null,
|
||||
mchanging: null,
|
||||
mchanged: null,
|
||||
schanging: null,
|
||||
schanged: null,
|
||||
eCont: null,
|
||||
vel: null,
|
||||
elProp: "",
|
||||
errMsg: "",
|
||||
quickSel: [],
|
||||
has: {},
|
||||
getRealLang: function() {
|
||||
var _ = $.$langList;
|
||||
for (var A = 0; A < _.length; A++) if (_[A].name == this.lang) return _[A];
|
||||
return _[0]
|
||||
}
|
||||
};
|
||||
datePicker = T;
|
||||
var X = window,
|
||||
S = {
|
||||
innerHTML: ""
|
||||
},
|
||||
M = "document",
|
||||
H = "documentElement",
|
||||
C = "getElementsByTagName",
|
||||
U,
|
||||
A,
|
||||
R,
|
||||
G,
|
||||
a,
|
||||
W = navigator.appName;
|
||||
if (W == "Microsoft Internet Explorer") R = true;
|
||||
else if (W == "Opera") a = true;
|
||||
else G = true;
|
||||
A = $.$dpPath || J();
|
||||
if ($.$wdate) K(A + "skin/datePicker.css");
|
||||
U = X;
|
||||
if ($.$crossFrame) {
|
||||
try {
|
||||
while (U.parent != U && U.parent[M][C]("frameset").length == 0) U = U.parent
|
||||
} catch(N) {}
|
||||
}
|
||||
if (!U.$dp) U.$dp = {
|
||||
ff: G,
|
||||
ie: R,
|
||||
opera: a,
|
||||
status: 0,
|
||||
defMinDate: $.minDate,
|
||||
defMaxDate: $.maxDate
|
||||
};
|
||||
|
||||
B();
|
||||
|
||||
if ($.$preLoad && $dp.status == 0) E(X, "onload",
|
||||
function() {
|
||||
T(null, true)
|
||||
});
|
||||
|
||||
if ($.$preLoad && $dp.status == 0) E(X, "onload",
|
||||
function() {
|
||||
T(null, true)
|
||||
});
|
||||
if (!X[M].docMD) {
|
||||
E(X[M], "onmousedown", D);
|
||||
X[M].docMD = true
|
||||
}
|
||||
if (!U[M].docMD) {
|
||||
E(U[M], "onmousedown", D);
|
||||
U[M].docMD = true
|
||||
}
|
||||
|
||||
E(X, "onunload",
|
||||
function() {
|
||||
if ($dp.dd) O($dp.dd, "none")
|
||||
});
|
||||
|
||||
E(X, "afterrender", function() {
|
||||
if ($dp.dd) O($dp.dd, "none")
|
||||
});
|
||||
|
||||
function B() {
|
||||
try {
|
||||
U[M],
|
||||
U.$dp = U.$dp || {}
|
||||
} catch($) {
|
||||
U = X;
|
||||
$dp = $dp || {}
|
||||
}
|
||||
var A = {
|
||||
win: X,
|
||||
$: function($) {
|
||||
return (typeof $ == "string") ? X[M].getElementById($) : $
|
||||
},
|
||||
$D: function($, _) {
|
||||
return this.$DV(this.$($).value, _)
|
||||
},
|
||||
$DV: function(_, $) {
|
||||
if (_ != "") {
|
||||
this.dt = $dp.cal.splitDate(_, $dp.cal.dateFmt);
|
||||
if ($) for (var B in $) if (this.dt[B] === undefined) this.errMsg = "invalid property:" + B;
|
||||
else {
|
||||
this.dt[B] += $[B];
|
||||
if (B == "M") {
|
||||
var C = $["M"] > 0 ? 1 : 0,
|
||||
A = new Date(this.dt["y"], this.dt["M"], 0).getDate();
|
||||
this.dt["d"] = Math.min(A + C, this.dt["d"])
|
||||
}
|
||||
}
|
||||
if (this.dt.refresh()) return this.dt
|
||||
}
|
||||
return ""
|
||||
},
|
||||
show: function() {
|
||||
var A = U[M].getElementsByTagName("div"),
|
||||
$ = 100000;
|
||||
for (var B = 0; B < A.length; B++) {
|
||||
var _ = parseInt(A[B].style.zIndex);
|
||||
if (_ > $) $ = _
|
||||
}
|
||||
this.dd.style.zIndex = $ + 2;
|
||||
O(this.dd, "block")
|
||||
},
|
||||
hide: function() {
|
||||
O(this.dd, "none")
|
||||
},
|
||||
attachEvent: E
|
||||
};
|
||||
for (var _ in A) U.$dp[_] = A[_];
|
||||
$dp = U.$dp
|
||||
}
|
||||
function E(A, $, _) {
|
||||
if (R) A.attachEvent($, _);
|
||||
else if (_) {
|
||||
var B = $.replace(/on/, "");
|
||||
_._ieEmuEventHandler = function($) {
|
||||
return _($)
|
||||
};
|
||||
A.addEventListener(B, _._ieEmuEventHandler, false)
|
||||
}
|
||||
}
|
||||
function J() {
|
||||
var _, A, $ = X[M][C]("script");
|
||||
for (var B = 0; B < $.length; B++) {
|
||||
_ = $[B].getAttribute("src") || "";
|
||||
_ = _.substr(0, _.toLowerCase().indexOf("datepicker.js"));
|
||||
A = _.lastIndexOf("/");
|
||||
if (A > 0) _ = _.substring(0, A + 1);
|
||||
if (_) break
|
||||
}
|
||||
return _
|
||||
}
|
||||
function K(A, $, B) {
|
||||
var D = X[M][C]("HEAD").item(0),
|
||||
_ = X[M].createElement("link");
|
||||
if (D) {
|
||||
_.href = A;
|
||||
_.rel = "stylesheet";
|
||||
_.type = "text/css";
|
||||
if ($) _.title = $;
|
||||
if (B) _.charset = B;
|
||||
D.appendChild(_)
|
||||
}
|
||||
}
|
||||
function F($) {
|
||||
$ = $ || U;
|
||||
var A = 0,
|
||||
_ = 0;
|
||||
while ($ != U) {
|
||||
var D = $.parent[M][C]("iframe");
|
||||
for (var F = 0; F < D.length; F++) {
|
||||
try {
|
||||
if (D[F].contentWindow == $) {
|
||||
var E = V(D[F]);
|
||||
A += E.left;
|
||||
_ += E.top;
|
||||
break
|
||||
}
|
||||
} catch(B) {}
|
||||
}
|
||||
$ = $.parent
|
||||
}
|
||||
return {
|
||||
"leftM": A,
|
||||
"topM": _
|
||||
}
|
||||
}
|
||||
function V(G, F) {
|
||||
if (G.getBoundingClientRect) return G.getBoundingClientRect();
|
||||
else {
|
||||
var A = {
|
||||
ROOT_TAG: /^body|html$/i,
|
||||
OP_SCROLL: /^(?:inline|table-row)$/i
|
||||
},
|
||||
E = false,
|
||||
I = null,
|
||||
_ = G.offsetTop,
|
||||
H = G.offsetLeft,
|
||||
D = G.offsetWidth,
|
||||
B = G.offsetHeight,
|
||||
C = G.offsetParent;
|
||||
if (C != G) while (C) {
|
||||
H += C.offsetLeft;
|
||||
_ += C.offsetTop;
|
||||
if (Q(C, "position").toLowerCase() == "fixed") E = true;
|
||||
else if (C.tagName.toLowerCase() == "body") I = C.ownerDocument.defaultView;
|
||||
C = C.offsetParent
|
||||
}
|
||||
C = G.parentNode;
|
||||
while (C.tagName && !A.ROOT_TAG.test(C.tagName)) {
|
||||
if (C.scrollTop || C.scrollLeft) if (!A.OP_SCROLL.test(O(C))) if (!a || C.style.overflow !== "visible") {
|
||||
H -= C.scrollLeft;
|
||||
_ -= C.scrollTop
|
||||
}
|
||||
C = C.parentNode
|
||||
}
|
||||
if (!E) {
|
||||
var $ = Z(I);
|
||||
H -= $.left;
|
||||
_ -= $.top
|
||||
}
|
||||
D += H;
|
||||
B += _;
|
||||
return {
|
||||
"left": H,
|
||||
"top": _,
|
||||
"right": D,
|
||||
"bottom": B
|
||||
}
|
||||
}
|
||||
}
|
||||
function L($) {
|
||||
$ = $ || U;
|
||||
var B = $[M],
|
||||
A = ($.innerWidth) ? $.innerWidth: (B[H] && B[H].clientWidth) ? B[H].clientWidth: B.body.offsetWidth,
|
||||
_ = ($.innerHeight) ? $.innerHeight: (B[H] && B[H].clientHeight) ? B[H].clientHeight: B.body.offsetHeight;
|
||||
return {
|
||||
"width": A,
|
||||
"height": _
|
||||
}
|
||||
}
|
||||
function Z($) {
|
||||
$ = $ || U;
|
||||
var B = $[M],
|
||||
A = B[H],
|
||||
_ = B.body;
|
||||
B = (A && A.scrollTop != null && (A.scrollTop > _.scrollTop || A.scrollLeft > _.scrollLeft)) ? A: _;
|
||||
return {
|
||||
"top": B.scrollTop,
|
||||
"left": B.scrollLeft
|
||||
}
|
||||
}
|
||||
function D($) {
|
||||
try {
|
||||
var _ = $ ? ($.srcElement || $.target) : null;
|
||||
if ($dp.cal && !$dp.eCont && $dp.dd && _ != $dp.el && $dp.dd.style.display == "block") $dp.cal.close()
|
||||
} catch($) {}
|
||||
}
|
||||
function Y() {
|
||||
$dp.status = 2
|
||||
}
|
||||
var P, _;
|
||||
function T(N, F) {
|
||||
if (!$dp) return;
|
||||
B();
|
||||
N = N || {};
|
||||
for (var K in $) if (K.substring(0, 1) != "$" && N[K] === undefined) N[K] = $[K];
|
||||
if (F) {
|
||||
if (!L()) {
|
||||
_ = _ || setInterval(function() {
|
||||
if (U[M].readyState == "complete") clearInterval(_);
|
||||
T(null, true)
|
||||
},
|
||||
50);
|
||||
return
|
||||
}
|
||||
if ($dp.status == 0) {
|
||||
$dp.status = 1;
|
||||
N.el = S;
|
||||
I(N, true)
|
||||
} else return
|
||||
} else if (N.eCont) {
|
||||
N.eCont = $dp.$(N.eCont);
|
||||
N.el = S;
|
||||
N.autoPickDate = true;
|
||||
N.qsEnabled = false;
|
||||
I(N)
|
||||
} else {
|
||||
if ($.$preLoad && $dp.status != 2) return;
|
||||
var J = H();
|
||||
if (X.event === J || J) {
|
||||
N.srcEl = J.srcElement || J.target;
|
||||
J.cancelBubble = true
|
||||
}
|
||||
N.el = N.el = $dp.$(N.el || N.srcEl);
|
||||
if (!N.el || N.el["My97Mark"] === true || N.el.disabled || ($dp.dd && O($dp.dd) != "none" && $dp.dd.style.left != "-970px")) {
|
||||
try {
|
||||
if (N.el["My97Mark"]) N.el["My97Mark"] = false
|
||||
} catch(C) {}
|
||||
return
|
||||
}
|
||||
if (J && N.el.nodeType == 1 && N.el["My97Mark"] === undefined) {
|
||||
var A, D;
|
||||
if (J.type == "focus") E(N.el, "onclick",
|
||||
function() {
|
||||
T(N)
|
||||
});
|
||||
else E(N.el, "onfocus",
|
||||
function() {
|
||||
T(N)
|
||||
})
|
||||
}
|
||||
I(N)
|
||||
}
|
||||
function L() {
|
||||
if (R && U != X && U[M].readyState != "complete") return false;
|
||||
return true
|
||||
}
|
||||
function H() {
|
||||
if (G) {
|
||||
func = H.caller;
|
||||
while (func != null) {
|
||||
var $ = func.arguments[0];
|
||||
if ($ && ($ + "").indexOf("Event") >= 0) return $;
|
||||
func = func.caller
|
||||
}
|
||||
return null
|
||||
}
|
||||
return event
|
||||
}
|
||||
}
|
||||
function Q(_, $) {
|
||||
return _.currentStyle ? _.currentStyle[$] : document.defaultView.getComputedStyle(_, false)[$]
|
||||
}
|
||||
function O(_, $) {
|
||||
if (_) if ($ != null) _.style.display = $;
|
||||
else return Q(_, "display")
|
||||
}
|
||||
function I(G, _) {
|
||||
var D = G.el ? G.el.nodeName: "INPUT";
|
||||
if (_ || G.eCont || new RegExp(/input|textarea|div|span|p|a/ig).test(D)) G.elProp = D == "INPUT" ? "value": "innerHTML";
|
||||
else return;
|
||||
if (G.lang == "auto") G.lang = R ? navigator.browserLanguage.toLowerCase() : navigator.language.toLowerCase();
|
||||
if (!G.eCont) for (var C in G) $dp[C] = G[C];
|
||||
if (!$dp.dd || G.eCont || ($dp.dd && (G.getRealLang().name != $dp.dd.lang || G.skin != $dp.dd.skin))) {
|
||||
if (G.eCont) E(G.eCont, G);
|
||||
else {
|
||||
$dp.dd = U[M].createElement("DIV");
|
||||
$dp.dd.style.cssText = "position:absolute";
|
||||
U[M].body.appendChild($dp.dd);
|
||||
E($dp.dd, G);
|
||||
if (_) $dp.dd.style.left = $dp.dd.style.top = "-970px";
|
||||
else {
|
||||
$dp.show();
|
||||
B($dp)
|
||||
}
|
||||
}
|
||||
} else if ($dp.cal) {
|
||||
$dp.show();
|
||||
$dp.cal.init();
|
||||
if (!$dp.eCont) B($dp)
|
||||
}
|
||||
function E(I, H) {
|
||||
var G = X[M].domain,
|
||||
E = false;
|
||||
I.innerHTML = "<iframe hideFocus=true width=9 height=7 frameborder=0 border=0 scrolling=no src=\"about:blank\"></iframe>";
|
||||
var _ = $.$langList,
|
||||
C = $.$skinList,
|
||||
F;
|
||||
try {
|
||||
F = I.lastChild.contentWindow[M]
|
||||
} catch(D) {
|
||||
E = true;
|
||||
I.lastChild.src = "javascript:void((function(){document.open();document.domain='" + G + "';})())";
|
||||
F = I.lastChild.contentWindow[M]
|
||||
}
|
||||
var K = H.getRealLang();
|
||||
I.lang = K.name;
|
||||
I.skin = H.skin;
|
||||
var J = ["<head><script>", "", "var $d, $dp, $cfg=document.cfg, $pdp = parent.$dp, $dt, $tdt, $sdt, $lastInput, $IE=$pdp.ie, $FF = $pdp.ff,$OPERA=$pdp.opera, $ny, $cMark = false;", "if($cfg.eCont){$dp = {};for(var p in $pdp)$dp[p]=$pdp[p];}else{$dp=$pdp;};for(var p in $cfg){$dp[p]=$cfg[p];}", "document.oncontextmenu1=function(){try{$c._fillQS(!$dp.has.d,1);showB($d.qsDivSel);}catch(e){};return false;};", "</script><script src=", A, "lang/", K.name, ".js charset=", K.charset, "></script>"];
|
||||
if (E) J[1] = "document.domain=\"" + G + "\";";
|
||||
for (var L = 0; L < C.length; L++) if (C[L].name == H.skin) J.push("<link rel=\"stylesheet\" type=\"text/css\" href=\"" + A + "skin/" + C[L].name + "/datepicker.css\" charset=\"" + C[L].charset + "\"/>");
|
||||
J.push("<script type=\"text/javascript\" src=\"" + A + "calendar.js?\"+Math.random()+\"\"></script>");
|
||||
J.push("</head><body leftmargin=\"0\" topmargin=\"0\" tabindex=0></body></html>");
|
||||
J.push("<script>var t;t=t||setInterval(function(){if(document.ready){new My97DP();$cfg.onload();$c.autoSize();$cfg.setPos($dp);clearInterval(t);}},20);</script>");
|
||||
H.setPos = B;
|
||||
H.onload = Y;
|
||||
F.write("<html>");
|
||||
F.cfg = H;
|
||||
F.write(J.join(""));
|
||||
F.close()
|
||||
}
|
||||
function B(J) {
|
||||
|
||||
var H = J.position.left,
|
||||
C = J.position.top,
|
||||
D = J.el;
|
||||
if (D == S) return;
|
||||
if (D != J.srcEl && (O(D) == "none" || D.type == "hidden")) D = J.srcEl;
|
||||
var I = V(D),
|
||||
$ = F(X),
|
||||
E = L(U),
|
||||
B = Z(U),
|
||||
G = $dp.dd.offsetHeight,
|
||||
A = $dp.dd.offsetWidth;
|
||||
if (isNaN(C)) C = 0;
|
||||
if (($.topM + I.bottom + G > E.height) && ($.topM + I.top - G > 0)) C += B.top + $.topM + I.top - G - 2;
|
||||
else {
|
||||
C += B.top + $.topM + I.bottom;
|
||||
var _ = C - B.top + G - E.height;
|
||||
if (_ > 0) C -= _
|
||||
}
|
||||
if (isNaN(H)) H = 0;
|
||||
H += B.left + Math.min($.leftM + I.left, E.width - A - 5) - (R ? 2 : 0);
|
||||
J.dd.style.top = C + "px";
|
||||
J.dd.style.left = H + "px";
|
||||
|
||||
if ($dp.afterrender) {
|
||||
$dp.afterrender.call($dp);
|
||||
}
|
||||
}
|
||||
}
|
||||
})()
|
||||
@@ -0,0 +1,96 @@
|
||||
<script language="javascript" type="text/javascript" src="datePicker.js"></script>
|
||||
|
||||
|
||||
<input class="Wdate" type="text" onClick="datePicker({dateFmt:'yyyy-MM-dd HH:mm'});"> <font color=red><- 点我弹出日期控件</font>
|
||||
|
||||
|
||||
<br><br><br><br>
|
||||
更多demo请访问官方主页 <a href="http://www.my97.net">http://www.my97.net</a>
|
||||
|
||||
<br><br>
|
||||
<h1>请务必仔细阅读下面的文字</h1><br>
|
||||
<pre>
|
||||
注意:此版本为 4.8 Beta3 build 20130105
|
||||
|
||||
更新内容:
|
||||
[新增]preload预载选项
|
||||
[增强]验证功能可被关闭errDealMode=-1
|
||||
[修改]调整周算法模式,新增weekMethod属性
|
||||
[修改]去除My97DatePicker.htm
|
||||
[修改]position改成相对坐标(原来为绝对坐标)
|
||||
[恢复]$dpPath属性,用于解决有base标签极端情况下的问题[Beta3]
|
||||
[修正]跨域错误提示没有权限的问题[Beta3]
|
||||
[修正]两个日期框焦点混淆的问题[Beta3]
|
||||
[修正]IE中有时会一直显示正在加载的问题[Beta3]
|
||||
[修正]onchange不能触发的问题
|
||||
[修正]输入日期后回车自动变为当前日期的问题[Beta3]
|
||||
[修正]兼容最新Safari,Opera,chrome等浏览器[Beta3]
|
||||
[修正]<script>空标签时的错误
|
||||
[修正]平面模式下的几个偶发问题[Beta3]
|
||||
[修正]双月日历下跨年选择出错的问题
|
||||
[修正]修正复杂iframe下,弹出位置偏移的问题(很偶发)
|
||||
|
||||
|
||||
|
||||
使用方法:
|
||||
|
||||
1. 去官方网站看看,你当前下载的是否是最新的版本,很多bug都是因为使用的不是最新版本造成的
|
||||
官方主页:<a href="http://www.my97.net" target="_blank">http://www.my97.net</a>
|
||||
|
||||
|
||||
2. 将My97DatePicker整个目录包,放入您的项目的相应目录下
|
||||
|
||||
My97DatePicker目录下各文件的作用:
|
||||
1.1 My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名
|
||||
1.2 各目录及文件的用途:
|
||||
WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名
|
||||
calendar.js 日期库主文件,无需引入
|
||||
目录lang 存放语言文件,你可以根据需要清理或添加语言文件
|
||||
目录skin 存放皮肤的相关文件,你可以根据需要清理或添加皮肤文件包
|
||||
|
||||
|
||||
3. 您可以根据您自己的需要,删除不必要的皮肤和语言文件
|
||||
|
||||
|
||||
4. 您可以根据您自己的需要,添加新的皮肤包
|
||||
皮肤中心地址:<a href="http://www.my97.net/dp/skin.asp" target="_blank">http://www.my97.net/dp/skin.asp</a>
|
||||
|
||||
|
||||
5. 详细阅读在线演示和使用说明,大部分问题都可以通过这里解决,请细看
|
||||
在线演示:<a href="http://www.my97.net/dp/demo/" target="_blank">http://www.my97.net/dp/demo/</a>
|
||||
|
||||
|
||||
6. 如果遇到无法解决的问题
|
||||
请先参考:<a href="http://www.my97.net/dp/support.asp" target="_blank">http://www.my97.net/dp/support.asp</a>
|
||||
|
||||
|
||||
7. 如果遇到问题,而技术支持页面无法解决的
|
||||
您可以通过技术支持页面中提供的联系方式联系我,注意:问问题时,一定要附上相关的HTML代码和详细的错误信息
|
||||
|
||||
|
||||
8. 您有什么意见或建议,你可以通过技术支持页面中提供的联系方式联系我
|
||||
|
||||
|
||||
9. 如果您对日期控件的许可协议有兴趣,您可以访问:<a href="http://www.my97.net/dp/license.asp">http://www.my97.net/dp/license.asp</a>
|
||||
|
||||
|
||||
10.最后祝大家项目顺利,月月加薪!
|
||||
|
||||
---------------------------------------------------------------------
|
||||
官方主页
|
||||
<a href="http://www.my97.net" target="_blank">http://www.my97.net</a>
|
||||
|
||||
在线演示和使用说明
|
||||
<a href="http://www.my97.net/dp/demo/" target="_blank">http://www.my97.net/dp/demo/</a>
|
||||
|
||||
皮肤中心:
|
||||
<a href="http://www.my97.net/dp/skin.asp" target="_blank">http://www.my97.net/dp/skin.asp</a>
|
||||
|
||||
许可协议
|
||||
<a href="http://www.my97.net/dp/license.asp">http://www.my97.net/dp/license.asp</a>
|
||||
|
||||
源代码:
|
||||
<a href="http://www.my97.net/dp/source.asp" target="_blank">http://www.my97.net/dp/source.asp</a>
|
||||
|
||||
技术支持页面
|
||||
<a href="http://www.my97.net/dp/support.asp" target="_blank">http://www.my97.net/dp/support.asp</a></pre>
|
||||
@@ -0,0 +1,14 @@
|
||||
var $lang={
|
||||
errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?",
|
||||
aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"],
|
||||
aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"],
|
||||
aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"],
|
||||
aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"],
|
||||
clearStr: "\u6E05\u7A7A",
|
||||
todayStr: "\u4ECA\u5929",
|
||||
okStr: "\u786E\u5B9A",
|
||||
updateStr: "\u786E\u5B9A",
|
||||
timeStr: "\u65F6\u95F4",
|
||||
quickStr: "\u5FEB\u901F\u9009\u62E9",
|
||||
err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!'
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
var $lang={
|
||||
errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?",
|
||||
aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"],
|
||||
aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"],
|
||||
aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"],
|
||||
aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"],
|
||||
clearStr: "\u6E05\u7A7A",
|
||||
todayStr: "\u4ECA\u5929",
|
||||
okStr: "\u786E\u5B9A",
|
||||
updateStr: "\u786E\u5B9A",
|
||||
timeStr: "\u65F6\u95F4",
|
||||
quickStr: "\u5FEB\u901F\u9009\u62E9",
|
||||
err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!'
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
.Wdate {
|
||||
border:#999 1px solid;
|
||||
height:20px;
|
||||
background:#fff url(datePicker.gif) no-repeat right;
|
||||
}
|
||||
|
||||
.WdateFmtErr {
|
||||
font-weight: bold;
|
||||
color:red;
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,246 @@
|
||||
/*
|
||||
* My97 DatePicker 4.8
|
||||
*/
|
||||
|
||||
.WdateDiv{
|
||||
width:180px;
|
||||
background-color:#FFFFFF;
|
||||
border:#bbb 1px solid;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.WdateDiv2{
|
||||
width:360px;
|
||||
}
|
||||
.WdateDiv *{font-size:9pt;}
|
||||
|
||||
.WdateDiv .NavImg a{
|
||||
display:block;
|
||||
cursor:pointer;
|
||||
height:16px;
|
||||
width:16px;
|
||||
}
|
||||
|
||||
.WdateDiv .NavImgll a{
|
||||
float:left;
|
||||
background:transparent url(img.gif) no-repeat scroll 0 0;
|
||||
}
|
||||
.WdateDiv .NavImgl a{
|
||||
float:left;
|
||||
background:transparent url(img.gif) no-repeat scroll -16px 0;
|
||||
}
|
||||
.WdateDiv .NavImgr a{
|
||||
float:right;
|
||||
background:transparent url(img.gif) no-repeat scroll -32px 0;
|
||||
}
|
||||
.WdateDiv .NavImgrr a{
|
||||
float:right;
|
||||
background:transparent url(img.gif) no-repeat scroll -48px 0;
|
||||
}
|
||||
|
||||
.WdateDiv #dpTitle{
|
||||
height:24px;
|
||||
margin-bottom:2px;
|
||||
padding:1px;
|
||||
}
|
||||
|
||||
.WdateDiv .yminput{
|
||||
margin-top:2px;
|
||||
text-align:center;
|
||||
height:20px;
|
||||
border:0px;
|
||||
width:50px;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.WdateDiv .yminputfocus{
|
||||
margin-top:2px;
|
||||
text-align:center;
|
||||
font-weight:bold;
|
||||
height:20px;
|
||||
color:blue;
|
||||
border:#ccc 1px solid;
|
||||
width:50px;
|
||||
}
|
||||
|
||||
.WdateDiv .menuSel{
|
||||
z-index:1;
|
||||
position:absolute;
|
||||
background-color:#FFFFFF;
|
||||
border:#ccc 1px solid;
|
||||
display:none;
|
||||
}
|
||||
|
||||
.WdateDiv .menu{
|
||||
cursor:pointer;
|
||||
background-color:#fff;
|
||||
}
|
||||
|
||||
.WdateDiv .menuOn{
|
||||
cursor:pointer;
|
||||
background-color:#BEEBEE;
|
||||
}
|
||||
|
||||
.WdateDiv .invalidMenu{
|
||||
color:#aaa;
|
||||
}
|
||||
|
||||
.WdateDiv .YMenu{
|
||||
margin-top:20px;
|
||||
|
||||
}
|
||||
|
||||
.WdateDiv .MMenu{
|
||||
margin-top:20px;
|
||||
*width:62px;
|
||||
}
|
||||
|
||||
.WdateDiv .hhMenu{
|
||||
margin-top:-90px;
|
||||
margin-left:26px;
|
||||
}
|
||||
|
||||
.WdateDiv .mmMenu{
|
||||
margin-top:-46px;
|
||||
margin-left:26px;
|
||||
}
|
||||
|
||||
.WdateDiv .ssMenu{
|
||||
margin-top:-24px;
|
||||
margin-left:26px;
|
||||
}
|
||||
|
||||
.WdateDiv .Wweek {
|
||||
text-align:center;
|
||||
background:#DAF3F5;
|
||||
border-right:#BDEBEE 1px solid;
|
||||
}
|
||||
|
||||
.WdateDiv .MTitle{
|
||||
background-color:#BDEBEE;
|
||||
}
|
||||
.WdateDiv .WdayTable2{
|
||||
border-collapse:collapse;
|
||||
border:#c5d9e8 1px solid;
|
||||
}
|
||||
.WdateDiv .WdayTable2 table{
|
||||
border:0;
|
||||
}
|
||||
|
||||
.WdateDiv .WdayTable{
|
||||
line-height:20px;
|
||||
border:#c5d9e8 1px solid;
|
||||
}
|
||||
.WdateDiv .WdayTable td{
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.WdateDiv .Wday{
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.WdateDiv .WdayOn{
|
||||
cursor:pointer;
|
||||
background-color:#C0EBEF;
|
||||
}
|
||||
|
||||
.WdateDiv .Wwday{
|
||||
cursor:pointer;
|
||||
color:#FF2F2F;
|
||||
}
|
||||
|
||||
.WdateDiv .WwdayOn{
|
||||
cursor:pointer;
|
||||
color:#000;
|
||||
background-color:#C0EBEF;
|
||||
}
|
||||
.WdateDiv .Wtoday{
|
||||
cursor:pointer;
|
||||
color:blue;
|
||||
}
|
||||
.WdateDiv .Wselday{
|
||||
background-color:#A9E4E9;
|
||||
}
|
||||
.WdateDiv .WspecialDay{
|
||||
background-color:#66F4DF;
|
||||
}
|
||||
|
||||
.WdateDiv .WotherDay{
|
||||
cursor:pointer;
|
||||
color:#6A6AFF;
|
||||
}
|
||||
|
||||
.WdateDiv .WotherDayOn{
|
||||
cursor:pointer;
|
||||
background-color:#C0EBEF;
|
||||
}
|
||||
|
||||
.WdateDiv .WinvalidDay{
|
||||
color:#aaa;
|
||||
}
|
||||
|
||||
.WdateDiv #dpTime{
|
||||
float:left;
|
||||
margin-top:3px;
|
||||
margin-right:30px;
|
||||
}
|
||||
|
||||
.WdateDiv #dpTime #dpTimeStr{
|
||||
margin-left:1px;
|
||||
}
|
||||
|
||||
.WdateDiv #dpTime input{
|
||||
width:18px;
|
||||
height:20px;
|
||||
text-align:center;
|
||||
border:#ccc 1px solid;
|
||||
}
|
||||
|
||||
.WdateDiv #dpTime .tB{
|
||||
border-right:0px;
|
||||
}
|
||||
|
||||
.WdateDiv #dpTime .tE{
|
||||
border-left:0;
|
||||
border-right:0;
|
||||
}
|
||||
|
||||
.WdateDiv #dpTime .tm{
|
||||
width:7px;
|
||||
border-left:0;
|
||||
border-right:0;
|
||||
}
|
||||
|
||||
.WdateDiv #dpTime #dpTimeUp{
|
||||
height:10px;
|
||||
width:13px;
|
||||
border:0px;
|
||||
background:url(img.gif) no-repeat -32px -16px;
|
||||
}
|
||||
|
||||
.WdateDiv #dpTime #dpTimeDown{
|
||||
height:10px;
|
||||
width:13px;
|
||||
border:0px;
|
||||
background:url(img.gif) no-repeat -48px -16px;
|
||||
}
|
||||
|
||||
.WdateDiv #dpQS {
|
||||
float:left;
|
||||
margin-right:3px;
|
||||
margin-top:3px;
|
||||
background:url(img.gif) no-repeat 0px -16px;
|
||||
width:20px;
|
||||
height:20px;
|
||||
cursor:pointer;
|
||||
}
|
||||
.WdateDiv #dpControl {
|
||||
text-align:right;
|
||||
}
|
||||
.WdateDiv .dpButton{
|
||||
height:20px;
|
||||
width:45px;
|
||||
border:#ccc 1px solid;
|
||||
margin-top:2px;
|
||||
margin-right:1px;
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1017 B |
@@ -0,0 +1,254 @@
|
||||
.WdateDiv {
|
||||
position: relative;
|
||||
width: 190px;
|
||||
font-size:12px;
|
||||
color: #333;
|
||||
border: solid 1px #269bd6;
|
||||
background: #fff;
|
||||
}
|
||||
.WdateDiv2 {
|
||||
width: 360px;
|
||||
}
|
||||
.WdateDiv .NavImg a,.WdateDiv .yminput,.WdateDiv .yminputfocus,.WdateDiv #dpQS {
|
||||
background: url(img.gif) no-repeat;
|
||||
}
|
||||
.WdateDiv .NavImg a {
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.WdateDiv .NavImgll a {
|
||||
background-position: 0 5px;
|
||||
}
|
||||
.WdateDiv .NavImgl a {
|
||||
background-position: 0 -10px;
|
||||
}
|
||||
.WdateDiv .NavImgr a {
|
||||
background-position: 0 -25px;
|
||||
float: right;
|
||||
}
|
||||
.WdateDiv .NavImgrr a {
|
||||
background-position: 0 -40px;
|
||||
float: right;
|
||||
}
|
||||
.WdateDiv #dpTitle {
|
||||
line-height: 0;
|
||||
height: 23px;
|
||||
padding:3px 0 0 5px;
|
||||
border-bottom: solid 1px #d2e8fd;
|
||||
}
|
||||
.WdateDiv .yminput,.WdateDiv .yminputfocus {
|
||||
margin-left: 3px;
|
||||
width: 50px;
|
||||
height: 20px;
|
||||
line-height: 16px;
|
||||
color:#265da2;
|
||||
border:0;
|
||||
cursor: pointer;
|
||||
background-position: 35px -68px;
|
||||
}
|
||||
.WdateDiv .yminputfocus {
|
||||
background-color: #fff;
|
||||
border: solid 1px #D8D8D8;
|
||||
}
|
||||
.WdateDiv .menuSel {
|
||||
z-index: 1;
|
||||
position: absolute;
|
||||
background-color: #FFF;
|
||||
border: #A3C6C8 1px solid;
|
||||
display: none;
|
||||
}
|
||||
.WdateDiv .menu {
|
||||
background: #fff;
|
||||
}
|
||||
.WdateDiv .menuOn {
|
||||
color: #fff;
|
||||
background: #269bd6;
|
||||
}
|
||||
.WdateDiv .MMenu,.WdateDiv .YMenu {
|
||||
margin-top: 20px;
|
||||
margin-left: -1px;
|
||||
width: 68px;
|
||||
border: solid 1px #D9D9D9;
|
||||
padding: 2px;
|
||||
}
|
||||
.WdateDiv .MMenu table,.WdateDiv .YMenu table {
|
||||
width: 100%;
|
||||
}
|
||||
.WdateDiv .MMenu table td,.WdateDiv .YMenu table td {
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
}
|
||||
.WdateDiv .Wweek {
|
||||
text-align: center;
|
||||
background: #265d95;
|
||||
border-right: #BDEBEE 1px solid;
|
||||
}
|
||||
.WdateDiv td {
|
||||
line-height: 20px;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
background: #fff;
|
||||
cursor: pointer;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
/* 星期栏目 */
|
||||
.WdateDiv .MTitle td {
|
||||
line-height: 24px;
|
||||
color: #269bd6;
|
||||
background: #f3f9fe /* url(background1.gif) repeat-x top */;
|
||||
border-bottom:1px solid #e3f1fe;
|
||||
cursor: default;
|
||||
}
|
||||
.WdateDiv .WdayTable2 {
|
||||
border-collapse: collapse;
|
||||
border: gray 1px solid;
|
||||
}
|
||||
.WdateDiv .WdayTable2 table {
|
||||
border: 0;
|
||||
}
|
||||
.WdateDiv .WdayTable {
|
||||
line-height: 20px;
|
||||
color: #13777e;
|
||||
background-color: #edfbfb;
|
||||
}
|
||||
.WdateDiv .WdayTable td {
|
||||
text-align: center;
|
||||
}
|
||||
.WdateDiv .Wday {
|
||||
color: #323232;
|
||||
}
|
||||
.WdateDiv .Wwday {
|
||||
color: #269bd6;
|
||||
}
|
||||
.WdateDiv .Wtoday {
|
||||
color: #FF6D10;
|
||||
background: #E0EDFE;
|
||||
}
|
||||
.WdateDiv .WspecialDay {
|
||||
background-color: #66F4DF;
|
||||
}
|
||||
.WdateDiv .WotherDay {
|
||||
color: #D4D4D4;
|
||||
}
|
||||
.WdateDiv #dpTime {
|
||||
position: relative;
|
||||
margin-top:0;
|
||||
border-top: solid 1px #d4e9fc;
|
||||
padding:0px 0 1px 2px;
|
||||
background: #f3f9fe /*url(background1.gif) repeat-y bottom */;
|
||||
}
|
||||
.WdateDiv #dpTime #dpTimeStr {
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
color: #269bd6;
|
||||
text-align: right;
|
||||
}
|
||||
.WdateDiv #dpTime input {
|
||||
width: 25px;
|
||||
height: 20px;
|
||||
line-height:20px;
|
||||
text-align: center;
|
||||
color: #333;
|
||||
border: #D9D9D9 1px solid;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.WdateDiv #dpTime .tm {
|
||||
width: 7px;
|
||||
border: none;
|
||||
/*
|
||||
background: #F2F0F1;
|
||||
*/
|
||||
}
|
||||
.WdateDiv #dpQS {
|
||||
float: left;
|
||||
margin:7px 3px 0 3px;
|
||||
width:16px;
|
||||
height:16px;
|
||||
cursor: pointer;
|
||||
display:none;
|
||||
background-position: 0 -90px;
|
||||
}
|
||||
.WdateDiv #dpControl {
|
||||
text-align: center;
|
||||
/*
|
||||
margin-top: 3px;
|
||||
*/
|
||||
padding:2px 0;
|
||||
border-top: #e3f1fe 1px solid;
|
||||
}
|
||||
.WdateDiv .dpButton {
|
||||
margin-left: 2px;
|
||||
line-height: 16px;
|
||||
width: 45px;
|
||||
padding:2px 0;
|
||||
background: #fff/* url(button_bg.gif) repeat-x center -12px */;
|
||||
color: #666;
|
||||
/* border:solid 1px #269bd6; */
|
||||
cursor: pointer;
|
||||
/* box-shadow: 0 1px 1px rgba(90, 90, 90, 0.1);
|
||||
border-color: #ddd;
|
||||
*/
|
||||
border-width: 0;
|
||||
}
|
||||
.WdateDiv .dpButton:hover {
|
||||
color: #fff;
|
||||
background: #fff/* url(button_bg.gif) repeat-x center -1px */;
|
||||
background-color: #269bd6;
|
||||
border-color: #269bd6;
|
||||
}
|
||||
.WdateDiv .hhMenu,.WdateDiv .mmMenu,.WdateDiv .ssMenu {
|
||||
position: absolute;
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
border: solid 1px #DEDEDE;
|
||||
background-color: #F2F0F1;
|
||||
padding: 3px;
|
||||
}
|
||||
.WdateDiv #dpTime .menu,.WdateDiv #dpTime .menuOn {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
text-align: center;
|
||||
background: #fff;
|
||||
}
|
||||
.WdateDiv #dpTime .menuOn {
|
||||
background: #269bd6;
|
||||
}
|
||||
.WdateDiv #dpTime td {
|
||||
/*
|
||||
background: #fff url(background1.gif) repeat-x top;
|
||||
background: #F2F0F1;
|
||||
*/
|
||||
}
|
||||
.WdateDiv #dpTime table td {
|
||||
background: transparent;
|
||||
}
|
||||
.WdateDiv .hhMenu {
|
||||
top: -87px;
|
||||
left: 32px;
|
||||
}
|
||||
.WdateDiv .mmMenu {
|
||||
top: -47px;
|
||||
left: 32px;
|
||||
}
|
||||
.WdateDiv .ssMenu {
|
||||
top: -27px;
|
||||
left: 32px;
|
||||
}
|
||||
.WdateDiv .invalidMenu,.WdateDiv .WinvalidDay {
|
||||
color: #aaa;
|
||||
}
|
||||
.WdateDiv .WdayOn,.WdateDiv .WwdayOn,.WdateDiv .Wselday,.WdateDiv .WotherDayOn {
|
||||
background-color: #269bd6;
|
||||
color: #fff;
|
||||
}
|
||||
.WdateDiv #dpTime #dpTimeUp,.WdateDiv #dpTime #dpTimeDown {
|
||||
display: none;
|
||||
}
|
||||
|
After Width: | Height: | Size: 899 B |
@@ -0,0 +1,128 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
||||
<title>演示</title>
|
||||
</head>
|
||||
<script src="dhtmlxgantt.js" type="text/javascript" charset="utf-8"></script>
|
||||
<script src="dhtmlxgantt_marker.js" type="text/javascript" charset="utf-8"></script>
|
||||
<script src="locale_cn.js" type="text/javascript"></script>
|
||||
<link rel="stylesheet" href="dhtmlxgantt.css" type="text/css" media="screen" title="no title" charset="utf-8">
|
||||
|
||||
<style type="text/css">
|
||||
html, body{ height:100%; padding:0px; margin:0px; overflow: hidden;}
|
||||
.gantt_task_line.gantt_dependent_task {
|
||||
background-color: #eee;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
.gantt_task_line.gantt_dependent_task .gantt_task_progress {
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
.gantt_task_line.gantt_dependent_task .gantt_task_content {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.gantt_task_line.gantt_selected {
|
||||
box-shadow: 0 0 5px #fff;
|
||||
}
|
||||
|
||||
.status_line {
|
||||
background-color: #0ca30a;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
|
||||
<div id="gantt_here" style='width:100%;height:100%;'></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
var demo_tasks = {
|
||||
"data":[
|
||||
{"id":11, "text":"Project #1", "start_date":"", "duration":"", "progress": 0.6, "open": true},
|
||||
|
||||
{"id":12, "text":"Task #1", "start_date":"03-04-2013", "duration":"5", "parent":"11", "progress": 1, "open": true},
|
||||
{"id":13, "text":"Task #2", "start_date":"", "duration":"", "parent":"11", "progress": 0.5, "open": true},
|
||||
{"id":14, "text":"Task #3", "start_date":"02-04-2013", "duration":"6", "parent":"11", "progress": 0.8, "open": true},
|
||||
{"id":15, "text":"Task #4", "start_date":"", "duration":"", "parent":"11", "progress": 0.2, "open": true},
|
||||
{"id":16, "text":"Task #5", "start_date":"02-04-2013", "duration":"7", "parent":"11", "progress": 0, "open": true},
|
||||
|
||||
{"id":17, "text":"Task #2.1", "start_date":"03-04-2013", "duration":"2", "parent":"13", "progress": 1, "open": true},
|
||||
{"id":18, "text":"Task #2.2", "start_date":"06-04-2013", "duration":"3", "parent":"13", "progress": 0.8, "open": true},
|
||||
{"id":19, "text":"Task #2.3", "start_date":"10-04-2013", "duration":"4", "parent":"13", "progress": 0.2, "open": true},
|
||||
{"id":20, "text":"Task #2.4", "start_date":"10-04-2013", "duration":"4", "parent":"13", "progress": 0, "open": true},
|
||||
{"id":21, "text":"Task #4.1", "start_date":"03-04-2013", "duration":"4", "parent":"15", "progress": 0.5, "open": true},
|
||||
{"id":22, "text":"Task #4.2", "start_date":"03-04-2013", "duration":"4", "parent":"15", "progress": 0.1, "open": true},
|
||||
{"id":23, "text":"Task #4.3", "start_date":"03-05-2013", "duration":"5", "parent":"15", "progress": 0, "open": true},
|
||||
{"id":24, "text":"Task #4.3", "start_date":"70-05-2013", "duration":"5", "parent":"15", "progress": 0, "open": true},
|
||||
{"id":25, "text":"Task #4.3", "start_date":"11-05-2013", "duration":"5", "parent":"15", "progress": 0, "open": true}
|
||||
],/*
|
||||
"links":[
|
||||
{"id":"10","source":"11","target":"12","type":"1"},
|
||||
{"id":"11","source":"11","target":"13","type":"1"},
|
||||
{"id":"12","source":"11","target":"14","type":"1"},
|
||||
{"id":"13","source":"11","target":"15","type":"1"},
|
||||
{"id":"14","source":"11","target":"16","type":"1"},
|
||||
{"id":"15","source":"13","target":"17","type":"1"},
|
||||
{"id":"16","source":"17","target":"18","type":"0"},
|
||||
{"id":"17","source":"18","target":"19","type":"0"},
|
||||
{"id":"18","source":"19","target":"20","type":"0"},
|
||||
{"id":"19","source":"15","target":"21","type":"2"},
|
||||
{"id":"20","source":"15","target":"22","type":"2"},
|
||||
{"id":"21","source":"15","target":"23","type":"2"}
|
||||
]*/
|
||||
};
|
||||
|
||||
/*
|
||||
gantt.config.lightbox.sections = [
|
||||
{name: "description", height: 70, map_to: "text", type: "textarea", focus: true},
|
||||
{name: "start_date", type: "duration", map_to: "auto"}
|
||||
];
|
||||
*/
|
||||
|
||||
gantt.config.columns = [
|
||||
{name:"text", label:"任务列表", tree:true, width:'*'},
|
||||
// {name:"start_date", align:'center', label:"开始日期", width:'80'},
|
||||
// {name:"duration", align:'center', label:"持续(天)", width:'60'},
|
||||
];
|
||||
|
||||
gantt.config.scale_unit = "month";
|
||||
gantt.config.date_scale = "%Y - %m";
|
||||
gantt.config.min_column_width = 60;
|
||||
gantt.config.duration_unit = "day";
|
||||
gantt.config.scale_height = 50;
|
||||
gantt.config.row_height = 26;
|
||||
gantt.config.grid_width = 220;
|
||||
|
||||
gantt.config.show_links = false;
|
||||
|
||||
gantt.attachEvent("onTaskDblClick", function (task_id) {
|
||||
var task = gantt.getTask(task_id);
|
||||
console.log(task);
|
||||
});
|
||||
|
||||
var date_to_str = gantt.date.date_to_str(gantt.config.task_date);
|
||||
var today = new Date(2013, 3, 5);
|
||||
gantt.addMarker({
|
||||
start_date: today,
|
||||
css: "today",
|
||||
text: "今天",
|
||||
title:"今天: "+ date_to_str(today)
|
||||
});
|
||||
|
||||
/*
|
||||
var start = new Date(2013, 3, 4);
|
||||
gantt.addMarker({
|
||||
start_date: start,
|
||||
css: "status_line",
|
||||
text: "项目开始",
|
||||
title:"项目开始: "+ date_to_str(start)
|
||||
});
|
||||
*/
|
||||
|
||||
gantt.config.subscales = [
|
||||
{unit:"day", step:1, date:"%d %D"}
|
||||
];
|
||||
|
||||
gantt.init("gantt_here");
|
||||
gantt.parse(demo_tasks);
|
||||
</script>
|
||||
</body>
|
||||
@@ -0,0 +1,369 @@
|
||||
/*
|
||||
@license
|
||||
|
||||
dhtmlxGantt v.4.2.1 Stardard
|
||||
This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited.
|
||||
|
||||
(c) Dinamenta, UAB.
|
||||
*/
|
||||
gantt={version:"4.2.1"},gantt.event=function(t,e,n){t.addEventListener?t.addEventListener(e,n,!1):t.attachEvent&&t.attachEvent("on"+e,n)},gantt.eventRemove=function(t,e,n){t.removeEventListener?t.removeEventListener(e,n,!1):t.detachEvent&&t.detachEvent("on"+e,n)},gantt._eventable=function(t){t._silent_mode=!1,t._silentStart=function(){this._silent_mode=!0},t._silentEnd=function(){this._silent_mode=!1},t.attachEvent=function(t,e,n){return t="ev_"+t.toLowerCase(),this[t]||(this[t]=new this._eventCatcher(n||this)),
|
||||
t+":"+this[t].addEvent(e)},t.callEvent=function(t,e){return this._silent_mode?!0:(t="ev_"+t.toLowerCase(),this[t]?this[t].apply(this,e):!0)},t.checkEvent=function(t){return!!this["ev_"+t.toLowerCase()]},t._eventCatcher=function(t){var e=[],n=function(){for(var n=!0,a=0;a<e.length;a++)if(e[a]){var i=e[a].apply(t,arguments);n=n&&i}return n};return n.addEvent=function(t){return"function"==typeof t?e.push(t)-1:!1},n.removeEvent=function(t){e[t]=null},n},t.detachEvent=function(t){if(t){var e=t.split(":");
|
||||
this[e[0]].removeEvent(e[1])}},t.detachAllEvents=function(){for(var t in this)0===t.indexOf("ev_")&&delete this[t]},t=null},gantt.copy=function(t){var e,n,a;if(t&&"object"==typeof t){for(a={},n=[Array,Date,Number,String,Boolean],e=0;e<n.length;e++)t instanceof n[e]&&(a=e?new n[e](t):new n[e]);for(e in t)Object.prototype.hasOwnProperty.apply(t,[e])&&(a[e]=gantt.copy(t[e]))}return a||t},gantt.mixin=function(t,e,n){for(var a in e)(!t[a]||n)&&(t[a]=e[a]);return t},gantt.defined=function(t){return"undefined"!=typeof t;
|
||||
},gantt.uid=function(){return this._seed||(this._seed=(new Date).valueOf()),this._seed++,this._seed},gantt.bind=function(t,e){return t.bind?t.bind(e):function(){return t.apply(e,arguments)}},function(){function t(t){var e=!1,n=!1;if(window.getComputedStyle){var a=window.getComputedStyle(t,null);e=a.display,n=a.visibility}else t.currentStyle&&(e=t.currentStyle.display,n=t.currentStyle.visibility);return"none"!=e&&"hidden"!=n}function e(t){return!isNaN(t.getAttribute("tabindex"))&&1*t.getAttribute("tabindex")>=0;
|
||||
}function n(t){var e={a:!0,area:!0};return e[t.nodeName.loLowerCase()]?!!t.getAttribute("href"):!0}function a(t){var e={input:!0,select:!0,textarea:!0,button:!0,object:!0};return e[t.nodeName.toLowerCase()]?!t.hasAttribute("disabled"):!0}gantt._getFocusableNodes=function(i){for(var s=i.querySelectorAll(["a[href]","area[href]","input","select","textarea","button","iframe","object","embed","[tabindex]","[contenteditable]"].join(", ")),r=Array.prototype.slice.call(s,0),o=0;o<r.length;o++){var _=r[o],l=(e(_)||a(_)||n(_))&&t(_);
|
||||
l||(r.splice(o,1),o--)}return r}}(),gantt._get_position=function(t){var e=0,n=0;if(t.getBoundingClientRect){var a=t.getBoundingClientRect(),i=document.body,s=document.documentElement,r=window.pageYOffset||s.scrollTop||i.scrollTop,o=window.pageXOffset||s.scrollLeft||i.scrollLeft,_=s.clientTop||i.clientTop||0,l=s.clientLeft||i.clientLeft||0;return e=a.top+r-_,n=a.left+o-l,{y:Math.round(e),x:Math.round(n),width:t.offsetWidth,height:t.offsetHeight}}for(;t;)e+=parseInt(t.offsetTop,10),n+=parseInt(t.offsetLeft,10),
|
||||
t=t.offsetParent;return{y:e,x:n,width:t.offsetWidth,height:t.offsetHeight}},gantt._detectScrollSize=function(){var t=document.createElement("div");t.style.cssText="visibility:hidden;position:absolute;left:-1000px;width:100px;padding:0px;margin:0px;height:110px;min-height:100px;overflow-y:scroll;",document.body.appendChild(t);var e=t.offsetWidth-t.clientWidth;return document.body.removeChild(t),e},window.dhtmlx&&(dhtmlx.attaches||(dhtmlx.attaches={}),dhtmlx.attaches.attachGantt=function(t,e,n){var a=document.createElement("DIV");
|
||||
n=n||window.gantt,a.id="gantt_"+n.uid(),a.style.width="100%",a.style.height="100%",a.cmp="grid",document.body.appendChild(a),this.attachObject(a.id),this.dataType="gantt",this.dataObj=n;var i=this.vs[this.av];i.grid=n,n.init(a.id,t,e),a.firstChild.style.border="none",i.gridId=a.id,i.gridObj=a;var s="_viewRestore";return this.vs[this[s]()].grid}),"undefined"!=typeof window.dhtmlXCellObject&&(dhtmlXCellObject.prototype.attachGantt=function(t,e,n){n=n||window.gantt;var a=document.createElement("DIV");
|
||||
a.id="gantt_"+n.uid(),a.style.width="100%",a.style.height="100%",a.cmp="grid",document.body.appendChild(a),this.attachObject(a.id),this.dataType="gantt",this.dataObj=n,n.init(a.id,t,e),a.firstChild.style.border="none";return a=null,this.callEvent("_onContentAttach",[]),this.dataObj}),gantt._eventable(gantt),gantt.config||(gantt.config={}),gantt.config||(gantt.config={}),gantt.templates||(gantt.templates={}),function(){gantt.mixin(gantt.config,{links:{finish_to_start:"0",start_to_start:"1",finish_to_finish:"2",
|
||||
start_to_finish:"3"},types:{task:"task",project:"project",milestone:"milestone"},duration_unit:"day",work_time:!1,correct_work_time:!1,skip_off_time:!1,cascade_delete:!0,autosize:!1,autosize_min_width:0,autoscroll:!0,autoscroll_speed:30,show_links:!0,show_task_cells:!0,static_background:!1,branch_loading:!1,show_loading:!1,show_chart:!0,show_grid:!0,min_duration:36e5,xml_date:"%d-%m-%Y %H:%i",api_date:"%d-%m-%Y %H:%i",start_on_monday:!0,server_utc:!1,show_progress:!0,fit_tasks:!1,select_task:!0,scroll_on_click:!0,
|
||||
preserve_scroll:!0,readonly:!1,date_grid:"%Y-%m-%d",drag_links:!0,drag_progress:!0,drag_resize:!0,drag_move:!0,drag_mode:{resize:"resize",progress:"progress",move:"move",ignore:"ignore"},round_dnd_dates:!0,link_wrapper_width:20,root_id:0,autofit:!1,columns:[{name:"text",tree:!0,width:"*",resize:!0},{name:"start_date",align:"center",resize:!0},{name:"duration",align:"center"},{name:"add",width:"44"}],step:1,scale_unit:"day",scale_offset_minimal:!0,subscales:[],inherit_scale_class:!1,time_step:60,duration_step:1,
|
||||
date_scale:"%d %M",task_date:"%d %F %Y",time_picker:"%H:%i",task_attribute:"task_id",link_attribute:"link_id",layer_attribute:"data-layer",buttons_left:["gantt_save_btn","gantt_cancel_btn"],_migrate_buttons:{dhx_save_btn:"gantt_save_btn",dhx_cancel_btn:"gantt_cancel_btn",dhx_delete_btn:"gantt_delete_btn"},buttons_right:["gantt_delete_btn"],lightbox:{sections:[{name:"description",height:70,map_to:"text",type:"textarea",focus:!0},{name:"time",type:"duration",map_to:"auto"}],project_sections:[{name:"description",
|
||||
height:70,map_to:"text",type:"textarea",focus:!0},{name:"type",type:"typeselect",map_to:"type"},{name:"time",type:"duration",readonly:!0,map_to:"auto"}],milestone_sections:[{name:"description",height:70,map_to:"text",type:"textarea",focus:!0},{name:"type",type:"typeselect",map_to:"type"},{name:"time",type:"duration",single_date:!0,map_to:"auto"}]},drag_lightbox:!0,sort:!1,details_on_create:!0,details_on_dblclick:!0,initial_scroll:!0,task_scroll_offset:100,order_branch:!1,order_branch_free:!1,task_height:"full",
|
||||
min_column_width:70,min_grid_column_width:70,grid_resizer_column_attribute:"column_index",grid_resizer_attribute:"grid_resizer",keep_grid_width:!1,grid_resize:!1,show_unscheduled:!0,readonly_property:"readonly",editable_property:"editable",calendar_property:"calendar_id",resource_calendars:{},type_renderers:{},open_tree_initially:!1,optimize_render:!0,prevent_default_scroll:!1,show_errors:!0,wai_aria_attributes:!0,smart_scales:!0}),gantt.keys={edit_save:13,edit_cancel:27},gantt._init_template=function(t,e,n){
|
||||
var a=this._reg_templates||{};n=n||t,this.config[t]&&a[n]!=this.config[t]&&(e&&this.templates[n]||(this.templates[n]=this.date.date_to_str(this.config[t]),a[n]=this.config[t])),this._reg_templates=a},gantt._init_templates=function(){var t=gantt.locale.labels;t.gantt_save_btn=t.icon_save,t.gantt_cancel_btn=t.icon_cancel,t.gantt_delete_btn=t.icon_delete;var e=this.date.date_to_str,n=this.config;gantt._init_template("date_scale",!0),gantt._init_template("date_grid",!0,"grid_date_format"),gantt._init_template("task_date",!0),
|
||||
gantt.mixin(this.templates,{xml_date:this.date.str_to_date(n.xml_date,n.server_utc),xml_format:e(n.xml_date,n.server_utc),api_date:this.date.str_to_date(n.api_date),progress_text:function(t,e,n){return""},grid_header_class:function(t,e){return""},task_text:function(t,e,n){return n.text},task_class:function(t,e,n){return""},grid_row_class:function(t,e,n){return""},task_row_class:function(t,e,n){return""},task_cell_class:function(t,e){return""},scale_cell_class:function(t){return""},scale_row_class:function(t){
|
||||
return""},grid_indent:function(t){return"<div class='gantt_tree_indent'></div>"},grid_folder:function(t){return"<div class='gantt_tree_icon gantt_folder_"+(t.$open?"open":"closed")+"'></div>"},grid_file:function(t){return"<div class='gantt_tree_icon gantt_file'></div>"},grid_open:function(t){return"<div class='gantt_tree_icon gantt_"+(t.$open?"close":"open")+"'></div>"},grid_blank:function(t){return"<div class='gantt_tree_icon gantt_blank'></div>"},date_grid:function(t,e){return e&&gantt.isUnscheduledTask(e)&&gantt.config.show_unscheduled?gantt.templates.task_unscheduled_time(e):gantt.templates.grid_date_format(t);
|
||||
},task_time:function(t,e,n){return gantt.isUnscheduledTask(n)&&gantt.config.show_unscheduled?gantt.templates.task_unscheduled_time(n):gantt.templates.task_date(t)+" - "+gantt.templates.task_date(e)},task_unscheduled_time:function(t){return""},time_picker:e(n.time_picker),link_class:function(t){return""},link_description:function(t){var e=gantt.getTask(t.source),n=gantt.getTask(t.target);return"<b>"+e.text+"</b> – <b>"+n.text+"</b>"},drag_link:function(t,e,n,a){t=gantt.getTask(t);var i=gantt.locale.labels,s="<b>"+t.text+"</b> "+(e?i.link_start:i.link_end)+"<br/>";
|
||||
return n&&(n=gantt.getTask(n),s+="<b> "+n.text+"</b> "+(a?i.link_start:i.link_end)+"<br/>"),s},drag_link_class:function(t,e,n,a){var i="";if(t&&n){var s=gantt.isLinkAllowed(t,n,e,a);i=" "+(s?"gantt_link_allow":"gantt_link_deny")}return"gantt_link_tooltip"+i},tooltip_date_format:gantt.date.date_to_str("%Y-%m-%d"),tooltip_text:function(t,e,n){return"<b>Task:</b> "+n.text+"<br/><b>Start date:</b> "+gantt.templates.tooltip_date_format(t)+"<br/><b>End date:</b> "+gantt.templates.tooltip_date_format(e);
|
||||
}}),this.callEvent("onTemplatesReady",[])}}(),gantt._click={},gantt._dbl_click={},gantt._context_menu={},gantt._on_click=function(t){t=t||window.event;var e=t.target||t.srcElement,n=gantt.locate(t),a=!0;if(null!==n?a=!gantt.checkEvent("onTaskClick")||gantt.callEvent("onTaskClick",[n,t]):gantt.callEvent("onEmptyClick",[t]),a){var i=gantt._find_ev_handler(t,e,gantt._click,n);if(!i)return;n&&gantt.getTask(n)&&gantt.config.select_task&&gantt.selectTask(n)}},gantt._on_contextmenu=function(t){t=t||window.event;
|
||||
var e=t.target||t.srcElement,n=gantt.locate(e),a=gantt.locate(e,gantt.config.link_attribute),i=!gantt.checkEvent("onContextMenu")||gantt.callEvent("onContextMenu",[n,a,t]);return i||(t.preventDefault?t.preventDefault():t.returnValue=!1),i},gantt._find_ev_handler=function(t,e,n,a){for(var i=!0;e;){var s=gantt._getClassName(e);if(s){s=s.split(" ");for(var r=0;r<s.length;r++)if(s[r]&&n[s[r]]){var o=n[s[r]].call(gantt,t,a,e);i=i&&!("undefined"!=typeof o&&o!==!0)}}e=e.parentNode}return i},gantt._on_dblclick=function(t){
|
||||
t=t||window.event;var e=t.target||t.srcElement,n=gantt.locate(t),a=!gantt.checkEvent("onTaskDblClick")||gantt.callEvent("onTaskDblClick",[n,t]);if(a){var i=gantt._find_ev_handler(t,e,gantt._dbl_click,n);if(!i)return;null!==n&&gantt.getTask(n)&&a&&gantt.config.details_on_dblclick&&gantt.showLightbox(n)}},gantt._on_mousemove=function(t){if(gantt.checkEvent("onMouseMove")){var e=gantt.locate(t);gantt._last_move_event=t,gantt.callEvent("onMouseMove",[e,t])}},gantt._DnD=function(t,e){this._obj=t,e&&(this._settings=e),
|
||||
gantt._eventable(this);var n=this.getInputMethods();this._drag_start_timer=null,gantt.attachEvent("onGanttScroll",gantt.bind(function(t,e){this.clearDragTimer()},this));for(var a=0;a<n.length;a++)gantt.bind(function(n){gantt.event(t,n.down,gantt.bind(function(a){e.original_target={target:a.target||a.srcElement},gantt.config.touch?(this.clearDragTimer(),this._drag_start_timer=setTimeout(gantt.bind(function(){this.dragStart(t,a,n)},this),gantt.config.touch_drag)):this.dragStart(t,a,n)},this)),gantt.event(document.body,n.up,gantt.bind(function(t){
|
||||
this.clearDragTimer()},this))},this)(n[a])},gantt._DnD.prototype={traceDragEvents:function(t,e){var n=gantt.bind(function(n){return this.dragMove(t,n,e.accessor)},this),a=(gantt.bind(function(e){return this.dragScroll(t,e)},this),gantt.bind(function(t){return t&&t.preventDefault&&t.preventDefault(),(t||event).cancelBubble=!0,gantt.defined(this.config.updates_per_second)&&!gantt._checkTimeout(this,this.config.updates_per_second)?!0:n(t)},this)),i=gantt.bind(function(n){return gantt.eventRemove(document.body,e.move,a),
|
||||
gantt.eventRemove(document.body,e.up,i),this.dragEnd(t)},this);gantt.event(document.body,e.move,a),gantt.event(document.body,e.up,i)},checkPositionChange:function(t){var e=t.x-this.config.pos.x,n=t.y-this.config.pos.y,a=Math.sqrt(Math.pow(Math.abs(e),2)+Math.pow(Math.abs(n),2));return a>this.config.sensitivity?!0:!1},initDnDMarker:function(){var t=this.config.marker=document.createElement("div");t.className="gantt_drag_marker",t.innerHTML="Dragging object",document.body.appendChild(t)},backupEventTarget:function(t,e){
|
||||
if(gantt.config.touch){var n=e(t),a=n.target||n.srcElement,i=a.cloneNode(!0);this.config.original_target={target:i},this.config.backup_element=a,a.parentNode.appendChild(i),a.style.display="none",document.body.appendChild(a)}},getInputMethods:function(){var t=[];if(t.push({move:"mousemove",down:"mousedown",up:"mouseup",accessor:function(t){return t}}),gantt.config.touch){var e=!0;try{document.createEvent("TouchEvent")}catch(n){e=!1}e?t.push({move:"touchmove",down:"touchstart",up:"touchend",accessor:function(t){
|
||||
return t.touches&&t.touches.length>1?null:t.touches[0]?{target:document.elementFromPoint(t.touches[0].clientX,t.touches[0].clientY),pageX:t.touches[0].pageX,pageY:t.touches[0].pageY,clientX:t.touches[0].clientX,clientY:t.touches[0].clientY}:t}}):window.navigator.pointerEnabled?t.push({move:"pointermove",down:"pointerdown",up:"pointerup",accessor:function(t){return"mouse"==t.pointerType?null:t}}):window.navigator.msPointerEnabled&&t.push({move:"MSPointerMove",down:"MSPointerDown",up:"MSPointerUp",
|
||||
accessor:function(t){return t.pointerType==t.MSPOINTER_TYPE_MOUSE?null:t}})}return t},clearDragTimer:function(){this._drag_start_timer&&(clearTimeout(this._drag_start_timer),this._drag_start_timer=null)},dragStart:function(t,e,n){this.config={obj:t,marker:null,started:!1,pos:this.getPosition(e),sensitivity:4},this._settings&&gantt.mixin(this.config,this._settings,!0),this.traceDragEvents(t,n),gantt._prevent_touch_scroll=!0,document.body.className+=" gantt_noselect",gantt.config.touch&&this.dragMove(t,e,n.accessor);
|
||||
},dragMove:function(t,e,n){var a=n(e);if(a){if(!this.config.marker&&!this.config.started){var i=this.getPosition(a);if(gantt.config.touch||this.checkPositionChange(i)){if(this.config.started=!0,this.config.ignore=!1,this.callEvent("onBeforeDragStart",[t,this.config.original_target])===!1)return this.config.ignore=!0,!0;this.backupEventTarget(e,n),this.initDnDMarker(),gantt._touch_feedback(),this.callEvent("onAfterDragStart",[t,this.config.original_target])}else this.config.ignore=!0}return this.config.ignore?void 0:(a.pos=this.getPosition(a),
|
||||
this.config.marker.style.left=a.pos.x+"px",this.config.marker.style.top=a.pos.y+"px",this.callEvent("onDragMove",[t,a]),!1)}},dragEnd:function(t){var e=this.config.backup_element;e&&e.parentNode&&e.parentNode.removeChild(e),gantt._prevent_touch_scroll=!1,this.config.marker&&(this.config.marker.parentNode.removeChild(this.config.marker),this.config.marker=null,this.callEvent("onDragEnd",[])),document.body.className=document.body.className.replace(" gantt_noselect","")},getPosition:function(t){var e=0,n=0;
|
||||
return t=t||window.event,t.pageX||t.pageY?(e=t.pageX,n=t.pageY):(t.clientX||t.clientY)&&(e=t.clientX+document.body.scrollLeft+document.documentElement.scrollLeft,n=t.clientY+document.body.scrollTop+document.documentElement.scrollTop),{x:e,y:n}}},gantt._init_grid=function(){this._click.gantt_close=this.bind(function(t,e,n){return this.close(e),!1},this),this._click.gantt_open=this.bind(function(t,e,n){return this.open(e),!1},this),this._click.gantt_row=this.bind(function(t,e,n){if(null!==e){var a=this.getTask(e);
|
||||
this.config.scroll_on_click&&this.showDate(a.start_date),this.callEvent("onTaskRowClick",[e,n])}},this),this._click.gantt_grid_head_cell=this.bind(function(t,e,n){var a=n.getAttribute("column_id");if(this.callEvent("onGridHeaderClick",[a,t])){if("add"==a)return void this._click.gantt_add(t,this.config.root_id);if(this.config.sort){for(var i,s=a,r=0;r<this.config.columns.length;r++)if(this.config.columns[r].name==a){i=this.config.columns[r];break}if(i&&void 0!==i.sort&&i.sort!==!0&&(s=i.sort,!s))return;
|
||||
var o=this._sort&&this._sort.direction&&this._sort.name==a?this._sort.direction:"desc";o="desc"==o?"asc":"desc",this._sort={name:a,direction:o},this.sort(s,"desc"==o)}}},this),!this.config.sort&&this.config.order_branch&&this._init_dnd(),this._click.gantt_add=this.bind(function(t,e,n){if(!this.config.readonly){var a={};return this.createTask(a,e?e:this.config.root_id),!1}},this),this._init_resize&&this._init_resize()},gantt._render_grid=function(){this._calc_grid_width(),this._is_grid_visible()&&this._render_grid_header();
|
||||
},gantt._calc_grid_width=function(){for(var t=this.getGridColumns(),e=0,n=[],a=[],i=0;i<t.length;i++){var s=parseInt(t[i].width,10);window.isNaN(s)&&(s=50,n.push(i)),a[i]=s,e+=s}if(this.config.autofit||n.length){var r=this._get_grid_width()-e;r/(n.length>0?n.length:a.length>0?a.length:1);if(n.length>0)for(var o=r/(n.length?n.length:1),i=0;i<n.length;i++){var _=n[i];a[_]+=o}else for(var o=r/(a.length?a.length:1),i=0;i<a.length;i++)a[i]+=o;for(var i=0;i<a.length;i++)t[i].width=a[i]}else this.config.grid_width=e;
|
||||
},gantt._render_grid_header=function(){for(var t=this.getGridColumns(),e=[],n=0,a=this.locale.labels,i=this.config.scale_height-2,s=0;s<t.length;s++){var r=s==t.length-1,o=t[s];o.name||(o.name=gantt.uid()+"");var _=1*o.width;r&&this._get_grid_width()>n+_&&(o.width=_=this._get_grid_width()-n),n+=_;var l=this._sort&&o.name==this._sort.name?"<div class='gantt_sort gantt_"+this._sort.direction+"'></div>":"",d=["gantt_grid_head_cell","gantt_grid_head_"+o.name,r?"gantt_last_cell":"",this.templates.grid_header_class(o.name,o)].join(" "),g="width:"+(_-(r?1:0))+"px;",h=o.label||a["column_"+o.name];
|
||||
h=h||"";var c=this._waiAria.gridScaleCellAttrString(o,h),u="<div class='"+d+"' style='"+g+"' "+c+" column_id='"+o.name+"'>"+h+l+"</div>";e.push(u)}this.$grid_scale.style.height=this.config.scale_height-1+"px",this.$grid_scale.style.lineHeight=i+"px",this.$grid_scale.style.width=n-1+"px",this.$grid_scale.innerHTML=e.join("")},gantt._render_grid_item=function(t){if(!gantt._is_grid_visible())return null;for(var e,n=this.getGridColumns(),a=[],i=0;i<n.length;i++){var s,r,o,_=i==n.length-1,l=n[i];if("add"==l.name){
|
||||
var d=this._waiAria.gridAddButtonAttrString(l);r="<div "+d+" class='gantt_add'></div>",o=""}else r=l.template?l.template(t):t[l.name],r instanceof Date&&(r=this.templates.date_grid(r,t)),o=r,r="<div class='gantt_tree_content'>"+r+"</div>";var g="gantt_cell"+(_?" gantt_last_cell":""),h="";if(l.tree){for(var c=0;c<t.$level;c++)h+=this.templates.grid_indent(t);e=this._has_children(t.id),e?(h+=this.templates.grid_open(t),h+=this.templates.grid_folder(t)):(h+=this.templates.grid_blank(t),h+=this.templates.grid_file(t));
|
||||
}var u="width:"+(l.width-(_?1:0))+"px;";this.defined(l.align)&&(u+="text-align:"+l.align+";");var d=this._waiAria.gridCellAttrString(l,o);s="<div class='"+g+"' style='"+u+"' "+d+">"+h+r+"</div>",a.push(s)}var g=gantt.getGlobalTaskIndex(t.id)%2===0?"":" odd";if(g+=t.$transparent?" gantt_transparent":"",g+=t.$dataprocessor_class?" "+t.$dataprocessor_class:"",this.templates.grid_row_class){var f=this.templates.grid_row_class.call(this,t.start_date,t.end_date,t);f&&(g+=" "+f)}this.getState().selected_task==t.id&&(g+=" gantt_selected");
|
||||
var p=document.createElement("div");return p.className="gantt_row"+g,p.style.height=this.config.row_height+"px",p.style.lineHeight=gantt.config.row_height+"px",p.setAttribute(this.config.task_attribute,t.id),this._waiAria.taskRowAttr(t,p),p.innerHTML=a.join(""),p},gantt.open=function(t){gantt._set_item_state(t,!0),this.callEvent("onTaskOpened",[t])},gantt.close=function(t){gantt._set_item_state(t,!1),this.callEvent("onTaskClosed",[t])},gantt._set_item_state=function(t,e){t&&this._pull[t]&&(this._pull[t].$open=e,
|
||||
gantt._refresh_on_toggle_element(t))},gantt._refresh_on_toggle_element=function(t){this.refreshData()},gantt._is_grid_visible=function(){return this.config.grid_width&&this.config.show_grid},gantt._get_grid_width=function(){return this._is_grid_visible()?this._is_chart_visible()?this.config.grid_width:this._x:0},gantt.moveTask=function(t,e,n){var a=arguments[3];if(a){if(a===t)return;n=this.getParent(a),e=this.getTaskIndex(a)}if(t!=n){n=n||this.config.root_id;var i=this.getTask(t),s=this.getParent(i.id),r=(this.getChildren(this.getParent(i.id)),
|
||||
this.getChildren(n));if(-1==e&&(e=r.length+1),s==n){var o=this.getTaskIndex(t);if(o==e)return}if(this.callEvent("onBeforeTaskMove",[t,n,e])!==!1){this._replace_branch_child(s,t),r=this.getChildren(n);var _=r[e];_?r=r.slice(0,e).concat([t]).concat(r.slice(e)):r.push(t),this.setParent(i,n),this._branches[n]=r;var l=this.calculateTaskLevel(i)-i.$level;i.$level+=l;for(var d=this._getTaskTree(t),g=0;g<d.length;g++){var h=this._pull[d[g]];h.$level+=l}1*e>0?a?i.$drop_target=(this.getTaskIndex(t)>this.getTaskIndex(a)?"next:":"")+a:i.$drop_target="next:"+gantt.getPrevSibling(t):r[1*e+1]?i.$drop_target=r[1*e+1]:i.$drop_target=n,
|
||||
this.callEvent("onAfterTaskMove",[t,n,e])!==!1&&this.refreshData()}}},gantt._init_dnd=function(){var t=new gantt._DnD(this.$grid_data,{updates_per_second:60});this.defined(this.config.dnd_sensitivity)&&(t.config.sensitivity=this.config.dnd_sensitivity),t.attachEvent("onBeforeDragStart",this.bind(function(e,n){var a=this._locateHTML(n);if(!a)return!1;this.hideQuickInfo&&this._hideQuickInfo();var i=this.locate(n),s=gantt.getTask(i);return gantt._is_readonly(s)?!1:(t.config.initial_open_state=s.$open,
|
||||
this.callEvent("onRowDragStart",[i,n.target||n.srcElement,n])?void 0:!1)},this)),t.attachEvent("onAfterDragStart",this.bind(function(e,n){var a=this._locateHTML(n);t.config.marker.innerHTML=a.outerHTML,t.config.id=this.locate(n);var i=this.getTask(t.config.id);t.config.index=this.getTaskIndex(t.config.id),t.config.parent=i.parent,i.$open=!1,i.$transparent=!0,this.refreshData()},this)),t.lastTaskOfLevel=function(t){for(var e=gantt._order,n=gantt._pull,a=null,i=0,s=e.length;s>i;i++)n[e[i]].$level==t&&(a=n[e[i]]);
|
||||
return a?a.id:null},t._getGridPos=this.bind(function(t){var e=this._get_position(this.$grid_data),n=e.x,a=t.pos.y-10;a<e.y&&(a=e.y);var i=gantt.getTaskCount()*gantt.config.row_height;return a>e.y+i-this.config.row_height&&(a=e.y+i-this.config.row_height),e.x=n,e.y=a,e},this),t._getTargetY=this.bind(function(t){var e=this._get_position(this.$grid_data),n=t.pageY-e.y+gantt.getScrollState().y;return 0>n&&(n=0),n},this),t._getTaskByY=this.bind(function(t,e){t=t||0,gantt.config.smart_rendering&&(t+=this.$grid_data.scrollTop);
|
||||
var n=Math.floor(t/this.config.row_height);return n=n>e?n-1:n,n>this._order.length-1?null:this._order[n]},this),t.attachEvent("onDragMove",this.bind(function(e,n){function a(t,e){return!gantt.isChildOf(l.id,e.id)&&(t.$level==e.$level||gantt.config.order_branch_free)}var i=t.config,s=t._getGridPos(n);i.marker.style.left=s.x+10+"px",i.marker.style.top=s.y+"px";var r=this.getTask(t.config.id),o=t._getTargetY(n),_=t._getTaskByY(o,gantt.getGlobalTaskIndex(r.id));if(this.isTaskExists(_)||(_=t.lastTaskOfLevel(gantt.config.order_branch_free?r.$level:0),
|
||||
_==t.config.id&&(_=null)),this.isTaskExists(_)){var l=this.getTask(_);if(gantt.getGlobalTaskIndex(l.id)*this.config.row_height+this.config.row_height/2<o){var d=this.getGlobalTaskIndex(l.id),g=this._pull[this._order[d+1]];if(g){if(g.id==r.id)return this.config.order_branch_free&&this.isChildOf(r.id,l.id)&&1==this.getChildren(l.id).length?void this.moveTask(r.id,this.getTaskIndex(l.id)+1,this.getParent(l.id)):void 0;l=g}else if(g=this._pull[this._order[d]],a(g,r)&&g.id!=r.id)return void this.moveTask(r.id,-1,this.getParent(g.id));
|
||||
}else if(this.config.order_branch_free&&l.id!=r.id&&a(l,r)){if(!this.hasChild(l.id))return l.$open=!0,void this.moveTask(r.id,-1,l.id);if(this.getGlobalTaskIndex(l.id)||this.config.row_height/3<o)return}for(var d=this.getGlobalTaskIndex(l.id),h=this._pull[this._order[d-1]],c=1;(!h||h.id==l.id)&&d-c>=0;)h=this._pull[this._order[d-c]],c++;if(r.id==l.id)return;a(l,r)&&r.id!=l.id?this.moveTask(r.id,0,0,l.id):l.$level!=r.$level-1||gantt.getChildren(l.id).length?h&&a(h,r)&&r.id!=h.id&&this.moveTask(r.id,-1,this.getParent(h.id)):this.moveTask(r.id,0,l.id);
|
||||
}return!0},this)),t.attachEvent("onDragEnd",this.bind(function(){var e=this.getTask(t.config.id);e.$transparent=!1,e.$open=t.config.initial_open_state,this.callEvent("onBeforeRowDragEnd",[t.config.id,t.config.parent,t.config.index])===!1?(this.moveTask(t.config.id,t.config.index,t.config.parent),e.$drop_target=null):this.callEvent("onRowDragEnd",[t.config.id,e.$drop_target]),this.refreshData()},this))},gantt.getGridColumns=function(){return this.config.columns},gantt._has_children=function(t){return this.getChildren(t).length>0;
|
||||
},function(){function t(t){o&&clearInterval(o);var n={x:t.clientX,y:t.clientY};o=setInterval(function(){e(n)},r)}function e(t){if(!gantt.getState().drag_mode&&!document.querySelector(".gantt_drag_marker"))return clearInterval(o),void(_=null);var e=gantt._get_position(gantt.$task),r=t.x-e.x,l=t.y-e.y,d=n(r,e.width,_?_.x:0,i),g=n(l,e.height,_?_.y:0,i);!g&&!d||_||(_={x:r,y:l},d=0,g=0),d*=gantt.config.scroll_speed||s,g*=gantt.config.scroll_speed||s,d&&g&&(Math.abs(d/5)>Math.abs(g)?g=0:Math.abs(g/5)>Math.abs(d)&&(d=0)),
|
||||
d||g?(_.started=!0,a(d,g)):clearInterval(o)}function n(t,e,n,a){return a>t&&(!_||_.started||n>t)?-1:a>e-t&&(!_||_.started||t>n)?1:0}function a(t,e){var n=gantt.getScrollState(),a=null,i=null;t&&(a=n.x+t),e&&(i=n.y+e),gantt.scrollTo(a,i)}var i=50,s=30,r=50,o=null,_=null;gantt.attachEvent("onGanttReady",function(){gantt.eventRemove(document.body,"mousemove",t),gantt.event(document.body,"mousemove",t)})}(),gantt._wbs={_needRecalc:!0,reset:function(){this._needRecalc=!0},_isRecalcNeeded:function(){return!this._isGroupSort()&&this._needRecalc;
|
||||
},_isGroupSort:function(){return!(!gantt._groups||!gantt._groups.is_active())},_getWBSCode:function(t){return t?(this._isRecalcNeeded()&&this._calcWBS(),t.$virtual?"":this._isGroupSort()?t.$wbs||"":(t.$wbs||(this.reset(),this._calcWBS()),t.$wbs)):""},_setWBSCode:function(t,e){t.$wbs=e},getWBSCode:function(t){return this._getWBSCode(t)},_calcWBS:function(){if(this._isRecalcNeeded()){var t=!0;gantt.eachTask(function(e){if(t)return t=!1,void this._setWBSCode(e,"1");var n=gantt.getPrevSibling(e.id);if(null!==n){
|
||||
var a=gantt.getTask(n).$wbs;a&&(a=a.split("."),a[a.length-1]++,this._setWBSCode(e,a.join(".")))}else{var i=gantt.getParent(e.id);this._setWBSCode(e,gantt.getTask(i).$wbs+".1")}},gantt.config.root_id,this),this._needRecalc=!1}}},gantt.getWBSCode=function(t){return gantt._wbs.getWBSCode(t)},gantt.attachEvent("onAfterTaskMove",function(){return gantt._wbs.reset(),!0}),gantt.attachEvent("onBeforeParse",function(){return gantt._wbs.reset(),!0}),gantt.attachEvent("onAfterTaskDelete",function(){return gantt._wbs.reset(),
|
||||
!0}),gantt.attachEvent("onAfterTaskAdd",function(){return gantt._wbs.reset(),!0}),function(){var t=gantt._has_children;gantt._has_children=function(e){return t.apply(this,arguments)?!0:this.isTaskExists(e)?this.getTask(e).$has_child:!1}}(),gantt._need_dynamic_loading=function(t){if(gantt.config.branch_loading&&gantt._load_url){var e=gantt.getUserData(t,"was_rendered");if(!e&&gantt._has_children(t)&&!gantt.hasChild(t))return!0}return!1},gantt._refresh_on_toggle_element=function(t){gantt._need_dynamic_loading(t)&&gantt.getTask(t).$open||this.refreshData();
|
||||
},gantt.attachEvent("onTaskOpened",function(t){if(gantt.config.branch_loading&&gantt._load_url&&gantt._need_dynamic_loading(t)){var e=gantt._load_url;e=e.replace(/(\?|&)?parent_id=.+&?/,"");var n=e.indexOf("?")>=0?"&":"?",a=0;this._cached_scroll_pos&&this._cached_scroll_pos.y&&(a=Math.max(this._cached_scroll_pos.y,0)),gantt.load(e+n+"parent_id="+encodeURIComponent(t),this._load_type,function(){a&&gantt.scrollTo(null,a)}),gantt.setUserData(t,"was_rendered",!0)}}),gantt.getGridColumns=function(){for(var t=gantt.config.columns,e=[],n=0;n<t.length;n++)t[n].hide||e.push(t[n]);
|
||||
return e},gantt.getGridColumn=function(t){for(var e=gantt.config.columns,n=0;n<e.length;n++)if(e[n].name==t)return e[n];return null},function(){function t(t){return(t+"").replace(a," ").replace(i," ")}function e(t){return(t+"").replace(s,"'")}function n(){return!gantt.config.wai_aria_attributes}var a=new RegExp("<(?:.|\n)*?>","gm"),i=new RegExp(" +","gm"),s=new RegExp("'","gm");gantt._waiAria={getAttributeString:function(n){var a=[" "];for(var i in n){var s=e(t(n[i]));a.push(i+"='"+s+"'")}return a.push(" "),
|
||||
a.join(" ")},getTimelineCellAttr:function(t){return gantt._waiAria.getAttributeString({"aria-label":t})},_taskCommonAttr:function(e,n){n.setAttribute("aria-label",t(gantt.templates.tooltip_text(e.start_date,e.end_date,e))),gantt._is_readonly(e)&&n.setAttribute("aria-readonly",!0),e.$dataprocessor_class&&n.setAttribute("aria-busy",!0),n.setAttribute("aria-selected",gantt.getState().selected_task==e.id||gantt.isSelectedTask&&gantt.isSelectedTask(e.id)?"true":"false")},setTaskBarAttr:function(t,e){this._taskCommonAttr(t,e),
|
||||
!gantt._is_readonly(t)&&gantt.config.drag_move&&(t.id!=gantt.getState().drag_id?e.setAttribute("aria-grabbed",!1):e.setAttribute("aria-grabbed",!0))},taskRowAttr:function(t,e){this._taskCommonAttr(t,e),!gantt._is_readonly(t)&&gantt.config.order_branch&&e.setAttribute("aria-grabbed",!1),e.setAttribute("role","row"),e.setAttribute("aria-level",t.$level),gantt._has_children(t.id)&&e.setAttribute("aria-expanded",t.$open?"true":"false")},linkAttr:function(e,n){var a=gantt.config.links,i=e.type==a.finish_to_start||e.type==a.start_to_start,s=e.type==a.start_to_start||e.type==a.start_to_finish,r=gantt.locale.labels.link+" "+gantt.templates.drag_link(e.source,s,e.target,i);
|
||||
n.setAttribute("aria-label",t(r)),gantt._is_readonly(e)&&n.setAttribute("aria-readonly",!0)},gridSeparatorAttr:function(t){t.setAttribute("role","separator")},lightboxHiddenAttr:function(t){t.setAttribute("aria-hidden","true")},lightboxVisibleAttr:function(t){t.setAttribute("aria-hidden","false")},lightboxAttr:function(t){t.setAttribute("role","dialog"),t.setAttribute("aria-hidden","true"),t.firstChild.setAttribute("role","heading")},lightboxButtonAttrString:function(t){return this.getAttributeString({
|
||||
role:"button","aria-label":gantt.locale.labels[t],tabindex:"0"})},lightboxHeader:function(t,e){t.setAttribute("aria-label",e)},lightboxSelectAttrString:function(t){var e="";switch(t){case"%Y":e=gantt.locale.labels.years;break;case"%m":e=gantt.locale.labels.months;break;case"%d":e=gantt.locale.labels.days;break;case"%H:%i":e=gantt.locale.labels.hours+gantt.locale.labels.minutes}return gantt._waiAria.getAttributeString({"aria-label":e})},lightboxDurationInputAttrString:function(t){return this.getAttributeString({
|
||||
"aria-label":gantt.locale.labels.column_duration,"aria-valuemin":"0"})},gridAttrString:function(){return[" role='treegrid'",gantt.config.multiselect?"aria-multiselectable='true'":"aria-multiselectable='false'"," "].join(" ")},gridScaleRowAttrString:function(){return"role='row'"},gridScaleCellAttrString:function(t,e){var n="";if("add"==t.name)n=this.getAttributeString({role:"button","aria-label":gantt.locale.labels.new_task});else{var a={role:"columnheader","aria-label":e};gantt._sort&&gantt._sort.name==t.name&&("asc"==gantt._sort.direction?a["aria-sort"]="ascending":a["aria-sort"]="descending"),
|
||||
n=this.getAttributeString(a)}return n},gridDataAttrString:function(){return"role='rowgroup'"},gridCellAttrString:function(t,e){return this.getAttributeString({role:"gridcell","aria-label":e})},gridAddButtonAttrString:function(t){return this.getAttributeString({role:"button","aria-label":gantt.locale.labels.new_task})},messageButtonAttrString:function(t){return"tabindex='0' role='button' aria-label='"+t+"'"},messageInfoAttr:function(t){t.setAttribute("role","alert")},messageModalAttr:function(t,e){
|
||||
t.setAttribute("role","dialog"),e&&t.setAttribute("aria-labelledby",e)},quickInfoAttr:function(t){t.setAttribute("role","dialog")},quickInfoHeaderAttrString:function(){return" role='heading' "},quickInfoHeader:function(t,e){t.setAttribute("aria-label",e)},quickInfoButtonAttrString:function(t){return gantt._waiAria.getAttributeString({role:"button","aria-label":t,tabindex:"0"})},tooltipAttr:function(t){t.setAttribute("role","tooltip")},tooltipVisibleAttr:function(t){t.setAttribute("aria-hidden","false");
|
||||
},tooltipHiddenAttr:function(t){t.setAttribute("aria-hidden","true")}};for(var r in gantt._waiAria)gantt._waiAria[r]=function(t){return function(){return n()?"":t.apply(this,arguments)}}(gantt._waiAria[r])}(),gantt._scale_helpers={getSum:function(t,e,n){void 0===n&&(n=t.length-1),void 0===e&&(e=0);for(var a=0,i=e;n>=i;i++)a+=t[i];return a},setSumWidth:function(t,e,n,a){var i=e.width;void 0===a&&(a=i.length-1),void 0===n&&(n=0);var s=a-n+1;if(!(n>i.length-1||0>=s||a>i.length-1)){var r=this.getSum(i,n,a),o=t-r;
|
||||
this.adjustSize(o,i,n,a),this.adjustSize(-o,i,a+1),e.full_width=this.getSum(i)}},splitSize:function(t,e){for(var n=[],a=0;e>a;a++)n[a]=0;return this.adjustSize(t,n),n},adjustSize:function(t,e,n,a){n||(n=0),void 0===a&&(a=e.length-1);for(var i=a-n+1,s=this.getSum(e,n,a),r=0,o=n;a>=o;o++){var _=Math.floor(t*(s?e[o]/s:1/i));s-=e[o],t-=_,i--,e[o]+=_,r+=_}e[e.length-1]+=t},sortScales:function(t){function e(t,e){var n=new Date(1970,0,1);return gantt.date.add(n,e,t)-n}t.sort(function(t,n){return e(t.unit,t.step)<e(n.unit,n.step)?1:e(t.unit,t.step)>e(n.unit,n.step)?-1:0;
|
||||
});for(var n=0;n<t.length;n++)t[n].index=n},primaryScale:function(){return gantt._init_template("date_scale"),{unit:gantt.config.scale_unit,step:gantt.config.step,template:gantt.templates.date_scale,date:gantt.config.date_scale,css:gantt.templates.scale_cell_class}},prepareConfigs:function(t,e,n,a){for(var i=this.splitSize(a,t.length),s=n,r=[],o=t.length-1;o>=0;o--){var _=o==t.length-1,l=this.initScaleConfig(t[o]);_&&this.processIgnores(l),this.initColSizes(l,e,s,i[o]),this.limitVisibleRange(l),_&&(s=l.full_width),
|
||||
r.unshift(l)}for(var o=0;o<r.length-1;o++)this.alineScaleColumns(r[r.length-1],r[o]);for(var o=0;o<r.length;o++)this.setPosSettings(r[o]);return r},setPosSettings:function(t){for(var e=0,n=t.trace_x.length;n>e;e++)t.left.push((t.width[e-1]||0)+(t.left[e-1]||0))},_ignore_time_config:function(t,e){if(this.config.skip_off_time){for(var n=!0,a=t,i=0;i<e.step;i++)i&&(a=gantt.date.add(t,i,e.unit)),n=n&&!this.isWorkTime(a,e.unit);return n}return!1},processIgnores:function(t){t.ignore_x={},t.display_count=t.count;
|
||||
},initColSizes:function(t,e,n,a){var i=n;t.height=a;var s=void 0===t.display_count?t.count:t.display_count;s||(s=1),t.col_width=Math.floor(i/s),e&&t.col_width<e&&(t.col_width=e,i=t.col_width*s),t.width=[];for(var r=t.ignore_x||{},o=0;o<t.trace_x.length;o++)if(r[t.trace_x[o].valueOf()]||t.display_count==t.count)t.width[o]=0;else{var _=1;if("month"==t.unit){var l=Math.round((gantt.date.add(t.trace_x[o],t.step,t.unit)-t.trace_x[o])/864e5);_=l}t.width[o]=_}this.adjustSize(i-this.getSum(t.width),t.width),
|
||||
t.full_width=this.getSum(t.width)},initScaleConfig:function(t){var e=gantt.mixin({count:0,col_width:0,full_width:0,height:0,width:[],left:[],trace_x:[],trace_indexes:{}},t);return this.eachColumn(t.unit,t.step,function(t){e.count++,e.trace_x.push(new Date(t)),e.trace_indexes[t.valueOf()]=e.trace_x.length-1}),e},iterateScales:function(t,e,n,a,i){for(var s=e.trace_x,r=t.trace_x,o=n||0,_=a||r.length-1,l=0,d=1;d<s.length;d++){var g=t.trace_indexes[+s[d]];void 0!==g&&_>=g&&(i&&i.apply(this,[l,d,o,g]),
|
||||
o=g,l=d)}},alineScaleColumns:function(t,e,n,a){this.iterateScales(t,e,n,a,function(n,a,i,s){var r=this.getSum(t.width,i,s-1),o=this.getSum(e.width,n,a-1);o!=r&&this.setSumWidth(r,e,n,a-1)})},eachColumn:function(t,e,n){var a=new Date(gantt._min_date),i=new Date(gantt._max_date);gantt.date[t+"_start"]&&(a=gantt.date[t+"_start"](a));var s=new Date(a);for(+s>=+i&&(i=gantt.date.add(s,e,t));+i>+s;){n.call(this,new Date(s));var r=s.getTimezoneOffset();s=gantt.date.add(s,e,t),s=gantt._correct_dst_change(s,r,e,t),
|
||||
gantt.date[t+"_start"]&&(s=gantt.date[t+"_start"](s))}},limitVisibleRange:function(t){var e=t.trace_x,n=0,a=t.width.length-1,i=0;if(+e[0]<+gantt._min_date&&n!=a){var s=Math.floor(t.width[0]*((e[1]-gantt._min_date)/(e[1]-e[0])));i+=t.width[0]-s,t.width[0]=s,e[0]=new Date(gantt._min_date)}var r=e.length-1,o=e[r],_=gantt.date.add(o,t.step,t.unit);if(+_>+gantt._max_date&&r>0){var s=t.width[r]-Math.floor(t.width[r]*((_-gantt._max_date)/(_-o)));i+=t.width[r]-s,t.width[r]=s}if(i){for(var l=this.getSum(t.width),d=0,g=0;g<t.width.length;g++){
|
||||
var h=Math.floor(i*(t.width[g]/l));t.width[g]+=h,d+=h}this.adjustSize(i-d,t.width)}}},gantt._tasks_dnd={drag:null,_events:{before_start:{},before_finish:{},after_finish:{}},_handlers:{},init:function(){this.clear_drag_state();var t=gantt.config.drag_mode;this.set_actions();var e={before_start:"onBeforeTaskDrag",before_finish:"onBeforeTaskChanged",after_finish:"onAfterTaskDrag"};for(var n in this._events)for(var a in t)this._events[n][a]=e[n];this._handlers[t.move]=this._move,this._handlers[t.resize]=this._resize,
|
||||
this._handlers[t.progress]=this._resize_progress},set_actions:function(){var t=gantt.$task_data;gantt.event(t,"mousemove",gantt.bind(function(t){this.on_mouse_move(t||event)},this)),gantt.event(t,"mousedown",gantt.bind(function(t){this.on_mouse_down(t||event)},this)),gantt.event(t,"mouseup",gantt.bind(function(t){this.on_mouse_up(t||event)},this))},clear_drag_state:function(){this.drag={id:null,mode:null,pos:null,start_x:null,start_y:null,obj:null,left:null}},_resize:function(t,e,n){var a=gantt.config,i=this._drag_task_coords(t,n);
|
||||
n.left?(t.start_date=gantt.dateFromPos(i.start+e),t.start_date||(t.start_date=new Date(gantt.getState().min_date))):(t.end_date=gantt.dateFromPos(i.end+e),t.end_date||(t.end_date=new Date(gantt.getState().max_date))),t.end_date-t.start_date<a.min_duration&&(n.left?t.start_date=gantt.calculateEndDate({start_date:t.end_date,duration:-1,task:t}):t.end_date=gantt.calculateEndDate({start_date:t.start_date,duration:1,task:t})),gantt._init_task_timing(t)},_resize_progress:function(t,e,n){var a=this._drag_task_coords(t,n),i=Math.max(0,n.pos.x-a.start);
|
||||
t.progress=Math.min(1,i/(a.end-a.start))},_move:function(t,e,n){var a=this._drag_task_coords(t,n),i=gantt.dateFromPos(a.start+e),s=gantt.dateFromPos(a.end+e);i?s?(t.start_date=i,t.end_date=s):(t.end_date=new Date(gantt.getState().max_date),t.start_date=gantt.dateFromPos(gantt.posFromDate(t.end_date)-(a.end-a.start))):(t.start_date=new Date(gantt.getState().min_date),t.end_date=gantt.dateFromPos(gantt.posFromDate(t.start_date)+(a.end-a.start)))},_drag_task_coords:function(t,e){var n=e.obj_s_x=e.obj_s_x||gantt.posFromDate(t.start_date),a=e.obj_e_x=e.obj_e_x||gantt.posFromDate(t.end_date);
|
||||
return{start:n,end:a}},_mouse_position_change:function(t,e){var n=t.x-e.x,a=t.y-e.y;return Math.sqrt(n*n+a*a)},_is_number:function(t){return!isNaN(parseFloat(t))&&isFinite(t)},on_mouse_move:function(t){if(this.drag.start_drag){var e=gantt._get_mouse_pos(t),n=this.drag.start_drag.start_x,a=this.drag.start_drag.start_y;(Date.now()-this.drag.timestamp>50||this._is_number(n)&&this._is_number(a)&&this._mouse_position_change({x:n,y:a},e)>20)&&this._start_dnd(t)}var i=this.drag;if(i.mode){if(!gantt._checkTimeout(this,40))return;
|
||||
this._update_on_move(t)}},_update_on_move:function(t){var e=this.drag;if(e.mode){var n=gantt._get_mouse_pos(t);if(e.pos&&e.pos.x==n.x)return;e.pos=n;var a=gantt.dateFromPos(n.x);if(!a||isNaN(a.getTime()))return;var i=n.x-e.start_x,s=gantt.getTask(e.id);if(this._handlers[e.mode]){var r=gantt.mixin({},s),o=gantt.mixin({},s);this._handlers[e.mode].apply(this,[o,i,e]),gantt.mixin(s,o,!0),gantt.callEvent("onTaskDrag",[s.id,e.mode,o,r,t]),gantt.mixin(s,o,!0),gantt._update_parents(e.id),gantt.refreshTask(e.id);
|
||||
}}},on_mouse_down:function(t,e){if(2!=t.button){var n=gantt.locate(t),a=null;if(gantt.isTaskExists(n)&&(a=gantt.getTask(n)),!gantt._is_readonly(a)&&!this.drag.mode){this.clear_drag_state(),e=e||t.target||t.srcElement;var i=gantt._getClassName(e);if(!i||!this._get_drag_mode(i))return e.parentNode?this.on_mouse_down(t,e.parentNode):void 0;var s=this._get_drag_mode(i);if(s)if(s.mode&&s.mode!=gantt.config.drag_mode.ignore&&gantt.config["drag_"+s.mode]){if(n=gantt.locate(e),a=gantt.copy(gantt.getTask(n)||{}),
|
||||
gantt._is_readonly(a))return this.clear_drag_state(),!1;if(gantt._is_flex_task(a)&&s.mode!=gantt.config.drag_mode.progress)return void this.clear_drag_state();s.id=n;var r=gantt._get_mouse_pos(t);s.start_x=r.x,s.start_y=r.y,s.obj=a,this.drag.start_drag=s,this.drag.timestamp=Date.now()}else this.clear_drag_state();else if(gantt.checkEvent("onMouseDown")&&gantt.callEvent("onMouseDown",[i.split(" ")[0]])&&e.parentNode)return this.on_mouse_down(t,e.parentNode)}}},_fix_dnd_scale_time:function(t,e){function n(t){
|
||||
gantt.isWorkTime(t.start_date,void 0,t)||(t.start_date=gantt.calculateEndDate({start_date:t.start_date,duration:-1,unit:gantt.config.duration_unit,task:t}))}function a(t){gantt.isWorkTime(new Date(t.end_date-1),void 0,t)||(t.end_date=gantt.calculateEndDate({start_date:t.end_date,duration:1,unit:gantt.config.duration_unit,task:t}))}var i=gantt._tasks.unit,s=gantt._tasks.step;gantt.config.round_dnd_dates||(i="minute",s=gantt.config.time_step),e.mode==gantt.config.drag_mode.resize?e.left?(t.start_date=gantt.roundDate({
|
||||
date:t.start_date,unit:i,step:s}),n(t)):(t.end_date=gantt.roundDate({date:t.end_date,unit:i,step:s}),a(t)):e.mode==gantt.config.drag_mode.move&&(t.start_date=gantt.roundDate({date:t.start_date,unit:i,step:s}),n(t),t.end_date=gantt.calculateEndDate(t))},_fix_working_times:function(t,e){var e=e||{mode:gantt.config.drag_mode.move};gantt.config.work_time&&gantt.config.correct_work_time&&(e.mode==gantt.config.drag_mode.resize?e.left?t.start_date=gantt.getClosestWorkTime({date:t.start_date,dir:"future",
|
||||
task:t}):t.end_date=gantt.getClosestWorkTime({date:t.end_date,dir:"past",task:t}):e.mode==gantt.config.drag_mode.move&&gantt.correctTaskWorkTime(t))},on_mouse_up:function(t){var e=this.drag;if(e.mode&&e.id){var n=gantt.getTask(e.id);if(gantt.config.work_time&&gantt.config.correct_work_time&&this._fix_working_times(n,e),this._fix_dnd_scale_time(n,e),gantt._init_task_timing(n),this._fireEvent("before_finish",e.mode,[e.id,e.mode,gantt.copy(e.obj),t])){var a=e.id;gantt._init_task_timing(n),this.clear_drag_state(),
|
||||
gantt.updateTask(n.id),this._fireEvent("after_finish",e.mode,[a,e.mode,t])}else e.obj._dhx_changed=!1,gantt.mixin(n,e.obj,!0),gantt.updateTask(n.id)}this.clear_drag_state()},_get_drag_mode:function(t){var e=gantt.config.drag_mode,n=(t||"").split(" "),a=n[0],i={mode:null,left:null};switch(a){case"gantt_task_line":case"gantt_task_content":i.mode=e.move;break;case"gantt_task_drag":i.mode=e.resize,n[1]&&-1!==n[1].indexOf("left",n[1].length-"left".length)?i.left=!0:i.left=!1;break;case"gantt_task_progress_drag":
|
||||
i.mode=e.progress;break;case"gantt_link_control":case"gantt_link_point":i.mode=e.ignore;break;default:i=null}return i},_start_dnd:function(t){var e=this.drag=this.drag.start_drag;delete e.start_drag;var n=gantt.config,a=e.id;n["drag_"+e.mode]&&gantt.callEvent("onBeforeDrag",[a,e.mode,t])&&this._fireEvent("before_start",e.mode,[a,e.mode,t])?(delete e.start_drag,gantt.callEvent("onTaskDragStart",[])):this.clear_drag_state()},_fireEvent:function(t,e,n){gantt.assert(this._events[t],"Invalid stage:{"+t+"}");
|
||||
var a=this._events[t][e];return gantt.assert(a,"Unknown after drop mode:{"+e+"}"),gantt.assert(n,"Invalid event arguments"),gantt.checkEvent(a)?gantt.callEvent(a,n):!0}},gantt.roundTaskDates=function(t){var e=gantt._tasks_dnd.drag;e||(e={mode:gantt.config.drag_mode.move}),gantt._tasks_dnd._fix_dnd_scale_time(t,e)},gantt._render_link=function(t){for(var e=this.getLink(t),n=gantt._get_link_renderers(),a=0;a<n.length;a++)n[a].render_item(e)},gantt._get_link_type=function(t,e){var n=null;return t&&e?n=gantt.config.links.start_to_start:!t&&e?n=gantt.config.links.finish_to_start:t||e?t&&!e&&(n=gantt.config.links.start_to_finish):n=gantt.config.links.finish_to_finish,
|
||||
n},gantt.isLinkAllowed=function(t,e,n,a){var i=null;if(i="object"==typeof t?t:{source:t,target:e,type:this._get_link_type(n,a)},!i)return!1;if(!(i.source&&i.target&&i.type))return!1;if(i.source==i.target)return!1;var s=!0;return this.checkEvent("onLinkValidation")&&(s=this.callEvent("onLinkValidation",[i])),s},gantt._render_link_element=function(t){var e=this._path_builder.get_points(t),n=gantt._drawer,a=n.get_lines(e),i=document.createElement("div"),s="gantt_task_link";t.color&&(s+=" gantt_link_inline_color");
|
||||
var r=this.templates.link_class?this.templates.link_class(t):"";r&&(s+=" "+r),this.config.highlight_critical_path&&this.isCriticalLink&&this.isCriticalLink(t)&&(s+=" gantt_critical_link"),i.className=s,i.setAttribute(gantt.config.link_attribute,t.id);for(var o=0;o<a.length;o++){o==a.length-1&&(a[o].size-=gantt.config.link_arrow_size);var _=n.render_line(a[o],a[o+1]);t.color&&(_.firstChild.style.backgroundColor=t.color),i.appendChild(_)}var l=a[a.length-1].direction,d=gantt._render_link_arrow(e[e.length-1],l);
|
||||
return t.color&&(d.style.borderColor=t.color),i.appendChild(d),gantt._waiAria.linkAttr(t,i),i},gantt._render_link_arrow=function(t,e){var n=document.createElement("div"),a=gantt._drawer,i=t.y,s=t.x,r=gantt.config.link_arrow_size,o=gantt.config.row_height,_="gantt_link_arrow gantt_link_arrow_"+e;switch(e){case a.dirs.right:i-=(r-o)/2,s-=r;break;case a.dirs.left:i-=(r-o)/2;break;case a.dirs.up:s-=r;break;case a.dirs.down:i+=2*r,s-=r}return n.style.cssText=["top:"+i+"px","left:"+s+"px"].join(";"),n.className=_,
|
||||
n},gantt._drawer={current_pos:null,dirs:{left:"left",right:"right",up:"up",down:"down"},path:[],clear:function(){this.current_pos=null,this.path=[]},point:function(t){this.current_pos=gantt.copy(t)},get_lines:function(t){this.clear(),this.point(t[0]);for(var e=1;e<t.length;e++)this.line_to(t[e]);return this.get_path()},line_to:function(t){var e=gantt.copy(t),n=this.current_pos,a=this._get_line(n,e);this.path.push(a),this.current_pos=e},get_path:function(){return this.path},get_wrapper_sizes:function(t){
|
||||
var e,n=gantt.config.link_wrapper_width,a=(gantt.config.link_line_width,t.y+(gantt.config.row_height-n)/2);switch(t.direction){case this.dirs.left:e={top:a,height:n,lineHeight:n,left:t.x-t.size-n/2,width:t.size+n};break;case this.dirs.right:e={top:a,lineHeight:n,height:n,left:t.x-n/2,width:t.size+n};break;case this.dirs.up:e={top:a-t.size,lineHeight:t.size+n,height:t.size+n,left:t.x-n/2,width:n};break;case this.dirs.down:e={top:a,lineHeight:t.size+n,height:t.size+n,left:t.x-n/2,width:n}}return e},
|
||||
get_line_sizes:function(t){var e,n=gantt.config.link_line_width,a=gantt.config.link_wrapper_width,i=t.size+n;switch(t.direction){case this.dirs.left:case this.dirs.right:e={height:n,width:i,marginTop:(a-n)/2,marginLeft:(a-n)/2};break;case this.dirs.up:case this.dirs.down:e={height:i,width:n,marginTop:(a-n)/2,marginLeft:(a-n)/2}}return e},render_line:function(t){var e=this.get_wrapper_sizes(t),n=document.createElement("div");n.style.cssText=["top:"+e.top+"px","left:"+e.left+"px","height:"+e.height+"px","width:"+e.width+"px"].join(";"),
|
||||
n.className="gantt_line_wrapper";var a=this.get_line_sizes(t),i=document.createElement("div");return i.style.cssText=["height:"+a.height+"px","width:"+a.width+"px","margin-top:"+a.marginTop+"px","margin-left:"+a.marginLeft+"px"].join(";"),i.className="gantt_link_line_"+t.direction,n.appendChild(i),n},_get_line:function(t,e){var n=this.get_direction(t,e),a={x:t.x,y:t.y,direction:this.get_direction(t,e)};return n==this.dirs.left||n==this.dirs.right?a.size=Math.abs(t.x-e.x):a.size=Math.abs(t.y-e.y),
|
||||
a},get_direction:function(t,e){var n=0;return n=e.x<t.x?this.dirs.left:e.x>t.x?this.dirs.right:e.y>t.y?this.dirs.down:this.dirs.up}},gantt._y_from_ind=function(t){return t*gantt.config.row_height},gantt._path_builder={path:[],clear:function(){this.path=[]},current:function(){return this.path[this.path.length-1]},point:function(t){return t?(this.path.push(gantt.copy(t)),t):this.current()},point_to:function(t,e,n){n=n?{x:n.x,y:n.y}:gantt.copy(this.point());var a=gantt._drawer.dirs;switch(t){case a.left:
|
||||
n.x-=e;break;case a.right:n.x+=e;break;case a.up:n.y-=e;break;case a.down:n.y+=e}return this.point(n)},get_points:function(t){var e=this.get_endpoint(t),n=gantt.config,a=e.e_y-e.y,i=e.e_x-e.x,s=gantt._drawer.dirs;this.clear(),this.point({x:e.x,y:e.y});var r=2*n.link_arrow_size,o=e.e_x>e.x;if(t.type==gantt.config.links.start_to_start)this.point_to(s.left,r),o?(this.point_to(s.down,a),this.point_to(s.right,i)):(this.point_to(s.right,i),this.point_to(s.down,a)),this.point_to(s.right,r);else if(t.type==gantt.config.links.finish_to_start)if(o=e.e_x>e.x+2*r,
|
||||
this.point_to(s.right,r),o)i-=r,this.point_to(s.down,a),this.point_to(s.right,i);else{i-=2*r;var _=a>0?1:-1;this.point_to(s.down,_*(n.row_height/2)),this.point_to(s.right,i),this.point_to(s.down,_*(Math.abs(a)-n.row_height/2)),this.point_to(s.right,r)}else if(t.type==gantt.config.links.finish_to_finish)this.point_to(s.right,r),o?(this.point_to(s.right,i),this.point_to(s.down,a)):(this.point_to(s.down,a),this.point_to(s.right,i)),this.point_to(s.left,r);else if(t.type==gantt.config.links.start_to_finish)if(o=e.e_x>e.x-2*r,
|
||||
this.point_to(s.left,r),o){i+=2*r;var _=a>0?1:-1;this.point_to(s.down,_*(n.row_height/2)),this.point_to(s.right,i),this.point_to(s.down,_*(Math.abs(a)-n.row_height/2)),this.point_to(s.left,r)}else i+=r,this.point_to(s.down,a),this.point_to(s.right,i);return this.path},get_endpoint:function(t){var e=gantt.config.links,n=!1,a=!1;t.type==e.start_to_start?n=a=!0:t.type==e.finish_to_finish?n=a=!1:t.type==e.finish_to_start?(n=!1,a=!0):t.type==e.start_to_finish?(n=!0,a=!1):gantt.assert(!1,"Invalid link type");
|
||||
var i=gantt._get_task_visible_pos(gantt._pull[t.source],n),s=gantt._get_task_visible_pos(gantt._pull[t.target],a);return{x:i.x,e_x:s.x,y:i.y,e_y:s.y}}},gantt._init_links_dnd=function(){function t(t,e,n){var a=gantt._get_task_pos(t,!!e);return a.y+=gantt.config.row_height/2,n=n||0,a.x+=(e?-1:1)*n,a}function e(t){var e=a(),n=["gantt_link_tooltip"];e.from&&e.to&&(gantt.isLinkAllowed(e.from,e.to,e.from_start,e.to_start)?n.push("gantt_allowed_link"):n.push("gantt_invalid_link"));var i=gantt.templates.drag_link_class(e.from,e.from_start,e.to,e.to_start);
|
||||
i&&n.push(i);var s="<div class='"+i+"'>"+gantt.templates.drag_link(e.from,e.from_start,e.to,e.to_start)+"</div>";t.innerHTML=s}function n(t,e){t.style.left=e.x+5+"px",t.style.top=e.y+5+"px"}function a(){return{from:gantt._link_source_task,to:gantt._link_target_task,from_start:gantt._link_source_task_start,to_start:gantt._link_target_task_start}}function i(){gantt._link_source_task=gantt._link_source_task_start=gantt._link_target_task=null,gantt._link_target_task_start=!0}function s(t,e,n,i){var s=_(),l=a(),d=["gantt_link_direction"];
|
||||
gantt.templates.link_direction_class&&d.push(gantt.templates.link_direction_class(l.from,l.from_start,l.to,l.to_start));var g=Math.sqrt(Math.pow(n-t,2)+Math.pow(i-e,2));if(g=Math.max(0,g-3)){s.className=d.join(" ");var h=(i-e)/(n-t),c=Math.atan(h);2==o(t,n,e,i)?c+=Math.PI:3==o(t,n,e,i)&&(c-=Math.PI);var u=Math.sin(c),f=Math.cos(c),p=Math.round(e),v=Math.round(t),m=["-webkit-transform: rotate("+c+"rad)","-moz-transform: rotate("+c+"rad)","-ms-transform: rotate("+c+"rad)","-o-transform: rotate("+c+"rad)","transform: rotate("+c+"rad)","width:"+Math.round(g)+"px"];
|
||||
if(-1!=window.navigator.userAgent.indexOf("MSIE 8.0")){m.push('-ms-filter: "'+r(u,f)+'"');var k=Math.abs(Math.round(t-n)),b=Math.abs(Math.round(i-e));switch(o(t,n,e,i)){case 1:p-=b;break;case 2:v-=k,p-=b;break;case 3:v-=k}}m.push("top:"+p+"px"),m.push("left:"+v+"px"),s.style.cssText=m.join(";")}}function r(t,e){return"progid:DXImageTransform.Microsoft.Matrix(M11 = "+e+",M12 = -"+t+",M21 = "+t+",M22 = "+e+",SizingMethod = 'auto expand')"}function o(t,e,n,a){return e>=t?n>=a?1:4:n>=a?2:3}function _(){
|
||||
return d._direction||(d._direction=document.createElement("div"),gantt.$task_links.appendChild(d._direction)),d._direction}function l(){d._direction&&(d._direction.parentNode&&d._direction.parentNode.removeChild(d._direction),d._direction=null)}var d=new gantt._DnD(this.$task_bars,{sensitivity:0,updates_per_second:60}),g="task_left",h="task_right",c="gantt_link_point",u="gantt_link_control";d.attachEvent("onBeforeDragStart",gantt.bind(function(e,n){var a=n.target||n.srcElement;if(i(),gantt.getState().drag_id)return!1;
|
||||
if(gantt._locate_css(a,c)){gantt._locate_css(a,g)&&(gantt._link_source_task_start=!0);var s=gantt._link_source_task=this.locate(n),r=gantt.getTask(s);if(gantt._is_readonly(r))return i(),!1;var o=0;return gantt._get_safe_type(r.type)==gantt.config.types.milestone&&(o=(gantt._get_visible_milestone_width()-gantt._get_milestone_width())/2),this._dir_start=t(r,!!gantt._link_source_task_start,o),!0}return!1},this)),d.attachEvent("onAfterDragStart",gantt.bind(function(t,n){this.config.touch&&(this._show_link_points=!0,
|
||||
this.refreshData()),e(d.config.marker)},this)),d.attachEvent("onDragMove",gantt.bind(function(a,i){var r=d.config,o=d.getPosition(i);n(r.marker,o);var _=gantt._is_link_drop_area(i),l=gantt._link_target_task,g=gantt._link_landing,c=gantt._link_target_task_start,f=gantt.locate(i),p=!0;if(_&&(p=!gantt._locate_css(i,h),_=!!f),gantt._link_target_task=f,gantt._link_landing=_,gantt._link_target_task_start=p,_){var v=gantt.getTask(f),m=gantt._locate_css(i,u),k=0;m&&(k=Math.floor(m.offsetWidth/2)),this._dir_end=t(v,!!gantt._link_target_task_start,k);
|
||||
}else this._dir_end=gantt._get_mouse_pos(i);var b=!(g==_&&l==f&&c==p);return b&&(l&&gantt.refreshTask(l,!1),f&&gantt.refreshTask(f,!1)),b&&e(r.marker),s(this._dir_start.x,this._dir_start.y,this._dir_end.x,this._dir_end.y),!0},this)),d.attachEvent("onDragEnd",gantt.bind(function(){var t=a();if(t.from&&t.to&&t.from!=t.to){var e=gantt._get_link_type(t.from_start,t.to_start),n={source:t.from,target:t.to,type:e};n.type&&gantt.isLinkAllowed(n)&&gantt.addLink(n)}i(),this.config.touch?(this._show_link_points=!1,
|
||||
this.refreshData()):(t.from&&gantt.refreshTask(t.from,!1),t.to&&gantt.refreshTask(t.to,!1)),l()},this)),gantt._is_link_drop_area=function(t){return!!gantt._locate_css(t,u)}},gantt._get_link_state=function(){return{link_landing_area:this._link_landing,link_target_id:this._link_target_task,link_target_start:this._link_target_task_start,link_source_id:this._link_source_task,link_source_start:this._link_source_task_start}},gantt._task_renderer=function(t,e,n,a){return this._task_area_pulls||(this._task_area_pulls={}),
|
||||
this._task_area_renderers||(this._task_area_renderers={}),this._task_area_renderers[t]?this._task_area_renderers[t]:(e||this.assert(!1,"Invalid renderer call"),n&&n.setAttribute(this.config.layer_attribute,!0),this._task_area_renderers[t]={render_item:function(t,i){if(i=i||n,a&&!a(t))return void this.remove_item(t.id);var s=e.call(gantt,t);this.append(t,s,i)},clear:function(e){this.rendered=gantt._task_area_pulls[t]={},this.clear_container(e)},clear_container:function(t){t=t||n,t&&(t.innerHTML="");
|
||||
},render_items:function(t,e){e=e||n;var a=document.createDocumentFragment();this.clear(e);for(var i=0,s=t.length;s>i;i++)this.render_item(t[i],a);e.appendChild(a)},append:function(t,e,n){return e?(this.rendered[t.id]&&this.rendered[t.id].parentNode?this.replace_item(t.id,e):n.appendChild(e),void(this.rendered[t.id]=e)):void(this.rendered[t.id]&&this.remove_item(t.id))},replace_item:function(t,e){var n=this.rendered[t];n&&n.parentNode&&n.parentNode.replaceChild(e,n),this.rendered[t]=e},remove_item:function(t){
|
||||
this.hide(t),delete this.rendered[t]},hide:function(t){var e=this.rendered[t];e&&e.parentNode&&e.parentNode.removeChild(e)},restore:function(t){var e=this.rendered[t.id];e?e.parentNode||this.append(t,e,n):this.render_item(t,n)},change_id:function(t,e){this.rendered[e]=this.rendered[t],delete this.rendered[t]},rendered:this._task_area_pulls[t],node:n,unload:function(){this.clear(),delete gantt._task_area_renderers[t],delete gantt._task_area_pulls[t]}},this._task_area_renderers[t])},gantt._clear_renderers=function(){
|
||||
for(var t in this._task_area_renderers)this._task_renderer(t).unload()},gantt._is_layer=function(t){return t&&t.hasAttribute&&t.hasAttribute(this.config.layer_attribute)},gantt._show_link_points=!1,gantt._init_tasks=function(){function t(t,e,n,a){for(var i=0;i<t.length;i++)t[i].change_id(e,n),t[i].render_item(a)}this._tasks={col_width:this.config.columnWidth,width:[],full_width:0,trace_x:[],rendered:{}},this._click.gantt_task_link=this.bind(function(t,e){var n=this.locate(t,gantt.config.link_attribute);
|
||||
n&&this.callEvent("onLinkClick",[n,t])},this),this._click.gantt_scale_cell=this.bind(function(t,e){var n=gantt._get_mouse_pos(t),a=gantt.dateFromPos(n.x),i=Math.floor(gantt._day_index_by_date(a)),s=gantt._tasks.trace_x[i];gantt.callEvent("onScaleClick",[t,s])},this),this._dbl_click.gantt_task_link=this.bind(function(t,e,n){var e=this.locate(t,gantt.config.link_attribute);this._delete_link_handler(e,t)},this),this._dbl_click.gantt_link_point=this.bind(function(t,e,n){var e=this.locate(t),a=this.getTask(e),i=null;
|
||||
return n.parentNode&&gantt._getClassName(n.parentNode)&&(i=gantt._getClassName(n.parentNode).indexOf("_left")>-1?a.$target[0]:a.$source[0]),i&&this._delete_link_handler(i,t),!1},this),this._tasks_dnd.init(),this._init_links_dnd(),this._link_layers.clear();var e=this.addLinkLayer({renderer:this._render_link_element,container:this.$task_links,filter:gantt._create_filter([gantt._filter_link,gantt._is_chart_visible].concat(this._get_link_filters()))});this._linkRenderer=this._link_layers.getRenderer(e),
|
||||
this._task_layers.clear();var n=this.addTaskLayer({renderer:this._render_task_element,container:this.$task_bars,filter:gantt._create_filter([gantt._filter_task,gantt._is_chart_visible].concat(this._get_task_filters()))});this._taskRenderer=this._task_layers.getRenderer(n),this.addTaskLayer({renderer:this._render_grid_item,container:this.$grid_data,filter:gantt._create_filter([gantt._filter_task,gantt._is_grid_visible].concat(this._get_task_filters()))}),this.addTaskLayer({renderer:this._render_bg_line,
|
||||
container:this.$task_bg,filter:gantt._create_filter([gantt._filter_task,gantt._is_chart_visible,gantt._is_std_background].concat(this._get_task_filters()))}),this._onTaskIdChange&&this.detachEvent(this._onTaskIdChange),this._onTaskIdChange=this.attachEvent("onTaskIdChange",function(e,n){var a=this._get_task_renderers();t(a,e,n,this.getTask(n))}),this._onLinkIdChange&&this.detachEvent(this._onLinkIdChange),this._onLinkIdChange=this.attachEvent("onLinkIdChange",function(e,n){var a=this._get_link_renderers();
|
||||
t(a,e,n,this.getLink(n))})},gantt._get_task_filters=function(){return[]},gantt._get_link_filters=function(){return[]},gantt._is_chart_visible=function(){return!!this.config.show_chart},gantt._filter_task=function(t,e){var n=null,a=null;if(this.config.start_date&&this.config.end_date){if(this._isAllowedUnscheduledTask(e))return!0;if(n=this.config.start_date.valueOf(),a=this.config.end_date.valueOf(),+e.start_date>a||+e.end_date<+n)return!1}return!0},gantt._filter_link=function(t,e){return this.config.show_links?!gantt.isTaskVisible(e.source)||!gantt.isTaskVisible(e.target)||gantt._isAllowedUnscheduledTask(gantt.getTask(e.source))||gantt._isAllowedUnscheduledTask(gantt.getTask(e.target))?!1:this.callEvent("onBeforeLinkDisplay",[t,e]):!1;
|
||||
},gantt._is_std_background=function(){return!this.config.static_background},gantt._delete_link_handler=function(t,e){if(t&&this.callEvent("onLinkDblClick",[t,e])){var n=gantt.getLink(t);if(gantt._is_readonly(n))return;var a="",i=gantt.locale.labels.link+" "+this.templates.link_description(this.getLink(t))+" "+gantt.locale.labels.confirm_link_deleting;window.setTimeout(function(){gantt._dhtmlx_confirm(i,a,function(){gantt.deleteLink(t)})},gantt.config.touch?300:1)}},gantt.getTaskNode=function(t){return this._taskRenderer.rendered[t];
|
||||
},gantt.getLinkNode=function(t){return this._linkRenderer.rendered[t]},gantt._get_tasks_data=function(){for(var t=[],e=this._get_data_range(),n=0;n<e.length;n++){var a=this._pull[e[n]];a.$index=n,this.resetProjectDates(a),t.push(a)}return t},gantt._get_data_range=function(){return this._order},gantt._get_links_data=function(){return this._links.slice()},gantt._render_data=function(){this.callEvent("onBeforeDataRender",[]),this._order_synced?this._order_synced=!1:this._sync_order();for(var t=this._get_tasks_data(),e=this._get_task_renderers(),n=0;n<e.length;n++)e[n].clear();
|
||||
var a=gantt._get_links_data();e=this._get_link_renderers();for(var n=0;n<e.length;n++)e[n].clear();this._update_layout_sizes(),this._scroll_resize();for(var e=this._get_task_renderers(),n=0;n<e.length;n++)e[n].render_items(t);var a=gantt._get_links_data();e=this._get_link_renderers();for(var n=0;n<e.length;n++)e[n].render_items(a);this.callEvent("onDataRender",[])},gantt._update_layout_sizes=function(){var t=this._tasks;t.bar_height=this._get_task_height();var e=Math.max(gantt._y-(gantt._scroll_sizes().x?gantt._scroll_sizes().scroll_size+1:0)-1,0);
|
||||
this.$task_data.style.height=Math.max(e-this.config.scale_height,0)+"px",gantt.config.smart_rendering?this.$task_bg.style.height=gantt.config.row_height*this.getVisibleTaskCount()+"px":this.$task_bg.style.height="",this.$task_bg.style.backgroundImage="";for(var n=this.$task_data.childNodes,a=0,i=n.length;i>a;a++){var s=n[a];this._is_layer(s)&&s.style&&(s.style.width=t.full_width+"px")}if(this._is_grid_visible()){for(var r=this.getGridColumns(),o=0,a=0;a<r.length;a++)o+=r[a].width;this.$grid_data.style.width=Math.max(o-1,0)+"px";
|
||||
}},gantt._scale_range_unit=function(){var t=this.config.scale_unit;if(this.config.scale_offset_minimal){var e=this._get_scales();t=e[e.length-1].unit}return t},gantt._init_tasks_range=function(){var t=this._scale_range_unit();if(this.config.start_date&&this.config.end_date){this._min_date=this.date[t+"_start"](new Date(this.config.start_date));var e=new Date(this.config.end_date),n=this.date[t+"_start"](new Date(e));return e=+e!=+n?this.date.add(n,1,t):n,void(this._max_date=e)}this._get_tasks_data();
|
||||
var a=this.getSubtaskDates();this._min_date=a.start_date,this._max_date=a.end_date,this._max_date&&this._min_date||(this._min_date=new Date,this._max_date=new Date),this._min_date=this.date[t+"_start"](this._min_date),this._min_date=this.calculateEndDate({start_date:this.date[t+"_start"](this._min_date),duration:-1,unit:t}),this._max_date=this.date[t+"_start"](this._max_date),this._max_date=this.calculateEndDate({start_date:this._max_date,duration:2,unit:t})},gantt._prepare_scale_html=function(t,e,n){
|
||||
var a=[],i=null,s=null,r=null;(t.template||t.date)&&(s=t.template||this.date.date_to_str(t.date));var o=0,_=t.count;!this.config.smart_scales||isNaN(e)||isNaN(n)||(o=this._findBinary(t.left,e),_=this._findBinary(t.left,n)+1),r=t.css||function(){},!t.css&&this.config.inherit_scale_class&&(r=gantt.templates.scale_cell_class);for(var l=o;_>l&&t.trace_x[l];l++){i=new Date(t.trace_x[l]);var d=s.call(this,i),g=t.width[l],h=t.height-(this.config.smart_scales&&t.index?1:0),c=t.left[l],u="",f="",p="";if(g){
|
||||
var v=this.config.smart_scales?"position:absolute;left:"+c+"px":"";u="width:"+g+"px;height:"+h+"px;"+v,p="gantt_scale_cell"+(l==t.count-1?" gantt_last_cell":""),f=r.call(this,i),f&&(p+=" "+f);var m=gantt._waiAria.getTimelineCellAttr(d),k="<div class='"+p+"'"+m+" style='"+u+"'>"+d+"</div>";a.push(k)}}return a.join("")},gantt._get_scales=function(){var t=this._scale_helpers,e=[t.primaryScale()].concat(this.config.subscales);return t.sortScales(e),e},gantt._get_scale_chunk_html=function(t,e,n){for(var a=[],i=this.templates.scale_row_class,s=0;s<t.length;s++){
|
||||
var r="gantt_scale_line",o=i(t[s]);o&&(r+=" "+o),a.push('<div class="'+r+'" style="height:'+t[s].height+"px;position:relative;line-height:"+t[s].height+'px">'+this._prepare_scale_html(t[s],e,n)+"</div>")}return a.join("")},gantt._refreshScales=function(){if(this.config.smart_scales&&this.config.show_chart){var t=this._scales,e=gantt.getScrollState().x;this.$task_scale.innerHTML=this._get_scale_chunk_html(t,e,e+this._x-this._get_grid_width())}},gantt.attachEvent("onGanttScroll",function(t,e,n,a){gantt.config.smart_scales&&t!=n&&gantt._refreshScales();
|
||||
}),gantt.attachEvent("onGanttRender",function(){gantt.config.smart_scales&&gantt._refreshScales()}),gantt._render_tasks_scales=function(){this._init_tasks_range(),this._scroll_resize(),this._set_sizes();var t="",e=0,n=0,a=0;if(this._is_chart_visible()){var i=this._scale_helpers,s=this._get_scales();a=this.config.scale_height-1;var r=this._get_resize_options(),o=r.x?Math.max(this.config.autosize_min_width,0):Math.max(this._x-this._get_grid_width()-2,0),_=i.prepareConfigs(s,this.config.min_column_width,o,a),l=this._tasks=_[_.length-1];
|
||||
this._scales=_,t=this._get_scale_chunk_html(_,0,this._x-this._get_grid_width());var d=this._scroll_sizes();e=l.full_width+(this._scroll_sizes().y?d.scroll_size:0)+"px",n=l.full_width+"px",a+="px"}this._is_chart_visible()?this.$task.style.display="":this.$task.style.display="none",this.$task_scale.style.height=a,this.$task_data.style.width=this.$task_scale.style.width=e,this.$task_scale.innerHTML=t},gantt._render_bg_line=function(t){var e=gantt._tasks,n=e.count,a=document.createElement("div");if(gantt.config.show_task_cells)for(var i=0;n>i;i++){
|
||||
var s=e.width[i],r="";if(s>0){var o=document.createElement("div");o.style.width=s+"px",r="gantt_task_cell"+(i==n-1?" gantt_last_cell":""),l=this.templates.task_cell_class(t,e.trace_x[i]),l&&(r+=" "+l),o.className=r,a.appendChild(o)}}var _=gantt.getGlobalTaskIndex(t.id)%2!==0,l=gantt.templates.task_row_class(t.start_date,t.end_date,t),d="gantt_task_row"+(_?" odd":"")+(l?" "+l:"");return this.getState().selected_task==t.id&&(d+=" gantt_selected"),a.className=d,gantt.config.smart_rendering&&(a.style.position="absolute",
|
||||
a.style.top=this.getTaskTop(t.id)+"px",a.style.width="100%"),a.style.height=gantt.config.row_height+"px",a.setAttribute(this.config.task_attribute,t.id),a},gantt._adjust_scales=function(){if(this.config.fit_tasks){var t=+this._min_date,e=+this._max_date;if(this._init_tasks_range(),+this._min_date!=t||+this._max_date!=e)return this.render(),this.callEvent("onScaleAdjusted",[]),!0}return!1},gantt.refreshTask=function(t,e){var n=this._get_task_renderers(),a=this.getTask(t);if(a&&this.isTaskVisible(t)){
|
||||
for(var i=0;i<n.length;i++)n[i].render_item(a);if(void 0!==e&&!e)return;for(var i=0;i<a.$source.length;i++)gantt.refreshLink(a.$source[i]);for(var i=0;i<a.$target.length;i++)gantt.refreshLink(a.$target[i])}},gantt.refreshLink=function(t){if(this.isLinkExists(t))this._render_link(t);else for(var e=this._get_link_renderers(),n=0;n<e.length;n++)e[n].remove_item(t)},gantt._combine_item_class=function(t,e,n){var a=[t];e&&a.push(e);var i=gantt.getState(),s=this.getTask(n);this._get_safe_type(s.type)==this.config.types.milestone&&a.push("gantt_milestone"),
|
||||
this._get_safe_type(s.type)==this.config.types.project&&a.push("gantt_project"),this._is_flex_task(s)&&a.push("gantt_dependent_task"),this.config.select_task&&n==i.selected_task&&a.push("gantt_selected"),n==i.drag_id&&(a.push("gantt_drag_"+i.drag_mode),i.touch_drag&&a.push("gantt_touch_"+i.drag_mode));var r=gantt._get_link_state();if(r.link_source_id==n&&a.push("gantt_link_source"),r.link_target_id==n&&a.push("gantt_link_target"),this.config.highlight_critical_path&&this.isCriticalTask&&this.isCriticalTask(s)&&a.push("gantt_critical_task"),
|
||||
r.link_landing_area&&r.link_target_id&&r.link_source_id&&r.link_target_id!=r.link_source_id){var o=r.link_source_id,_=r.link_source_start,l=r.link_target_start,d=gantt.isLinkAllowed(o,n,_,l),g="";g=d?l?"link_start_allow":"link_finish_allow":l?"link_start_deny":"link_finish_deny",a.push(g)}return a.join(" ")},gantt._render_pair=function(t,e,n,a){var i=gantt.getState();+n.start_date>=+i.min_date&&t.appendChild(a(e+" task_left")),+n.end_date<=+i.max_date&&t.appendChild(a(e+" task_right"))},gantt._get_task_height=function(){
|
||||
var t=this.config.task_height;return"full"==t&&(t=this.config.row_height-5),t=Math.min(t,this.config.row_height),Math.max(t,0)},gantt._get_milestone_width=function(){return this._get_task_height()},gantt._get_visible_milestone_width=function(){var t=gantt._get_task_height();return Math.sqrt(2*t*t)},gantt.getTaskPosition=function(t,e,n){var a=this.posFromDate(e||t.start_date),i=this.posFromDate(n||t.end_date);i=Math.max(a,i);var s=this.getTaskTop(t.id),r=gantt._get_task_height();return{left:a,top:s,
|
||||
height:r,width:Math.max(i-a,0)}},gantt._get_task_width=function(t,e,n){return Math.round(this._get_task_pos(t,!1).x-this._get_task_pos(t,!0).x)},gantt._is_readonly=function(t){return t&&t[this.config.editable_property]?!1:t&&t[this.config.readonly_property]||this.config.readonly},gantt._task_default_render=function(t){if(!this._isAllowedUnscheduledTask(t)){var e=this._get_task_pos(t),n=this.config,a=this._get_task_height(),i=Math.floor((this.config.row_height-a)/2);this._get_safe_type(t.type)==n.types.milestone&&n.link_line_width>1&&(i+=1);
|
||||
var s=document.createElement("div"),r=gantt._get_task_width(t),o=this._get_safe_type(t.type);s.setAttribute(this.config.task_attribute,t.id),n.show_progress&&o!=this.config.types.milestone&&this._render_task_progress(t,s,r);var _=gantt._render_task_content(t,r);t.textColor&&(_.style.color=t.textColor),s.appendChild(_);var l=this._combine_item_class("gantt_task_line",this.templates.task_class(t.start_date,t.end_date,t),t.id);(t.color||t.progressColor||t.textColor)&&(l+=" gantt_task_inline_color"),
|
||||
s.className=l;var d=["left:"+e.x+"px","top:"+(i+e.y)+"px","height:"+a+"px","line-height:"+Math.max(30>a?a-2:a,0)+"px","width:"+r+"px"];t.color&&d.push("background-color:"+t.color),t.textColor&&d.push("color:"+t.textColor),s.style.cssText=d.join(";");var g=this._render_leftside_content(t);return g&&s.appendChild(g),g=this._render_rightside_content(t),g&&s.appendChild(g),gantt._waiAria.setTaskBarAttr(t,s),this._is_readonly(t)||(n.drag_resize&&!this._is_flex_task(t)&&o!=this.config.types.milestone&&gantt._render_pair(s,"gantt_task_drag",t,function(t){
|
||||
var e=document.createElement("div");return e.className=t,e}),n.drag_links&&this.config.show_links&&gantt._render_pair(s,"gantt_link_control",t,function(t){var e=document.createElement("div");e.className=t,e.style.cssText=["height:"+a+"px","line-height:"+a+"px"].join(";");var n=document.createElement("div");return n.className="gantt_link_point",n.style.display=gantt._show_link_points?"block":"",e.appendChild(n),e})),s}},gantt._render_task_element=function(t){var e=this.config.type_renderers,n=e[this._get_safe_type(t.type)],a=this._task_default_render;
|
||||
return n||(n=a),n.call(this,t,this.bind(a,this))},gantt._render_side_content=function(t,e,n){if(!e)return null;var a=e(t.start_date,t.end_date,t);if(!a)return null;var i=document.createElement("div");return i.className="gantt_side_content "+n,i.innerHTML=a,i},gantt._render_leftside_content=function(t){var e="gantt_left "+gantt._get_link_crossing_css(!0,t);return gantt._render_side_content(t,this.templates.leftside_text,e)},gantt._render_rightside_content=function(t){var e="gantt_right "+gantt._get_link_crossing_css(!1,t);
|
||||
return gantt._render_side_content(t,this.templates.rightside_text,e)},gantt._get_conditions=function(t){return t?{$source:[gantt.config.links.start_to_start],$target:[gantt.config.links.start_to_start,gantt.config.links.finish_to_start]}:{$source:[gantt.config.links.finish_to_start,gantt.config.links.finish_to_finish],$target:[gantt.config.links.finish_to_finish]}},gantt._get_link_crossing_css=function(t,e){var n=gantt._get_conditions(t);for(var a in n)for(var i=e[a],s=0;s<i.length;s++)for(var r=gantt.getLink(i[s]),o=0;o<n[a].length;o++)if(r.type==n[a][o])return"gantt_link_crossing";
|
||||
return""},gantt._render_task_content=function(t,e){var n=document.createElement("div");return this._get_safe_type(t.type)!=this.config.types.milestone&&(n.innerHTML=this.templates.task_text(t.start_date,t.end_date,t)),n.className="gantt_task_content",n},gantt._render_task_progress=function(t,e,n){var a=1*t.progress||0;n=Math.max(n-2,0);var i=document.createElement("div"),s=Math.round(n*a);if(s=Math.min(n,s),t.progressColor&&(i.style.backgroundColor=t.progressColor,i.style.opacity=1),i.style.width=s+"px",
|
||||
i.className="gantt_task_progress",i.innerHTML=this.templates.progress_text(t.start_date,t.end_date,t),e.appendChild(i),this.config.drag_progress&&!gantt._is_readonly(t)){var r=document.createElement("div");r.style.left=s+"px",r.className="gantt_task_progress_drag",i.appendChild(r),e.appendChild(r)}},gantt._get_line=function(t){var e={second:1,minute:60,hour:3600,day:86400,week:604800,month:2592e3,quarter:7776e3,year:31536e3};return e[t]||e.hour},gantt.dateFromPos=function(t){var e=this._tasks;if(0>t||t>e.full_width||!e.full_width)return null;
|
||||
var n=this._findBinary(this._tasks.left,t),a=this._tasks.left[n],i=e.width[n]||e.col_width,s=0;i&&(s=(t-a)/i);var r=0;s&&(r=gantt._get_coll_duration(e,e.trace_x[n]));var o=new Date(e.trace_x[n].valueOf()+Math.round(s*r));return o},gantt.posFromDate=function(t){if(!this._is_chart_visible())return 0;var e=gantt._day_index_by_date(t);this.assert(e>=0,"Invalid day index");var n=Math.floor(e),a=e%1,i=gantt._tasks.left[Math.min(n,gantt._tasks.width.length-1)];return n==gantt._tasks.width.length&&(i+=gantt._tasks.width[gantt._tasks.width.length-1]),
|
||||
a&&(i+=n<gantt._tasks.width.length?gantt._tasks.width[n]*(a%1):1),i},gantt._day_index_by_date=function(t){var e=new Date(t).valueOf(),n=gantt._tasks.trace_x,a=gantt._tasks.ignore_x;if(e<=this._min_date)return 0;if(e>=this._max_date)return n.length;for(var i=gantt._findBinary(n,e),s=+gantt._tasks.trace_x[i];a[s];)s=gantt._tasks.trace_x[++i];return s?i+(t-n[i])/gantt._get_coll_duration(gantt._tasks,n[i]):0},gantt._findBinary=function(t,e){for(var n,a,i,s=0,r=t.length-1;r>=s;)if(n=Math.floor((s+r)/2),
|
||||
a=+t[n],i=+t[n-1],e>a)s=n+1;else{if(!(a>e))return n;if(!isNaN(i)&&e>i)return n-1;r=n-1}return t.length-1},gantt._get_coll_duration=function(t,e){return gantt.date.add(e,t.step,t.unit)-e},gantt._get_x_pos=function(t,e){e=e!==!1;gantt.posFromDate(e?t.start_date:t.end_date)},gantt.getTaskTop=function(t){return this._y_from_ind(this.getGlobalTaskIndex(t))},gantt._get_task_coord=function(t,e,n){e=e!==!1,n=n||0;var a=this._get_safe_type(t.type)==this.config.types.milestone,i=null;i=e||a?t.start_date||this._default_task_date(t):t.end_date||this.calculateEndDate({
|
||||
start_date:this._default_task_date(t),task:t});var s=this.posFromDate(i),r=this.getTaskTop(t.id);return a&&(e?s-=n:s+=n),{x:s,y:r}},gantt._get_task_pos=function(t,e){e=e!==!1;var n=gantt._get_milestone_width()/2;return this._get_task_coord(t,e,n)},gantt._get_task_visible_pos=function(t,e){e=e!==!1;var n=gantt._get_visible_milestone_width()/2;return this._get_task_coord(t,e,n)},gantt._correct_shift=function(t,e){return t-=6e4*(new Date(gantt._min_date).getTimezoneOffset()-new Date(t).getTimezoneOffset())*(e?-1:1);
|
||||
},gantt._get_mouse_pos=function(t){if(t.pageX||t.pageY)var e={x:t.pageX,y:t.pageY};var n=gantt.env.isIE?document.documentElement:document.body,e={x:t.clientX+n.scrollLeft-n.clientLeft,y:t.clientY+n.scrollTop-n.clientTop},a=gantt._get_position(gantt.$task_data);return e.x=e.x-a.x+gantt.$task_data.scrollLeft,e.y=e.y-a.y+gantt.$task_data.scrollTop,e},gantt._is_layer=function(t){return t&&t.hasAttribute&&t.hasAttribute(this.config.layer_attribute)},gantt.attachEvent("onGanttReady",function(){gantt._task_layers.add(),
|
||||
gantt._link_layers.add()}),gantt._layers={prepareConfig:function(t){"function"==typeof t&&(t={renderer:t});t.id=gantt.uid();return t.container||(t.container=document.createElement("div")),t},create:function(t,e){return{tempCollection:[],renderers:{},container:t,getRenderers:function(){var t=[];for(var e in this.renderers)t.push(this.renderers[e]);return t},getRenderer:function(t){return this.renderers[t]},add:function(t){if(t&&this.tempCollection.push(t),this.container())for(var n=this.container(),a=this.tempCollection,i=0;i<a.length;i++){
|
||||
var t=a[i],s=t.container,r=t.id,o=t.topmost;if(!s.parentNode)if(o)n.appendChild(s);else{var _=e?e():n.firstChild;_?n.insertBefore(s,_):n.appendChild(s)}this.renderers[r]=gantt._task_renderer(r,t.renderer,s,t.filter),this.tempCollection.splice(i,1),i--}},remove:function(t){this.renderers[t].unload(),delete this.renderers[t]},clear:function(){for(var t in this.renderers)this.renderers[t].unload();this.renderers={}}}}},gantt._create_filter=function(t){return t instanceof Array||(t=Array.prototype.slice.call(arguments,0)),
|
||||
function(e){for(var n=!0,a=0,i=t.length;i>a;a++){var s=t[a];s&&(n=n&&s.apply(gantt,[e.id,e])!==!1)}return n}},gantt._add_generic_layer=function(t,e){return function(n){return void 0===n.filter&&(n.filter=gantt._create_filter(e)),n=gantt._layers.prepareConfig(n),t.add(n),n.id}},gantt._task_layers=gantt._layers.create(function(){return gantt.$task_data},function(){return gantt.$task_links}),gantt._link_layers=gantt._layers.create(function(){return gantt.$task_data}),gantt.addTaskLayer=gantt._add_generic_layer(gantt._task_layers,[gantt._filter_task,gantt._is_chart_visible].concat(gantt._get_task_filters())),
|
||||
gantt.removeTaskLayer=function(t){gantt._task_layers.remove(t)},gantt.addLinkLayer=gantt._add_generic_layer(gantt._link_layers,[gantt._filter_link,gantt._is_chart_visible].concat(gantt._get_link_filters())),gantt.removeLinkLayer=function(t){gantt._link_layers.remove(t)},gantt._get_task_renderers=function(){return this._task_layers.getRenderers()},gantt._get_link_renderers=function(){return this._link_layers.getRenderers()},gantt._pull={},gantt._branches={},gantt._order=[],gantt._lpull={},gantt._links=[],
|
||||
gantt._order_full=[],gantt.load=function(t,e,n){this._load_url=t,this.assert(arguments.length,"Invalid load arguments");var a="json",i=null;arguments.length>=3?(a=e,i=n):"string"==typeof arguments[1]?a=arguments[1]:"function"==typeof arguments[1]&&(i=arguments[1]),this._load_type=a,this.callEvent("onLoadStart",[t,a]),this.ajax.get(t,gantt.bind(function(e){this.on_load(e,a),this.callEvent("onLoadEnd",[t,a]),"function"==typeof i&&i.call(this)},this))},gantt.parse=function(t,e){this.on_load({xmlDoc:{
|
||||
responseText:t}},e)},gantt.serialize=function(t){return t=t||"json",this[t].serialize()},gantt.on_load=function(t,e){this.callEvent("onBeforeParse",[]),e||(e="json"),this.assert(this[e],"Invalid data type:'"+e+"'");var n=t.xmlDoc.responseText,a=this[e].parse(n,t);this._process_loading(a)},gantt._load_task=function(t){return this._init_task(t),this.callEvent("onTaskLoading",[t])?(this._pull[t.id]=t,!0):!1},gantt._build_pull=function(t){for(var e=null,n=[],a=0,i=t.length;i>a;a++)e=t[a],this._load_task(e)&&n.push(e);
|
||||
return n},gantt._build_hierarchy=function(t){for(var e=null,n=0,a=t.length;a>n;n++)e=t[n],this.setParent(e,this.getParent(e)||this.config.root_id);for(var n=0,a=t.length;a>n;n++)e=t[n],this._add_branch(e),e.$level=this.calculateTaskLevel(e)},gantt._process_loading=function(t){t.collections&&this._load_collections(t.collections);var e=this._build_pull(t.data);if(this._build_hierarchy(e),this._sync_order(),this._order_synced=!0,this._init_links(t.links||(t.collections?t.collections.links:[])),this.callEvent("onParse",[]),
|
||||
this.render(),this.config.initial_scroll){var n=this._order[0]||this.config.root_id;n&&this.showTask(n)}},gantt._init_links=function(t){if(t)for(var e=0;e<t.length;e++)if(t[e]){var n=this._init_link(t[e]);this._lpull[n.id]=n}this._sync_links()},gantt._load_collections=function(t){var e=!1;for(var n in t)if(t.hasOwnProperty(n)){e=!0;var a=t[n],i=this.serverList[n];if(!i)continue;i.splice(0,i.length);for(var s=0;s<a.length;s++){var r=a[s],o=this.copy(r);o.key=o.value;for(var _ in r)if(r.hasOwnProperty(_)){
|
||||
if("value"==_||"label"==_)continue;o[_]=r[_]}i.push(o)}}e&&this.callEvent("onOptionsLoad",[])},gantt._sync_order=function(t){this._order=[],this._order_full=[],this._order_search={},this._sync_order_item({parent:this.config.root_id,$open:!0,$ignore:!0,id:this.config.root_id}),t||(this._scroll_resize(),this._set_sizes())},gantt.attachEvent("onBeforeTaskDisplay",function(t,e){return!e.$ignore}),gantt._sync_order_item=function(t,e){t.id!==gantt.config.root_id&&(this._order_full.push(t.id),!e&&this._filter_task(t.id,t)&&this.callEvent("onBeforeTaskDisplay",[t.id,t])&&(this._order.push(t.id),
|
||||
this._order_search[t.id]=this._order.length-1));var n=this.getChildren(t.id);if(n)for(var a=0;a<n.length;a++)this._sync_order_item(this._pull[n[a]],e||!t.$open)},gantt.getTaskCount=function(){return this._order_full.length},gantt.getLinkCount=function(){return this._links.length},gantt.getVisibleTaskCount=function(){return this._order.length},gantt.getTaskIndex=function(t){for(var e=this.getChildren(this.getParent(t)),n=0;n<e.length;n++)if(e[n]==t)return n;return-1},gantt.getGlobalTaskIndex=function(t){
|
||||
this.assert(t,"Invalid argument");var e=this._order_search[t];return void 0!==e?e:-1},gantt._get_visible_order=gantt.getGlobalTaskIndex,gantt.eachTask=function(t,e,n){e=e||this.config.root_id,n=n||this;var a=this.getChildren(e);if(a)for(var i=0;i<a.length;i++){var s=this._pull[a[i]];t.call(n,s),this.hasChild(s.id)&&this.eachTask(t,s.id,n)}},gantt._eachParent=function(t,e,n){n=n||this;for(var a=e;this.getParent(a)&&this.isTaskExists(this.getParent(a));)a=this.getTask(this.getParent(a)),t.call(n,a);
|
||||
},gantt.json={parse:function(t){return gantt.assert(t,"Invalid data"),"string"==typeof t&&(window.JSON?t=JSON.parse(t):gantt.assert(!1,"JSON is not supported")),t.dhx_security&&(gantt.security_key=t.dhx_security),t},serializeTask:function(t){return this._copyObject(t)},serializeLink:function(t){return this._copyLink(t)},_copyLink:function(t){var e={};for(var n in t)e[n]=t[n];return e},_copyObject:function(t){var e={};for(var n in t)"$"!=n.charAt(0)&&(e[n]=t[n],e[n]instanceof Date&&(e[n]=gantt.templates.xml_format(e[n])));
|
||||
return e},serialize:function(){var t=[],e=[];gantt.eachTask(function(e){gantt.resetProjectDates(e),t.push(this.serializeTask(e))},gantt.config.root_id,this);for(var n=gantt.getLinks(),a=0;a<n.length;a++)e.push(this.serializeLink(n[a]));return{data:t,links:e}}},gantt.xml={_xmlNodeToJSON:function(t,e){for(var n={},a=0;a<t.attributes.length;a++)n[t.attributes[a].name]=t.attributes[a].value;if(!e){for(var a=0;a<t.childNodes.length;a++){var i=t.childNodes[a];1==i.nodeType&&(n[i.tagName]=i.firstChild?i.firstChild.nodeValue:"");
|
||||
}n.text||(n.text=t.firstChild?t.firstChild.nodeValue:"")}return n},_getCollections:function(t){for(var e={},n=gantt.ajax.xpath("//coll_options",t),a=0;a<n.length;a++)for(var i=n[a].getAttribute("for"),s=e[i]=[],r=gantt.ajax.xpath(".//item",n[a]),o=0;o<r.length;o++){for(var _=r[o],l=_.attributes,d={key:r[o].getAttribute("value"),label:r[o].getAttribute("label")},g=0;g<l.length;g++){var h=l[g];"value"!=h.nodeName&&"label"!=h.nodeName&&(d[h.nodeName]=h.nodeValue)}s.push(d)}return e},_getXML:function(t,e,n){
|
||||
n=n||"data",e.getXMLTopNode||(e=gantt.ajax.parse(e));var a=gantt.ajax.xmltop(n,e.xmlDoc);if(a.tagName!=n)throw"Invalid XML data";var i=a.getAttribute("dhx_security");return i&&(gantt.security_key=i),a},parse:function(t,e){e=this._getXML(t,e);for(var n={},a=n.data=[],i=gantt.ajax.xpath("//task",e),s=0;s<i.length;s++)a[s]=this._xmlNodeToJSON(i[s]);return n.collections=this._getCollections(e),n},_copyLink:function(t){return"<item id='"+t.id+"' source='"+t.source+"' target='"+t.target+"' type='"+t.type+"' />";
|
||||
},_copyObject:function(t){return"<task id='"+t.id+"' parent='"+(t.parent||"")+"' start_date='"+t.start_date+"' duration='"+t.duration+"' open='"+!!t.open+"' progress='"+t.progress+"' end_date='"+t.end_date+"'><![CDATA["+t.text+"]]></task>"},serialize:function(){for(var t=[],e=[],n=gantt.json.serialize(),a=0,i=n.data.length;i>a;a++)t.push(this._copyObject(n.data[a]));for(var a=0,i=n.links.length;i>a;a++)e.push(this._copyLink(n.links[a]));return"<data>"+t.join("")+"<coll_options for='links'>"+e.join("")+"</coll_options></data>";
|
||||
}},gantt.oldxml={parse:function(t,e){e=gantt.xml._getXML(t,e,"projects");for(var n={collections:{links:[]}},a=n.data=[],i=gantt.ajax.xpath("//task",e),s=0;s<i.length;s++){a[s]=gantt.xml._xmlNodeToJSON(i[s]);var r=i[s].parentNode;"project"==r.tagName?a[s].parent="project-"+r.getAttribute("id"):a[s].parent=r.parentNode.getAttribute("id")}i=gantt.ajax.xpath("//project",e);for(var s=0;s<i.length;s++){var o=gantt.xml._xmlNodeToJSON(i[s],!0);o.id="project-"+o.id,a.push(o)}for(var s=0;s<a.length;s++){var o=a[s];
|
||||
o.start_date=o.startdate||o.est,o.end_date=o.enddate,o.text=o.name,o.duration=o.duration/8,o.open=1,o.duration||o.end_date||(o.duration=1),o.predecessortasks&&n.collections.links.push({target:o.id,source:o.predecessortasks,type:gantt.config.links.finish_to_start})}return n},serialize:function(){gantt.message("Serialization to 'old XML' is not implemented")}},gantt.serverList=function(t,e){return e?this.serverList[t]=e.slice(0):this.serverList[t]||(this.serverList[t]=[]),this.serverList[t]},gantt._calendars={},
|
||||
gantt._calendars.calendarArgumentsHelper={getWorkHoursArguments:function(){var t=arguments[0];return t=t.date instanceof Date?{date:t}:gantt.mixin({},t)},setWorkTimeArguments:function(){return arguments[0]},unsetWorkTimeArguments:function(){return arguments[0]},isWorkTimeArguments:function(){var t=arguments[0];return t.date?(t=gantt.mixin({},t),t.unit=t.unit||gantt.config.duration_unit,t.task=t.task||null,t.calendar=t.calendar||null):(t={},t.date=arguments[0],t.unit=arguments[1],t.task=arguments[2],
|
||||
t.calendar=arguments[3]),t.unit=t.unit||gantt.config.duration_unit,t},getClosestWorkTimeArguments:function(t){return t=arguments[0],t=t instanceof Date?{date:t}:gantt.mixin({},t),t.dir=t.dir||"any",t.unit=t.unit||gantt.config.duration_unit,t},getDurationConfig:function(t,e,n,a){return this.start_date=t,this.end_date=e,this.task=n,this.calendar=a,this.unit=null,this.step=null,this},_getStartEndConfig:function(t){var e,n=gantt._calendars.calendarArgumentsHelper.getDurationConfig;return t instanceof n?t:(t instanceof Date?e=new n(arguments[0],arguments[1],arguments[2],arguments[3]):(e=new n(t.start_date,t.end_date,t.task),
|
||||
t.id&&(e.task=t)),e.unit=e.unit||gantt.config.duration_unit,e.step=e.step||gantt.config.duration_step,e.start_date=e.start_date||e.start||e.date,e)},getDurationArguments:function(t,e,n,a){return gantt._calendars.calendarArgumentsHelper._getStartEndConfig.apply(this,arguments)},hasDurationArguments:function(t,e,n,a){return gantt._calendars.calendarArgumentsHelper._getStartEndConfig.apply(this,arguments)},calculateEndDateArguments:function(t,e,n,a){var i=arguments[0];return i=i instanceof Date?{start_date:arguments[0],
|
||||
duration:arguments[1],unit:arguments[2],task:arguments[3],calendar:arguments[4]}:gantt.mixin({},i),i.unit=i.unit||gantt.config.duration_unit,i.step=i.step||gantt.config.duration_step,i}},gantt._calendars.calendarStrategy={units:["year","month","week","day","hour","minute"],_workingUnitsCache:{get:function(t,e){var n=-1,a=this._cache;if(a&&a[t]){var i=a[t],s=e.getTime();void 0!==i[s]&&(n=i[s])}return n},put:function(t,e,n){if(!t||!e)return!1;var a=this._cache,i=e.getTime();return n=!!n,a?(a[t]||(a[t]={}),
|
||||
a[t][i]=n,!0):!1},clear:function(){this._cache={}}},_getUnitOrder:function(t){for(var e=0,n=this.units.length;n>e;e++)if(this.units[e]==t)return e},_timestamp:function(t){var e=null;return t.day||0===t.day?e=t.day:t.date&&(e=Date.UTC(t.date.getFullYear(),t.date.getMonth(),t.date.getDate())),e},_checkIfWorkingUnit:function(t,e,n){return void 0===n&&(n=this._getUnitOrder(e)),void 0===n?!0:n&&!this._isWorkTime(t,this.units[n-1],n-1)?!1:this["_is_work_"+e]?this["_is_work_"+e](t):!0},_is_work_day:function(t){
|
||||
var e=this._getWorkHours(t);return e instanceof Array?e.length>0:!1},_is_work_hour:function(t){for(var e=this._getWorkHours(t),n=t.getHours(),a=0;a<e.length;a+=2){if(void 0===e[a+1])return e[a]==n;if(n>=e[a]&&n<e[a+1])return!0}return!1},_internDatesPull:{},_nextDate:function(t,e,n){return gantt.date.add(t,n,e)},_getWorkUnitsBetweenGeneric:function(t,e,n,a){var i=new Date(t),s=new Date(e);a=a||1;var r,o,_=0,l=null,d=!1;r=gantt.date[n+"_start"](new Date(i)),r.valueOf()!=i.valueOf()&&(d=!0);var g=!1;
|
||||
o=gantt.date[n+"_start"](new Date(e)),o.valueOf()!=e.valueOf()&&(g=!0);for(var h=!1;i.valueOf()<s.valueOf();)l=this._nextDate(i,n,a),h=l.valueOf()>s.valueOf(),this._isWorkTime(i,n)&&((d||g&&h)&&(r=gantt.date[n+"_start"](new Date(i)),o=gantt.date.add(r,a,n)),d?(d=!1,l=this._nextDate(r,n,a),_+=(o.valueOf()-i.valueOf())/(o.valueOf()-r.valueOf())):g&&h?(g=!1,_+=(s.valueOf()-i.valueOf())/(o.valueOf()-r.valueOf())):_++),i=l;return _},_getHoursPerDay:function(t){for(var e=this._getWorkHours(t),n=0,a=0;a<e.length;a+=2)n+=e[a+1]-e[a]||0;
|
||||
return n},_getWorkHoursForRange:function(t,e){for(var n=0,a=new Date(t),i=new Date(e);a.valueOf()<i.valueOf();)this._isWorkTime(a,"day")&&(n+=this._getHoursPerDay(a)),a=this._nextDate(a,"day",1);return n},_getWorkUnitsBetweenHours:function(t,e,n,a){var i=new Date(t),s=new Date(e);a=a||1;var r=new Date(i),o=gantt.date.add(gantt.date.day_start(new Date(i)),1,"day");if(s.valueOf()<=o.valueOf())return this._getWorkUnitsBetweenGeneric(t,e,n,a);var _=gantt.date.day_start(new Date(s)),l=s,d=this._getWorkUnitsBetweenGeneric(r,o,n,a),g=this._getWorkUnitsBetweenGeneric(_,l,n,a),h=this._getWorkHoursForRange(o,_);
|
||||
return h=h/a+d+g},_getCalendar:function(){return this.worktime},_setCalendar:function(t){this.worktime=t},_tryChangeCalendarSettings:function(t){var e=JSON.stringify(this._getCalendar());return t(),this._isEmptyCalendar(this._getCalendar())?(gantt.assert(!1,"Invalid calendar settings, no worktime available"),this._setCalendar(JSON.parse(e)),this._workingUnitsCache.clear(),!1):!0},_isEmptyCalendar:function(t){var e=!1,n=[],a=!0;for(var i in t.dates)e|=!!t.dates[i],n.push(i);for(var s=[],i=0;i<n.length;i++)n[i]<10&&s.push(n[i]);
|
||||
s.sort();for(var i=0;7>i;i++)s[i]!=i&&(a=!1);return a?!e:!(e||t.hours)},getWorkHours:function(){var t=gantt._calendars.calendarArgumentsHelper.getWorkHoursArguments.apply(this,arguments);return this._getWorkHours(t.date)},_getWorkHours:function(t){var e=this._timestamp({date:t}),n=!0,a=this._getCalendar();return void 0!==a.dates[e]?n=a.dates[e]:void 0!==a.dates[t.getDay()]&&(n=a.dates[t.getDay()]),n===!0?a.hours:n?n:[]},setWorkTime:function(t){return this._tryChangeCalendarSettings(gantt.bind(function(){
|
||||
var e=void 0!==t.hours?t.hours:!0,n=this._timestamp(t);null!==n?this._getCalendar().dates[n]=e:this._getCalendar().hours=e,this._workingUnitsCache.clear()},this))},unsetWorkTime:function(t){return this._tryChangeCalendarSettings(gantt.bind(function(){if(t){var e=this._timestamp(t);null!==e&&delete this._getCalendar().dates[e]}else this.reset_calendar();this._workingUnitsCache.clear()},this))},_isWorkTime:function(t,e,n){var a=this._workingUnitsCache.get(e,t);return-1==a&&(a=this._checkIfWorkingUnit(t,e,n),
|
||||
this._workingUnitsCache.put(e,t,a)),a},isWorkTime:function(){var t=gantt._calendars.calendarArgumentsHelper.isWorkTimeArguments.apply(this,arguments);return this._isWorkTime(t.date,t.unit)},calculateDuration:function(){var t=gantt._calendars.calendarArgumentsHelper.getDurationArguments.apply(this,arguments);if(!t.unit)return!1;var e=0;return e="hour"==t.unit?this._getWorkUnitsBetweenHours(t.start_date,t.end_date,t.unit,t.step):this._getWorkUnitsBetweenGeneric(t.start_date,t.end_date,t.unit,t.step),
|
||||
Math.round(e)},hasDuration:function(){var t=gantt._calendars.calendarArgumentsHelper.getDurationArguments.apply(this,arguments),e=t.start_date,n=t.end_date,a=t.unit,i=t.step;if(!a)return!1;var s=new Date(e),r=new Date(n);for(i=i||1;s.valueOf()<r.valueOf();){if(this._isWorkTime(s,a))return!0;s=this._nextDate(s,a,i)}return!1},calculateEndDate:function(){var t=gantt._calendars.calendarArgumentsHelper.calculateEndDateArguments.apply(this,arguments),e=t.start_date,n=t.duration,a=t.unit,i=t.step,s=t.duration>=0?1:-1;
|
||||
return this._calculateEndDate(e,n,a,i*s)},_calculateEndDate:function(t,e,n,a){if(!n)return!1;var i=new Date(t),s=0;for(a=a||1,e=Math.abs(1*e);e>s;){var r=this._nextDate(i,n,a);this._isWorkTime(a>0?new Date(r.valueOf()-1):new Date(r.valueOf()+1),n)&&s++,i=r}return i},getClosestWorkTime:function(){var t=gantt._calendars.calendarArgumentsHelper.getClosestWorkTimeArguments.apply(this,arguments);return this._getClosestWorkTime(t)},_getClosestWorkTime:function(t){if(this._isWorkTime(t.date,t.unit))return t.date;
|
||||
var e=t.unit,n=gantt.date[e+"_start"](t.date),a=new Date(n),i=new Date(n),s=!0,r=3e3,o=0,_="any"==t.dir||!t.dir,l=1;for("past"==t.dir&&(l=-1);!this._isWorkTime(n,e);){_&&(n=s?a:i,l=-1*l);var d=n.getTimezoneOffset();if(n=gantt.date.add(n,l,e),n=gantt._correct_dst_change(n,d,l,e),gantt.date[e+"_start"]&&(n=gantt.date[e+"_start"](n)),_&&(s?a=n:i=n),s=!s,o++,o>r)return gantt.assert(!1,"Invalid working time check"),!1}return(n==i||"past"==t.dir)&&(n=gantt.date.add(n,1,e)),n}},gantt._calendars.disabledWorkTimeCalendar={
|
||||
getWorkHours:function(){return[0,24]},setWorkTime:function(){return!0},unsetWorkTime:function(){return!0},isWorkTime:function(){return!0},getClosestWorkTime:function(t){var t=gantt._calendars.calendarArgumentsHelper.getClosestWorkTimeArguments.apply(this,arguments);return t.date},calculateDuration:function(){var t=gantt._calendars.calendarArgumentsHelper.getDurationArguments.apply(this,arguments),e=t.start_date,n=t.end_date,a=t.unit,i=t.step;return this._calculateDuration(e,n,a,i)},_calculateDuration:function(t,e,n,a){
|
||||
var i={week:6048e5,day:864e5,hour:36e5,minute:6e4},s=0;if(i[n])s=Math.round((e-t)/(a*i[n]));else{for(var r=new Date(t),o=new Date(e);r.valueOf()<o.valueOf();)s+=1,r=gantt.date.add(r,a,n);r.valueOf()!=e.valueOf()&&(s+=(o-r)/(gantt.date.add(r,a,n)-r))}return Math.round(s)},hasDuration:function(){var t=gantt._calendars.calendarArgumentsHelper.getDurationArguments.apply(this,arguments),e=t.start_date,n=t.end_date,a=t.unit;t.step;return a?(e=new Date(e),n=new Date(n),e.valueOf()<n.valueOf()):!1},calculateEndDate:function(){
|
||||
var t=gantt._calendars.calendarArgumentsHelper.calculateEndDateArguments.apply(this,arguments),e=t.start_date,n=t.duration,a=t.unit,i=t.step;return gantt.date.add(e,i*n,a)}},function(){var t=function(){this._cache={}};t.prototype=gantt._calendars.calendarStrategy._workingUnitsCache,gantt._calendars.CalendarAPICore=function(){this._workingUnitsCache=new t},gantt._calendars.CalendarAPICore.prototype=gantt._calendars.calendarStrategy}(),gantt._calendars.calendarManager={_calendars:{},_getDayHoursForMultiple:function(t,e){
|
||||
for(var n=[],a=!0,i=0,s=!1,r=gantt.date.day_start(new Date(e)),o=0;24>o;o++)s=t.reduce(function(t,e){return t&&e._is_work_hour(r)},!0),s?(a?(n[i]=o,n[i+1]=o+1,i+=2):n[i-1]+=1,a=!1):a||(a=!0),r=gantt.date.add(r,1,"hour");return n.length||(n=!1),n},mergeCalendars:function(){var t,e=this.createCalendar(),n=[],a=Array.prototype.slice.call(arguments,0);e.worktime.hours=[0,24],e.worktime.dates={};var i=gantt.date.day_start(new Date(2592e5));for(t=0;7>t;t++)n=this._getDayHoursForMultiple(a,i),e.worktime.dates[t]=n,
|
||||
i=gantt.date.add(i,1,"day");for(var s=0;s<a.length;s++)for(var r in a[s].worktime.dates)+r>1e4&&(n=this._getDayHoursForMultiple(a,new Date(+r)),e.worktime.dates[r]=n);return e},_convertWorktimeSettings:function(t){var e=t.days;if(e){t.dates=t.dates||{};for(var n=0;n<e.length;n++)t.dates[n]=e[n],e[n]instanceof Array||(t.dates[n]=!!e[n]);delete t.days}return t},createCalendar:function(t){var e;t||(t={}),e=t.worktime?gantt.copy(t.worktime):gantt.copy(t);var n=gantt.copy(this.defaults.fulltime.worktime);
|
||||
gantt.mixin(e,n);var a=gantt.uid(),i={id:a+"",worktime:this._convertWorktimeSettings(e)},s=new gantt._calendars.CalendarAPICore;return gantt.mixin(s,i),s._tryChangeCalendarSettings(function(){})?s:null},getCalendar:function(t){return t=t||"global",this.createDefaultCalendars(),this._calendars[t]},getCalendars:function(){var t=[];for(var e in this._calendars)t.push(this.getCalendar(e));return t},getTaskCalendar:function(t){if(!t)return this.getCalendar();if(t[gantt.config.calendar_property])return this.getCalendar(t[gantt.config.calendar_property]);
|
||||
if(gantt.config.resource_calendars)for(var e in gantt.config.resource_calendars){var n=gantt.config.resource_calendars[e];if(t[e]){var a=n[t[e]];if(a)return this.getCalendar(a)}}return this.getCalendar()},addCalendar:function(t){if(!(t instanceof gantt._calendars.CalendarAPICore)){var e=t.id;t=this.createCalendar(t),t.id=e}return t.id=t.id||gantt.uid(),this._calendars[t.id]=t,gantt.config.worktimes||(gantt.config.worktimes={}),gantt.config.worktimes[t.id]=t.worktime,t.id},deleteCalendar:function(t){
|
||||
t&&this._calendars[t.id]&&delete this._calendars[t.id],gantt.config.worktimes&&gantt.config.worktimes[t.id]&&delete gantt.config.worktimes[t.id]},restoreConfigCalendars:function(t){for(var e in t)if(!this._calendars[e]){var n=t[e],a=this.createCalendar(n);a.id=e,this.addCalendar(a)}},defaults:{global:{id:"global",worktime:{hours:[8,17],days:[0,1,1,1,1,1,0]}},fulltime:{id:"fulltime",worktime:{hours:[0,24],days:[1,1,1,1,1,1,1]}}},createDefaultCalendars:function(){this.restoreConfigCalendars(this.defaults),
|
||||
this.restoreConfigCalendars(gantt.config.worktimes)}},gantt._timeCalculator={_getCalendar:function(t){var e;if(gantt.config.work_time){var n=gantt._calendars.calendarManager;t.task?e=n.getTaskCalendar(t.task):t.id?e=n.getTaskCalendar(t):t.calendar&&(e=t.calendar),e||(e=n.getTaskCalendar())}else e=gantt._calendars.disabledWorkTimeCalendar;return e},getWorkHours:function(t){t=gantt._calendars.calendarArgumentsHelper.getWorkHoursArguments.apply(this,arguments);var e=this._getCalendar(t);return e.getWorkHours(t.date);
|
||||
},setWorkTime:function(t,e){return t=gantt._calendars.calendarArgumentsHelper.setWorkTimeArguments.apply(this,arguments),e||(e=gantt._calendars.calendarManager.getCalendar()),e.setWorkTime(t)},unsetWorkTime:function(t,e){return t=gantt._calendars.calendarArgumentsHelper.unsetWorkTimeArguments.apply(this,arguments),e||(e=gantt._calendars.calendarManager.getCalendar()),e.unsetWorkTime(t)},isWorkTime:function(t,e,n,a){var i=gantt._calendars.calendarArgumentsHelper.isWorkTimeArguments.apply(this,arguments);
|
||||
return a=this._getCalendar(i),a.isWorkTime(i)},getClosestWorkTime:function(t){t=gantt._calendars.calendarArgumentsHelper.getClosestWorkTimeArguments.apply(this,arguments);var e=this._getCalendar(t);return e.getClosestWorkTime(t)},calculateDuration:function(){var t=gantt._calendars.calendarArgumentsHelper.getDurationArguments.apply(this,arguments),e=this._getCalendar(t);return e.calculateDuration(t)},hasDuration:function(){var t=gantt._calendars.calendarArgumentsHelper.hasDurationArguments.apply(this,arguments),e=this._getCalendar(t);
|
||||
return e.hasDuration(t)},calculateEndDate:function(t){var t=gantt._calendars.calendarArgumentsHelper.calculateEndDateArguments.apply(this,arguments),e=this._getCalendar(t);return e.calculateEndDate(t)}},function(){var t=gantt._calendars.calendarManager;gantt.createCalendar=gantt.bind(t.createCalendar,t),gantt.addCalendar=gantt.bind(t.addCalendar,t),gantt.getCalendar=gantt.bind(t.getCalendar,t),gantt.getCalendars=gantt.bind(t.getCalendars,t),gantt.getTaskCalendar=gantt.bind(t.getTaskCalendar,t),gantt.deleteCalendar=gantt.bind(t.deleteCalendar,t);
|
||||
}(),gantt.getTask=function(t){gantt.assert(t,"Invalid argument for gantt.getTask");var e=this._pull[t];return gantt.assert(e,"Task not found id="+t),e},gantt.getTaskByTime=function(t,e){var n=this._pull,a=[];if(t||e){t=+t||-(1/0),e=+e||1/0;for(var i in n){var s=n[i];+s.start_date<e&&+s.end_date>t&&a.push(s)}}else for(var i in n)a.push(n[i]);return a},gantt.isTaskExists=function(t){return gantt.defined(this._pull[t])},gantt.isUnscheduledTask=function(t){return!!t.unscheduled||!t.start_date},gantt._isAllowedUnscheduledTask=function(t){
|
||||
return!(!t.unscheduled||!gantt.config.show_unscheduled)},gantt.isTaskVisible=function(t){if(!this._pull[t])return!1;var e=this._pull[t];return(+e.start_date<+this._max_date&&+e.end_date>+this._min_date||gantt._isAllowedUnscheduledTask(e))&&void 0!==this._order_search[t]?!0:!1},gantt.updateTask=function(t,e){return gantt.defined(e)||(e=this.getTask(t)),this.callEvent("onBeforeTaskUpdate",[t,e])===!1?!1:(this._pull[e.id]=e,this._is_parent_sync(e)||this._resync_parent(e),this._isAllowedUnscheduledTask(e)&&(this._init_task(e),
|
||||
this._sync_links()),this._update_parents(e.id),this.refreshTask(e.id),this._sync_order(!0),this.callEvent("onAfterTaskUpdate",[t,e]),void this._adjust_scales())},gantt._add_branch=function(t,e){var n=this.getParent(t);this.hasChild(n)||(this._branches[n]=[]);for(var a=this.getChildren(n),i=!1,s=0,r=a.length;r>s;s++)if(a[s]==t.id){i=!0;break}i||(1*e==e?a.splice(e,0,t.id):a.push(t.id)),this._sync_parent(t)},gantt._move_branch=function(t,e,n){this.setParent(t,n),this._sync_parent(t),this._replace_branch_child(e,t.id),
|
||||
this.isTaskExists(n)||n==this.config.root_id?this._add_branch(t):delete this._branches[t.id],t.$level=this.calculateTaskLevel(t),this.eachTask(function(t){t.$level=this.calculateTaskLevel(t)},t.id),this._sync_order()},gantt._resync_parent=function(t){this._move_branch(t,t.$rendered_parent,this.getParent(t))},gantt._sync_parent=function(t){t.$rendered_parent=this.getParent(t)},gantt._is_parent_sync=function(t){return t.$rendered_parent==this.getParent(t)},gantt._replace_branch_child=function(t,e,n){
|
||||
var a=this.getChildren(t);if(a){for(var i=[],s=0;s<a.length;s++)a[s]!=e?i.push(a[s]):n&&i.push(n);this._branches[t]=i}this._sync_order()},gantt.addTask=function(t,e,n){return gantt.defined(t.id)||(t.id=gantt.uid()),gantt.defined(e)||(e=this.getParent(t)||0),this.isTaskExists(e)||(e=0),this.setParent(t,e),t=this._init_task(t),this.callEvent("onBeforeTaskAdd",[t.id,t])===!1?!1:(this._pull[t.id]=t,this._add_branch(t,n),this._sync_order(!0),this.callEvent("onAfterTaskAdd",[t.id,t]),this.refreshData(),
|
||||
this._adjust_scales(),t.id)},gantt._default_task_date=function(t,e){var n=e&&e!=this.config.root_id?this.getTask(e):!1,a="";if(n)a=n.start_date;else{var i=this._order[0];a=i?this.getTask(i).start_date?this.getTask(i).start_date:this.getTask(i).end_date?this.calculateEndDate({start_date:this.getTask(i).end_date,duration:-this.config.duration_step}):"":this.config.start_date||this.getState().min_date}return gantt.assert(a,"Invalid dates"),new Date(a)},gantt._set_default_task_timing=function(t){t.start_date=t.start_date||gantt._default_task_date(t,this.getParent(t)),
|
||||
t.duration=t.duration||this.config.duration_step,t.end_date=t.end_date||this.calculateEndDate(t)},gantt.createTask=function(t,e,n){if(t=t||{},gantt.defined(t.id)||(t.id=gantt.uid()),t.start_date||(t.start_date=gantt._default_task_date(t,e)),void 0===t.text&&(t.text=gantt.locale.labels.new_task),void 0===t.duration&&(t.duration=1),e){this.setParent(t,e);var a=this.getTask(e);a.$open=!0}return this.callEvent("onTaskCreated",[t])?(this.config.details_on_create?(t.$new=!0,this._pull[t.id]=this._init_task(t),
|
||||
this._add_branch(t,n),t.$level=this.calculateTaskLevel(t),this.selectTask(t.id),this.refreshData(),this.showLightbox(t.id)):this.addTask(t,e,n)&&(this.showTask(t.id),this.selectTask(t.id)),t.id):null},gantt.deleteTask=function(t){return this._deleteTask(t)},gantt._getChildLinks=function(t){var e=this.getTask(t);if(!e)return[];for(var n=e.$source.concat(e.$target),a=this.getChildren(e.id),i=0;i<a.length;i++)n=n.concat(this._getChildLinks(a[i]));for(var s={},i=0;i<n.length;i++)s[n[i]]=!0;n=[];for(var i in s)this.isLinkExists(i)&&n.push(i);
|
||||
return n},gantt._getTaskTree=function(t){var e=this.getTask(t);if(!e)return[];for(var n=[],a=this.getChildren(e.id),i=0;i<a.length;i++)n.push(a[i]),n=n.concat(this._getTaskTree(a[i]));return n},gantt._deleteRelatedLinks=function(t,e){var n=this._dp&&!e&&this.config.cascade_delete,a="",i=n?"off"!=this._dp.updateMode:!1;n&&(a=this._dp.updateMode,this._dp.setUpdateMode("off"));for(var s=0;s<t.length;s++)n&&(this._dp.setGanttMode("links"),this._dp.setUpdated(t[s],!0,"deleted")),this._deleteLink(t[s],!0);
|
||||
n&&(this._dp.setUpdateMode(a),i&&this._dp.sendAllData())},gantt._deleteRelatedTasks=function(t,e){var n=this._dp&&!e&&this.config.cascade_delete,a="";n&&(a=this._dp.updateMode,this._dp.setGanttMode("tasks"),this._dp.setUpdateMode("off"));for(var i=this._getTaskTree(t),s=0;s<i.length;s++){var r=i[s];this._unset_task(r),n&&this._dp.setUpdated(r,!0,"deleted")}n&&this._dp.setUpdateMode(a)},gantt._unset_task=function(t){var e=this.getTask(t);this._update_flags(t,null),delete this._pull[t],this._move_branch(e,this.getParent(e),null);
|
||||
},gantt._deleteTask=function(t,e){var n=this.getTask(t);if(!e&&this.callEvent("onBeforeTaskDelete",[t,n])===!1)return!1;var a=gantt._getChildLinks(t);return this._deleteRelatedTasks(t,e),this._deleteRelatedLinks(a,e),this._unset_task(t),e||(this._sync_order(!0),this.callEvent("onAfterTaskDelete",[t,n]),this.refreshData()),!0},gantt.clearAll=function(){this._clear_data(),this.callEvent("onClear",[]),this.refreshData()},gantt._clear_data=function(){this._pull={},this._branches={},this._order=[],this._order_full=[],
|
||||
this._lpull={},this._links=[],this._update_flags(),this.userdata={}},gantt._update_flags=function(t,e){void 0===t?(this._lightbox_id=this._selected_task=null,this._tasks_dnd.drag&&(this._tasks_dnd.drag.id=null)):(this._lightbox_id==t&&(this._lightbox_id=e),this._selected_task==t&&(this._selected_task=e),this._tasks_dnd.drag&&this._tasks_dnd.drag.id==t&&(this._tasks_dnd.drag.id=e))},gantt.changeTaskId=function(t,e){var n=this._pull[e]=this._pull[t];this._pull[e].id=e,delete this._pull[t],this._update_flags(t,e),
|
||||
this._replace_branch_child(this.getParent(n),t,e);for(var a in this._pull){var i=this._pull[a];this.getParent(i)==t&&(this.setParent(i,e),this._resync_parent(i))}for(var s=this._get_task_links(n),r=0;r<s.length;r++){var o=this.getLink(s[r]);o.source==t&&(o.source=e),o.target==t&&(o.target=e)}this.callEvent("onTaskIdChange",[t,e])},gantt._get_task_links=function(t){var e=[];return t.$source&&(e=e.concat(t.$source)),t.$target&&(e=e.concat(t.$target)),e},gantt._get_duration_unit=function(){return 1e3*gantt._get_line(this.config.duration_unit)||this.config.duration_unit;
|
||||
},gantt._get_safe_type=function(t){return"task"},gantt._get_type_name=function(t){for(var e in this.config.types)if(this.config.types[e]==t)return e;return"task"},gantt.getWorkHours=function(t){return gantt._timeCalculator.getWorkHours(t)},gantt.setWorkTime=function(t){return gantt._timeCalculator.setWorkTime(t)},gantt.unsetWorkTime=function(t){gantt._timeCalculator.unsetWorkTime(t)},gantt.isWorkTime=function(t,e,n){return gantt._timeCalculator.isWorkTime(t,e,n)},gantt.correctTaskWorkTime=function(t){
|
||||
gantt.config.work_time&&gantt.config.correct_work_time&&(gantt.isWorkTime(t.start_date,t)?gantt.isWorkTime(new Date(+t.end_date-1),t)||(t.end_date=gantt.calculateEndDate(t)):(t.start_date=gantt.getClosestWorkTime({date:t.start_date,dir:"future",task:t}),t.end_date=gantt.calculateEndDate(t)))},gantt.getClosestWorkTime=function(t){return gantt._timeCalculator.getClosestWorkTime(t)},gantt.calculateDuration=function(t,e,n){return gantt._timeCalculator.calculateDuration(t,e,n)},gantt._hasDuration=function(t,e,n){
|
||||
return gantt._timeCalculator.hasDuration(t,e,n)},gantt.calculateEndDate=function(t,e,n,a){return gantt._timeCalculator.calculateEndDate(t,e,n,a)},gantt._init_task=function(t){gantt.defined(t.id)||(t.id=gantt.uid()),t.start_date&&(t.start_date=gantt.date.parseDate(t.start_date,"xml_date")),t.end_date&&(t.end_date=gantt.date.parseDate(t.end_date,"xml_date"));var e=null;return(t.duration||0===t.duration)&&(t.duration=e=1*t.duration),e&&(t.start_date&&!t.end_date?t.end_date=this.calculateEndDate(t):!t.start_date&&t.end_date&&(t.start_date=this.calculateEndDate({
|
||||
start_date:t.end_date,duration:-t.duration,task:t}))),this._isAllowedUnscheduledTask(t)&&this._set_default_task_timing(t),gantt._init_task_timing(t),t.start_date&&t.end_date&&gantt.correctTaskWorkTime(t),t.$source=[],t.$target=[],void 0===t.parent&&this.setParent(t,this.config.root_id),gantt.defined(t.$open)||(t.$open=gantt.defined(t.open)?t.open:this.config.open_tree_initially),t.$level=this.calculateTaskLevel(t),t},gantt._get_task_timing_mode=function(t,e){var n=this._get_safe_type(t.type),a={type:n,
|
||||
$no_start:!1,$no_end:!1};return e||n!=t.$rendered_type?(n==this.config.types.project?a.$no_end=a.$no_start=!0:n!=this.config.types.milestone&&(a.$no_end=!(t.end_date||t.duration),a.$no_start=!t.start_date,this._isAllowedUnscheduledTask(t)&&(a.$no_end=a.$no_start=!1)),a):(a.$no_start=t.$no_start,a.$no_end=t.$no_end,a)},gantt._init_task_timing=function(t){var e=gantt._get_task_timing_mode(t,!0),n=t.$rendered_type!=e.type,a=e.type;n&&(t.$no_start=e.$no_start,t.$no_end=e.$no_end,t.$rendered_type=e.type),
|
||||
n&&a!=this.config.types.milestone&&a==this.config.types.project&&this._set_default_task_timing(t),a==this.config.types.milestone&&(t.end_date=t.start_date),t.start_date&&t.end_date&&(t.duration=this.calculateDuration(t)),t.duration=t.duration||0},gantt._is_flex_task=function(t){var e=gantt._get_task_timing_mode(t);return!(!e.$no_end&&!e.$no_start)},gantt.resetProjectDates=function(t){var e=this._get_task_timing_mode(t);if(e.$no_end||e.$no_start){var n=this.getSubtaskDates(t.id);this._assign_project_dates(t,n.start_date,n.end_date);
|
||||
}},gantt.getSubtaskDates=function(t){var e=null,n=null,a=void 0!==t?t:gantt.config.root_id;return this.eachTask(function(t){this._get_safe_type(t.type)==gantt.config.types.project||this.isUnscheduledTask(t)||(t.start_date&&!t.$no_start&&(!e||e>t.start_date.valueOf())&&(e=t.start_date.valueOf()),t.end_date&&!t.$no_end&&(!n||n<t.end_date.valueOf())&&(n=t.end_date.valueOf()))},a),{start_date:e?new Date(e):null,end_date:n?new Date(n):null}},gantt._assign_project_dates=function(t,e,n){var a=this._get_task_timing_mode(t);
|
||||
a.$no_start&&(e&&e!=1/0?t.start_date=new Date(e):t.start_date=this._default_task_date(t,this.getParent(t))),a.$no_end&&(n&&n!=-(1/0)?t.end_date=new Date(n):t.end_date=this.calculateEndDate({start_date:t.start_date,duration:this.config.duration_step,task:t})),(a.$no_start||a.$no_end)&&this._init_task_timing(t)},gantt._update_parents=function(t,e){if(t){var n=this.getTask(t),a=this.getParent(n),i=this._get_task_timing_mode(n),s=!0;if(i.$no_start||i.$no_end){var r=n.start_date.valueOf(),o=n.end_date.valueOf();
|
||||
gantt.resetProjectDates(n),r==n.start_date.valueOf()&&o==n.end_date.valueOf()&&(s=!1),s&&!e&&this.refreshTask(n.id,!0)}s&&a&&this.isTaskExists(a)&&this._update_parents(a,e)}},gantt.isChildOf=function(t,e){if(!this.isTaskExists(t))return!1;if(e===this.config.root_id)return this.isTaskExists(t);for(var n=this.getTask(t),a=this.getParent(t);n&&this.isTaskExists(a);){if(n=this.getTask(a),n&&n.id==e)return!0;a=this.getParent(n)}return!1},gantt.roundDate=function(t){t instanceof Date&&(t={date:t,unit:gantt._tasks.unit,
|
||||
step:gantt._tasks.step});var e,n,a,i=t.date,s=t.step,r=t.unit;if(r==gantt._tasks.unit&&s==gantt._tasks.step&&+i>=+gantt._min_date&&+i<=+gantt._max_date)a=Math.floor(gantt._day_index_by_date(i)),gantt._tasks.trace_x[a]||(a-=1),n=new Date(gantt._tasks.trace_x[a]),e=new Date(n),e=gantt._tasks.trace_x[a+1]?new Date(gantt._tasks.trace_x[a+1]):gantt.date.add(n,s,r);else{for(a=Math.floor(gantt._day_index_by_date(i)),e=gantt.date[r+"_start"](new Date(this._min_date)),gantt._tasks.trace_x[a]&&(e=gantt.date[r+"_start"](gantt._tasks.trace_x[a]));+i>+e;){
|
||||
e=gantt.date[r+"_start"](gantt.date.add(e,s,r));var o=e.getTimezoneOffset();e=gantt._correct_dst_change(e,o,e,r),gantt.date[r+"_start"]&&(e=gantt.date[r+"_start"](e))}n=gantt.date.add(e,-1*s,r)}return t.dir&&"future"==t.dir?e:t.dir&&"past"==t.dir?n:Math.abs(i-n)<Math.abs(e-i)?n:e},gantt.attachEvent("onBeforeTaskUpdate",function(t,e){return gantt._init_task_timing(e),!0}),gantt.attachEvent("onBeforeTaskAdd",function(t,e){return gantt._init_task_timing(e),!0}),gantt.calculateTaskLevel=function(t){var e=0;
|
||||
return this._eachParent(function(){e++},t),e},gantt.sort=function(t,e,n,a){var i=!a;this.isTaskExists(n)||(n=this.config.root_id),t||(t="order");var s="string"==typeof t?function(e,n){if(e[t]==n[t])return 0;var a=e[t]>n[t];return a?1:-1}:t;if(e){var r=s;s=function(t,e){return r(e,t)}}var o=this.getChildren(n);if(o){for(var _=[],l=o.length-1;l>=0;l--)_[l]=this._pull[o[l]];_.sort(s);for(var l=0;l<_.length;l++)o[l]=_[l].id,this.sort(t,e,o[l],!0)}i&&this.render()},gantt.getNext=function(t){for(var e=0;e<this._order.length-1;e++)if(this._order[e]==t)return this._order[e+1];
|
||||
return null},gantt.getPrev=function(t){for(var e=1;e<this._order.length;e++)if(this._order[e]==t)return this._order[e-1];return null},gantt._get_parent_id=function(t){var e=this.config.root_id;return t&&(e=t.parent),e},gantt.getParent=function(t){var e=null;return e=void 0!==t.id?t:gantt.getTask(t),this._get_parent_id(e)},gantt.setParent=function(t,e){t.parent=e},gantt.getSiblings=function(t){if(!this.isTaskExists(t))return[];var e=this.getParent(t);return this.getChildren(e)},gantt.getNextSibling=function(t){
|
||||
for(var e=this.getSiblings(t),n=0,a=e.length;a>n;n++)if(e[n]==t)return e[n+1]||null;return null},gantt.getPrevSibling=function(t){for(var e=this.getSiblings(t),n=0,a=e.length;a>n;n++)if(e[n]==t)return e[n-1]||null;return null},gantt._dp_init=function(t){function e(e){for(var n=t.updatedRows.slice(),a=!1,i=0;i<n.length&&!t._in_progress[e];i++)n[i]==e&&("inserted"==gantt.getUserData(e,"!nativeeditor_status")&&(a=!0),t.setUpdated(e,!1));return a}t.setTransactionMode("POST",!0),t.serverProcessor+=(-1!=t.serverProcessor.indexOf("?")?"&":"?")+"editing=true",
|
||||
t._serverProcessor=t.serverProcessor,t.styles={updated:"gantt_updated",order:"gantt_updated",inserted:"gantt_inserted",deleted:"gantt_deleted",invalid:"gantt_invalid",error:"gantt_error",clear:""},t._methods=["_row_style","setCellTextStyle","_change_id","_delete_task"],t.setGanttMode=function(e){var n=t.modes||{};t._ganttMode&&(n[t._ganttMode]={_in_progress:t._in_progress,_invalid:t._invalid,updatedRows:t.updatedRows});var a=n[e];a||(a=n[e]={_in_progress:{},_invalid:{},updatedRows:[]}),t._in_progress=a._in_progress,
|
||||
t._invalid=a._invalid,t.updatedRows=a.updatedRows,t.modes=n,t._ganttMode=e},this._sendTaskOrder=function(e,n){n.$drop_target&&(t.setGanttMode("tasks"),this.getTask(e).target=n.$drop_target,t.setUpdated(e,!0,"order"),delete this.getTask(e).$drop_target)},this.attachEvent("onAfterTaskAdd",function(e,n){t.setGanttMode("tasks"),t.setUpdated(e,!0,"inserted")}),this.attachEvent("onAfterTaskUpdate",function(e,n){t.setGanttMode("tasks"),t.setUpdated(e,!0),gantt._sendTaskOrder(e,n)}),this.attachEvent("onAfterTaskDelete",function(n,a){
|
||||
t.setGanttMode("tasks");var i=!e(n);i&&(t.setUpdated(n,!0,"deleted"),"off"==t.updateMode||t._tSend||t.sendAllData())}),this.attachEvent("onAfterLinkUpdate",function(e,n){t.setGanttMode("links"),t.setUpdated(e,!0)}),this.attachEvent("onAfterLinkAdd",function(e,n){t.setGanttMode("links"),t.setUpdated(e,!0,"inserted")}),this.attachEvent("onAfterLinkDelete",function(n,a){t.setGanttMode("links");var i=!e(n);i&&t.setUpdated(n,!0,"deleted")}),this.attachEvent("onRowDragEnd",function(t,e){gantt._sendTaskOrder(t,gantt.getTask(t));
|
||||
});var n=null,a=null;this.attachEvent("onTaskIdChange",function(e,i){if(t._waitMode){var s=gantt.getChildren(i);if(s.length){n=n||{};for(var r=0;r<s.length;r++){var o=this.getTask(s[r]);n[o.id]=o}}var _=this.getTask(i),l=this._get_task_links(_);if(l.length){a=a||{};for(var r=0;r<l.length;r++){var d=this.getLink(l[r]);a[d.id]=d}}}}),t.attachEvent("onAfterUpdateFinish",function(){(n||a)&&(gantt.batchUpdate(function(){for(var t in n)gantt.updateTask(n[t].id);for(var t in a)gantt.updateLink(a[t].id);n=null,
|
||||
a=null}),n?gantt._dp.setGanttMode("tasks"):gantt._dp.setGanttMode("links"))}),t.attachEvent("onBeforeDataSending",function(){var t=this._serverProcessor;if("REST"==this._tMode){var e=this._ganttMode.substr(0,this._ganttMode.length-1);t=t.substring(0,t.indexOf("?")>-1?t.indexOf("?"):t.length),this.serverProcessor=t+("/"==t.slice(-1)?"":"/")+e}else this.serverProcessor=t+gantt._urlSeparator(t)+"gantt_mode="+this._ganttMode;return!0}),this._init_dp_live_update_hooks(t);var i=t.afterUpdate;t.afterUpdate=function(){
|
||||
var e;e=3==arguments.length?arguments[1]:arguments[4];var n=t._ganttMode,a=e.filePath;n="REST"!=this._tMode?-1!=a.indexOf("gantt_mode=links")?"links":"tasks":a.indexOf("/link")>a.indexOf("/task")?"links":"tasks",t.setGanttMode(n);var s=i.apply(t,arguments);return t.setGanttMode(n),s},t._getRowData=gantt.bind(function(e,n){var a;a="tasks"==t._ganttMode?this.isTaskExists(e)?this.getTask(e):{id:e}:this.isLinkExists(e)?this.getLink(e):{id:e},a=gantt.copy(a);var i={};for(var s in a)if("$"!=s.substr(0,1)){
|
||||
var r=a[s];r instanceof Date?i[s]=this.templates.xml_format(r):null===r?i[s]="":i[s]=r}var o=this._get_task_timing_mode(a);return o.$no_start&&(a.start_date="",a.duration=""),o.$no_end&&(a.end_date="",a.duration=""),i[t.action_param]=this.getUserData(e,t.action_param),i},this),this._change_id=gantt.bind(function(e,n){"tasks"!=t._ganttMode?this.changeLinkId(e,n):this.changeTaskId(e,n)},this),this._row_style=function(e,n){if("tasks"==t._ganttMode&&gantt.isTaskExists(e)){var a=gantt.getTask(e);a.$dataprocessor_class=n,
|
||||
gantt.refreshTask(e)}},this._delete_task=function(t,e){},this._dp=t},gantt.getUserData=function(t,e){return this.userdata||(this.userdata={}),this.userdata[t]&&this.userdata[t][e]?this.userdata[t][e]:""},gantt.setUserData=function(t,e,n){this.userdata||(this.userdata={}),this.userdata[t]||(this.userdata[t]={}),this.userdata[t][e]=n},gantt._init_link=function(t){return gantt.defined(t.id)||(t.id=gantt.uid()),t},gantt._sync_links=function(){for(var t=null,e=0,n=this._order_full.length;n>e;e++)t=this._pull[this._order_full[e]],
|
||||
t.$source=[],t.$target=[];this._links=[];for(var a in this._lpull){var i=this._lpull[a];this._links.push(i),this._pull[i.source]&&this._pull[i.source].$source.push(a),this._pull[i.target]&&this._pull[i.target].$target.push(a)}},gantt.getLink=function(t){return gantt.assert(this._lpull[t],"Link doesn't exist"),this._lpull[t]},gantt._get_linked_task=function(t,e){var n=null,a=e?t.target:t.source;gantt.isTaskExists(a)&&(n=gantt.getTask(a));var i=e?"target":"source";return gantt.assert(n,"Link "+i+" not found. Task id="+a+", link id="+t.id),
|
||||
n},gantt._get_link_target=function(t){return gantt._get_linked_task(t,!0)},gantt._get_link_source=function(t){return gantt._get_linked_task(t,!1)},gantt.getLinks=function(){var t=[];for(var e in gantt._lpull)t.push(gantt._lpull[e]);return t},gantt.isLinkExists=function(t){return gantt.defined(this._lpull[t])},gantt.addLink=function(t){return t=this._init_link(t),this.callEvent("onBeforeLinkAdd",[t.id,t])===!1?!1:(this._lpull[t.id]=t,this._sync_links(),this._render_link(t.id),this.callEvent("onAfterLinkAdd",[t.id,t]),
|
||||
t.id)},gantt.updateLink=function(t,e){return gantt.defined(e)||(e=this.getLink(t)),this.callEvent("onBeforeLinkUpdate",[t,e])===!1?!1:(this._lpull[t]=e,this._sync_links(),this._render_link(t),this.callEvent("onAfterLinkUpdate",[t,e]),!0)},gantt.deleteLink=function(t){return this._deleteLink(t)},gantt._deleteLink=function(t,e){var n=this.getLink(t);return e||this.callEvent("onBeforeLinkDelete",[t,n])!==!1?(delete this._lpull[t],this._sync_links(),this.refreshLink(t),e||this.callEvent("onAfterLinkDelete",[t,n]),
|
||||
!0):!1},gantt.changeLinkId=function(t,e){this._lpull[t]&&(this._lpull[e]=this._lpull[t],this._lpull[e].id=e,delete this._lpull[t],this._sync_links(),this.callEvent("onLinkIdChange",[t,e]))},gantt.getChildren=function(t){return gantt.defined(this._branches[t])?this._branches[t]:[]},gantt.hasChild=function(t){return gantt.defined(this._branches[t])&&this._branches[t].length},gantt.refreshData=function(){this._render_data()},gantt._isTask=function(t){var e=this._get_task_timing_mode(t);return!(t.type&&t.type==gantt.config.types.project||e.$no_start||e.$no_end);
|
||||
},gantt._isProject=function(t){return!this._isTask(t)},gantt._configure=function(t,e,n){for(var a in e)("undefined"==typeof t[a]||n)&&(t[a]=e[a])},gantt._init_skin=function(){gantt._get_skin(!1),gantt._init_skin=function(){}},gantt._get_skin=function(t){var e=gantt.skin;if(!e||t)for(var n=document.getElementsByTagName("link"),a=0;a<n.length;a++){var i=n[a].href.match("dhtmlxgantt_([a-z_]+).css");if(i&&(gantt.skins[i[1]]||!e)){e=i[1];break}}gantt.skin=e||"terrace";var s=gantt.skins[gantt.skin]||gantt.skins.terrace;
|
||||
this._configure(gantt.config,s.config,t);var r=gantt.getGridColumns();r[1]&&"undefined"==typeof r[1].width&&(r[1].width=s._second_column_width),r[2]&&"undefined"==typeof r[2].width&&(r[2].width=s._third_column_width),s._lightbox_template&&(gantt._lightbox_template=s._lightbox_template),gantt.resetLightbox()},gantt.resetSkin=function(){this.skin="",this._get_skin(!0)},gantt.skins={},gantt._lightbox_methods={},gantt._lightbox_template="<div class='gantt_cal_ltitle'><span class='gantt_mark'> </span><span class='gantt_time'></span><span class='gantt_title'></span></div><div class='gantt_cal_larea'></div>",
|
||||
gantt.showLightbox=function(t){if(t&&!gantt._is_readonly(this.getTask(t))&&this.callEvent("onBeforeLightbox",[t])){var e=this.getTask(t),n=this.getLightbox(this._get_safe_type(e.type));this._center_lightbox(n),this.showCover(),this._fill_lightbox(t,n),this._waiAria.lightboxVisibleAttr(n),this.callEvent("onLightbox",[t])}},gantt._get_timepicker_step=function(){if(this.config.round_dnd_dates){var t=gantt._tasks,e=this._get_line(t.unit)*t.step/60;return(e>=1440||!this._is_chart_visible())&&(e=this.config.time_step),
|
||||
e}return this.config.time_step},gantt.getLabel=function(t,e){for(var n=this._get_typed_lightbox_config(),a=0;a<n.length;a++)if(n[a].map_to==t)for(var i=n[a].options,s=0;s<i.length;s++)if(i[s].key==e)return i[s].label;return""},gantt.updateCollection=function(t,e){e=e.slice(0);var n=gantt.serverList(t);return n?(n.splice(0,n.length),n.push.apply(n,e||[]),void gantt.resetLightbox()):!1},gantt.getLightboxType=function(){return this._get_safe_type(this._lightbox_type)},gantt.getLightbox=function(t){if(void 0===t&&(t=this.getLightboxType()),
|
||||
!this._lightbox||this.getLightboxType()!=this._get_safe_type(t)){this._lightbox_type=this._get_safe_type(t);var e=document.createElement("DIV");e.className="gantt_cal_light";var n=this._is_lightbox_timepicker();(gantt.config.wide_form||n)&&(e.className+=" gantt_cal_light_wide"),n&&(gantt.config.wide_form=!0,e.className+=" gantt_cal_light_full"),e.style.visibility="hidden";for(var a,i=this._lightbox_template,s=this.config.buttons_left,r=0;r<s.length;r++){var o=this.config._migrate_buttons[s[r]]?this.config._migrate_buttons[s[r]]:s[r];
|
||||
a=this._waiAria.lightboxButtonAttrString(o),i+="<div "+a+" class='gantt_btn_set gantt_left_btn_set "+o+"_set'><div dhx_button='1' class='"+o+"'></div><div>"+this.locale.labels[o]+"</div></div>"}s=this.config.buttons_right;for(var r=0;r<s.length;r++){var o=this.config._migrate_buttons[s[r]]?this.config._migrate_buttons[s[r]]:s[r];a=this._waiAria.lightboxButtonAttrString(o),i+="<div "+a+" class='gantt_btn_set gantt_right_btn_set "+o+"_set' style='float:right;'><div dhx_button='1' class='"+o+"'></div><div>"+this.locale.labels[o]+"</div></div>";
|
||||
}i+="</div>",e.innerHTML=i,gantt._waiAria.lightboxAttr(e),gantt.config.drag_lightbox&&(e.firstChild.onmousedown=gantt._ready_to_dnd,e.firstChild.onselectstart=function(){return!1},e.firstChild.style.cursor="pointer",gantt._init_dnd_events()),document.body.insertBefore(e,document.body.firstChild),this._lightbox=e;var _=this._get_typed_lightbox_config(t);i=this._render_sections(_);for(var l=e.getElementsByTagName("div"),r=0;r<l.length;r++){var d=l[r];if("gantt_cal_larea"==d.className){d.innerHTML=i;
|
||||
break}}for(var r=0;r<_.length;r++){var g=_[r];if(g.id&&document.getElementById(g.id)){var h=document.getElementById(g.id),c=h.querySelector("label"),u=h.nextSibling;if(u){var f=u.querySelector("input, select, textarea");f&&(g.inputId=f.id||"input_"+gantt.uid(),f.id||(f.id=g.inputId),c.setAttribute("for",g.inputId))}}}this.resizeLightbox(),this._init_lightbox_events(this),e.style.display="none",e.style.visibility="visible"}return this._lightbox},gantt._render_sections=function(t){for(var e="",n=0;n<t.length;n++){
|
||||
var a=this.form_blocks[t[n].type];if(a){t[n].id="area_"+this.uid();var i=t[n].hidden?" style='display:none'":"",s="";t[n].button&&(s="<div class='gantt_custom_button' index='"+n+"'><div class='gantt_custom_button_"+t[n].button+"'></div><div class='gantt_custom_button_label'>"+this.locale.labels["button_"+t[n].button]+"</div></div>"),this.config.wide_form&&(e+="<div class='gantt_wrap_section' "+i+">"),e+="<div id='"+t[n].id+"' class='gantt_cal_lsection'><label>"+s+this.locale.labels["section_"+t[n].name]+"</label></div>"+a.render.call(this,t[n]),
|
||||
e+="</div>"}}return e},gantt.resizeLightbox=function(){var t=this._lightbox;if(t){var e=t.childNodes[1];e.style.height="0px",e.style.height=e.scrollHeight+"px",t.style.height=e.scrollHeight+this.config.lightbox_additional_height+"px",e.style.height=e.scrollHeight+"px"}},gantt._center_lightbox=function(t){if(t){t.style.display="block";var e=window.pageYOffset||document.body.scrollTop||document.documentElement.scrollTop,n=window.pageXOffset||document.body.scrollLeft||document.documentElement.scrollLeft,a=window.innerHeight||document.documentElement.clientHeight;
|
||||
e?t.style.top=Math.round(e+Math.max((a-t.offsetHeight)/2,0))+"px":t.style.top=Math.round(Math.max((a-t.offsetHeight)/2,0)+9)+"px",document.documentElement.scrollWidth>document.body.offsetWidth?t.style.left=Math.round(n+(document.body.offsetWidth-t.offsetWidth)/2)+"px":t.style.left=Math.round((document.body.offsetWidth-t.offsetWidth)/2)+"px"}},gantt.showCover=function(){if(!this._cover){this._cover=document.createElement("DIV"),this._cover.className="gantt_cal_cover";var t=void 0!==document.height?document.height:document.body.offsetHeight,e=document.documentElement?document.documentElement.scrollHeight:0;
|
||||
this._cover.style.height=Math.max(t,e)+"px",document.body.appendChild(this._cover)}},gantt._init_lightbox_events=function(){gantt.lightbox_events={},gantt.lightbox_events.gantt_save_btn=function(t){gantt._save_lightbox()},gantt.lightbox_events.gantt_delete_btn=function(t){gantt.callEvent("onLightboxDelete",[gantt._lightbox_id])&&(gantt.isTaskExists(gantt._lightbox_id)?gantt.$click.buttons["delete"](gantt._lightbox_id):gantt.hideLightbox())},gantt.lightbox_events.gantt_cancel_btn=function(t){gantt._cancel_lightbox();
|
||||
},gantt.lightbox_events["default"]=function(t,e){if(e.getAttribute("dhx_button"))gantt.callEvent("onLightboxButton",[e.className,e,t]);else{var n,a,i,s=gantt._getClassName(e);if(-1!=s.indexOf("gantt_custom_button"))if(-1!=s.indexOf("gantt_custom_button_"))for(n=e.parentNode.getAttribute("index"),i=e;i&&-1==gantt._getClassName(i).indexOf("gantt_cal_lsection");)i=i.parentNode;else n=e.getAttribute("index"),i=e.parentNode,e=e.firstChild;var r=gantt._get_typed_lightbox_config();n&&(n=1*n,a=gantt.form_blocks[r[1*n].type],
|
||||
a.button_click(n,e,i,i.nextSibling))}},this.event(gantt.getLightbox(),"click",function(t){t=t||window.event;var e=t.target?t.target:t.srcElement,n=gantt._getClassName(e);if(n||(e=e.previousSibling,n=gantt._getClassName(e)),e&&n&&0===n.indexOf("gantt_btn_set")&&(e=e.firstChild,n=gantt._getClassName(e)),e&&n){var a=gantt.defined(gantt.lightbox_events[e.className])?gantt.lightbox_events[e.className]:gantt.lightbox_events["default"];return a(t,e)}return!1}),gantt.getLightbox().onkeydown=function(t){var e=t||window.event,n=t.target||t.srcElement,a=!!(gantt._getClassName(n).indexOf("gantt_btn_set")>-1);
|
||||
switch((t||e).keyCode){case 32:if((t||e).shiftKey)return;a&&n.click&&n.click();break;case gantt.keys.edit_save:if((t||e).shiftKey)return;a&&n.click?n.click():gantt._save_lightbox();break;case gantt.keys.edit_cancel:gantt._cancel_lightbox()}}},gantt._cancel_lightbox=function(){var t=this.getLightboxValues();this.callEvent("onLightboxCancel",[this._lightbox_id,t.$new]),gantt.isTaskExists(t.id)&&t.$new&&this._deleteTask(t.id,!0),this.refreshData(),this.hideLightbox()},gantt._save_lightbox=function(){
|
||||
var t=this.getLightboxValues();this.callEvent("onLightboxSave",[this._lightbox_id,t,!!t.$new])&&(t.$new?(delete t.$new,this._replace_branch_child(this.getParent(t.id),t.id),this.addTask(t)):this.isTaskExists(t.id)&&(this.mixin(this.getTask(t.id),t,!0),this.updateTask(t.id)),this.refreshData(),this.hideLightbox())},gantt._resolve_default_mapping=function(t){var e=t.map_to,n={time:!0,time_optional:!0,duration:!0,duration_optional:!0};return n[t.type]&&("auto"==t.map_to?e={start_date:"start_date",end_date:"end_date",
|
||||
duration:"duration"}:"string"==typeof t.map_to&&(e={start_date:t.map_to})),e},gantt.getLightboxValues=function(){var t={};gantt.isTaskExists(this._lightbox_id)&&(t=this.mixin({},this.getTask(this._lightbox_id)));for(var e=this._get_typed_lightbox_config(),n=0;n<e.length;n++){var a=document.getElementById(e[n].id);a=a?a.nextSibling:a;var i=this.form_blocks[e[n].type];if(i){var s=i.get_value.call(this,a,t,e[n]),r=gantt._resolve_default_mapping(e[n]);if("string"==typeof r&&"auto"!=r)t[r]=s;else if("object"==typeof r)for(var o in r)r[o]&&(t[r[o]]=s[o]);
|
||||
}}return t},gantt.hideLightbox=function(){var t=this.getLightbox();t&&(t.style.display="none"),this._waiAria.lightboxHiddenAttr(t),this._lightbox_id=null,this.hideCover(),this.callEvent("onAfterLightbox",[])},gantt.hideCover=function(){this._cover&&this._cover.parentNode.removeChild(this._cover),this._cover=null},gantt.resetLightbox=function(){gantt._lightbox&&!gantt._custom_lightbox&&gantt._lightbox.parentNode.removeChild(gantt._lightbox),gantt._lightbox=null},gantt._set_lightbox_values=function(t,e){
|
||||
var n=t,a=e.getElementsByTagName("span"),i=[];gantt.templates.lightbox_header?(i.push(""),i.push(gantt.templates.lightbox_header(n.start_date,n.end_date,n)),a[1].innerHTML="",a[2].innerHTML=gantt.templates.lightbox_header(n.start_date,n.end_date,n)):(i.push(this.templates.task_time(n.start_date,n.end_date,n)),i.push((this.templates.task_text(n.start_date,n.end_date,n)||"").substr(0,70)),a[1].innerHTML=this.templates.task_time(n.start_date,n.end_date,n),a[2].innerHTML=(this.templates.task_text(n.start_date,n.end_date,n)||"").substr(0,70)),
|
||||
a[1].innerHTML=i[0],a[2].innerHTML=i[1],gantt._waiAria.lightboxHeader(e,i.join(" "));for(var s=this._get_typed_lightbox_config(this.getLightboxType()),r=0;r<s.length;r++){var o=s[r];if(this.form_blocks[o.type]){var _=document.getElementById(o.id).nextSibling,l=this.form_blocks[o.type],d=gantt._resolve_default_mapping(s[r]),g=this.defined(n[d])?n[d]:o.default_value;l.set_value.call(gantt,_,g,n,o),o.focus&&l.focus.call(gantt,_)}}t.id&&(gantt._lightbox_id=t.id)},gantt._fill_lightbox=function(t,e){var n=this.getTask(t);
|
||||
this._set_lightbox_values(n,e)},gantt.getLightboxSection=function(t){var e=this._get_typed_lightbox_config(),n=0;for(n;n<e.length&&e[n].name!=t;n++);var a=e[n];if(!a)return null;this._lightbox||this.getLightbox();var i=document.getElementById(a.id),s=i.nextSibling,r={section:a,header:i,node:s,getValue:function(t){return gantt.form_blocks[a.type].get_value.call(gantt,s,t||{},a)},setValue:function(t,e){return gantt.form_blocks[a.type].set_value.call(gantt,s,t,e||{},a)}},o=this._lightbox_methods["get_"+a.type+"_control"];
|
||||
return o?o(r):r},gantt._lightbox_methods.get_template_control=function(t){return t.control=t.node,t},gantt._lightbox_methods.get_select_control=function(t){return t.control=t.node.getElementsByTagName("select")[0],t},gantt._lightbox_methods.get_textarea_control=function(t){return t.control=t.node.getElementsByTagName("textarea")[0],t},gantt._lightbox_methods.get_time_control=function(t){return t.control=t.node.getElementsByTagName("select"),t},gantt._init_dnd_events=function(){this.event(document.body,"mousemove",gantt._move_while_dnd),
|
||||
this.event(document.body,"mouseup",gantt._finish_dnd),gantt._init_dnd_events=function(){}},gantt._move_while_dnd=function(t){if(gantt._dnd_start_lb){document.gantt_unselectable||(document.body.className+=" gantt_unselectable",document.gantt_unselectable=!0);var e=gantt.getLightbox(),n=t&&t.target?[t.pageX,t.pageY]:[event.clientX,event.clientY];e.style.top=gantt._lb_start[1]+n[1]-gantt._dnd_start_lb[1]+"px",e.style.left=gantt._lb_start[0]+n[0]-gantt._dnd_start_lb[0]+"px"}},gantt._ready_to_dnd=function(t){
|
||||
var e=gantt.getLightbox();gantt._lb_start=[parseInt(e.style.left,10),parseInt(e.style.top,10)],gantt._dnd_start_lb=t&&t.target?[t.pageX,t.pageY]:[event.clientX,event.clientY]},gantt._finish_dnd=function(){gantt._lb_start&&(gantt._lb_start=gantt._dnd_start_lb=!1,document.body.className=document.body.className.replace(" gantt_unselectable",""),document.gantt_unselectable=!1)},gantt._focus=function(t,e){if(t&&t.focus)if(gantt.config.touch);else try{e&&t.select&&t.select(),t.focus()}catch(n){}},gantt.form_blocks={
|
||||
getTimePicker:function(t,e){var n=t.time_format;if(!n){var n=["%d","%m","%Y"];gantt._get_line(gantt._tasks.unit)<gantt._get_line("day")&&n.push("%H:%i")}t._time_format_order={size:0};var a=this.config,i=this.date.date_part(new Date(gantt._min_date.valueOf())),s=1440,r=0;gantt.config.limit_time_select&&(s=60*a.last_hour+1,r=60*a.first_hour,i.setHours(a.first_hour));for(var o="",_=0;_<n.length;_++){var l=n[_];_>0&&(o+=" ");var d="";switch(l){case"%Y":t._time_format_order[2]=_,t._time_format_order.size++;
|
||||
var g,h,c,u;t.year_range&&(isNaN(t.year_range)?t.year_range.push&&(c=t.year_range[0],u=t.year_range[1]):g=t.year_range),g=g||10,h=h||Math.floor(g/2),c=c||i.getFullYear()-h,u=u||c+g;for(var f=c;u>f;f++)d+="<option value='"+f+"'>"+f+"</option>";break;case"%m":t._time_format_order[1]=_,t._time_format_order.size++;for(var f=0;12>f;f++)d+="<option value='"+f+"'>"+this.locale.date.month_full[f]+"</option>";break;case"%d":t._time_format_order[0]=_,t._time_format_order.size++;for(var f=1;32>f;f++)d+="<option value='"+f+"'>"+f+"</option>";
|
||||
break;case"%H:%i":t._time_format_order[3]=_,t._time_format_order.size++;var f=r,p=i.getDate();for(t._time_values=[];s>f;){var v=this.templates.time_picker(i);d+="<option value='"+f+"'>"+v+"</option>",t._time_values.push(f),i.setTime(i.valueOf()+60*this._get_timepicker_step()*1e3);var m=i.getDate()!=p?1:0;f=24*m*60+60*i.getHours()+i.getMinutes()}}if(d){var k=gantt._waiAria.lightboxSelectAttrString(l),b=t.readonly?"disabled='disabled'":"",y=e?" style='display:none' ":"";o+="<select "+b+y+k+">"+d+"</select>";
|
||||
}}return o},_fill_lightbox_select:function(t,e,n,a,i){if(t[e+a[0]].value=n.getDate(),t[e+a[1]].value=n.getMonth(),t[e+a[2]].value=n.getFullYear(),gantt.defined(a[3])){var s=60*n.getHours()+n.getMinutes();s=Math.round(s/gantt._get_timepicker_step())*gantt._get_timepicker_step();var r=t[e+a[3]];r.value=s,r.setAttribute("data-value",s)}},template:{render:function(t){var e=(t.height||"30")+"px";return"<div class='gantt_cal_ltext gantt_cal_template' style='height:"+e+";'></div>"},set_value:function(t,e,n,a){
|
||||
t.innerHTML=e||""},get_value:function(t,e,n){return t.innerHTML||""},focus:function(t){}},textarea:{render:function(t){var e=(t.height||"130")+"px";return"<div class='gantt_cal_ltext' style='height:"+e+";'><textarea></textarea></div>"},set_value:function(t,e,n){this.form_blocks.textarea._get_input(t).value=e||""},get_value:function(t,e){return this.form_blocks.textarea._get_input(t).value},focus:function(t){var e=this.form_blocks.textarea._get_input(t);gantt._focus(e,!0)},_get_input:function(t){return t.querySelector("textarea");
|
||||
}},select:{render:function(t){for(var e=(t.height||"23")+"px",n="<div class='gantt_cal_ltext' style='height:"+e+";'><select style='width:100%;'>",a=0;a<t.options.length;a++)n+="<option value='"+t.options[a].key+"'>"+t.options[a].label+"</option>";return n+="</select></div>"},set_value:function(t,e,n,a){var i=t.firstChild;!i._dhx_onchange&&a.onchange&&(i.onchange=a.onchange,i._dhx_onchange=!0),"undefined"==typeof e&&(e=(i.options[0]||{}).value),i.value=e||""},get_value:function(t,e){return t.firstChild.value;
|
||||
},focus:function(t){var e=t.firstChild;gantt._focus(e,!0)}},time:{render:function(t){var e=this.form_blocks.getTimePicker.call(this,t),n=["<div style='height:"+(t.height||30)+"px;padding-top:0px;font-size:inherit;text-align:center;' class='gantt_section_time'>"];return n.push(e),t.single_date?(e=this.form_blocks.getTimePicker.call(this,t,!0),n.push("<span></span>")):n.push("<span style='font-weight:normal; font-size:10pt;'> – </span>"),n.push(e),n.push("</div>"),n.join("")},set_value:function(t,e,n,a){
|
||||
var i=a,s=t.getElementsByTagName("select"),r=a._time_format_order;a._time_format_size;if(i.auto_end_date)for(var o=function(){d=new Date(s[r[2]].value,s[r[1]].value,s[r[0]].value,0,0),g=gantt.calculateEndDate({start_date:d,duration:1,task:n}),this.form_blocks._fill_lightbox_select(s,r.size,g,r,i)},_=0;4>_;_++)s[_].onchange=o;var l=gantt._resolve_default_mapping(a);"string"==typeof l&&(l={start_date:l});var d=n[l.start_date]||new Date,g=n[l.end_date]||gantt.calculateEndDate({start_date:d,duration:1,
|
||||
task:n});this.form_blocks._fill_lightbox_select(s,0,d,r,i),this.form_blocks._fill_lightbox_select(s,r.size,g,r,i)},get_value:function(t,e,n){var a=t.getElementsByTagName("select"),i=n._time_format_order,s=0,r=0;if(gantt.defined(i[3])){var o=parseInt(a[i[3]].value,10);s=Math.floor(o/60),r=o%60}var _=new Date(a[i[2]].value,a[i[1]].value,a[i[0]].value,s,r);if(s=r=0,gantt.defined(i[3])){var o=parseInt(a[i.size+i[3]].value,10);s=Math.floor(o/60),r=o%60}var l=new Date(a[i[2]+i.size].value,a[i[1]+i.size].value,a[i[0]+i.size].value,s,r);
|
||||
_>=l&&(l=gantt.date.add(_,gantt._get_timepicker_step(),"minute"));var d=gantt._resolve_default_mapping(n),g={start_date:new Date(_),end_date:new Date(l)};return"string"==typeof d?g.start_date:g},focus:function(t){gantt._focus(t.getElementsByTagName("select")[0])}},duration:{render:function(t){var e=this.form_blocks.getTimePicker.call(this,t);e="<div class='gantt_time_selects'>"+e+"</div>";var n=this.locale.labels[this.config.duration_unit+"s"],a=t.single_date?' style="display:none"':"",i=t.readonly?" disabled='disabled'":"",s=this._waiAria.lightboxDurationInputAttrString(t),r="<div class='gantt_duration' "+a+"><input type='button' class='gantt_duration_dec' value='−'"+i+"><input type='text' value='5' class='gantt_duration_value'"+i+" "+s+"><input type='button' class='gantt_duration_inc' value='+'"+i+"> "+n+" <span></span></div>",o="<div style='height:"+(t.height||30)+"px;padding-top:0px;font-size:inherit;' class='gantt_section_time'>"+e+" "+r+"</div>";
|
||||
return o},set_value:function(t,e,n,a){function i(){var e=gantt.form_blocks.duration._get_start_date.call(gantt,t,a),i=gantt.form_blocks.duration._get_duration.call(gantt,t,a),s=gantt.calculateEndDate({start_date:e,duration:i,task:n});g.innerHTML=gantt.templates.task_date(s)}function s(t){var e=l.value;e=parseInt(e,10),window.isNaN(e)&&(e=0),e+=t,1>e&&(e=1),l.value=e,i()}var r=a,o=t.getElementsByTagName("select"),_=t.getElementsByTagName("input"),l=_[1],d=[_[0],_[2]],g=t.getElementsByTagName("span")[0],h=a._time_format_order;
|
||||
d[0].onclick=gantt.bind(function(){s(-1*this.config.duration_step)},this),d[1].onclick=gantt.bind(function(){s(1*this.config.duration_step)},this),o[0].onchange=i,o[1].onchange=i,o[2].onchange=i,o[3]&&(o[3].onchange=i),l.onkeydown=gantt.bind(function(t){t=t||window.event;var e=t.charCode||t.keyCode||t.which;return 40==e?(s(-1*this.config.duration_step),!1):38==e?(s(1*this.config.duration_step),!1):void window.setTimeout(function(t){i()},1)},this),l.onchange=gantt.bind(function(t){i()},this);var c=gantt._resolve_default_mapping(a);
|
||||
"string"==typeof c&&(c={start_date:c});var u=n[c.start_date]||new Date,f=n[c.end_date]||gantt.calculateEndDate({start_date:u,duration:1,task:n}),p=Math.round(n[c.duration])||gantt.calculateDuration({start_date:u,end_date:f,task:n});gantt.form_blocks._fill_lightbox_select(o,0,u,h,r),l.value=p,i()},_get_start_date:function(t,e){var n=t.getElementsByTagName("select"),a=e._time_format_order,i=0,s=0;if(gantt.defined(a[3])){var r=n[a[3]],o=parseInt(r.value,10);isNaN(o)&&r.hasAttribute("data-value")&&(o=parseInt(r.getAttribute("data-value"),10)),
|
||||
i=Math.floor(o/60),s=o%60}return new Date(n[a[2]].value,n[a[1]].value,n[a[0]].value,i,s)},_get_duration:function(t,e){var n=t.getElementsByTagName("input")[1];return n=parseInt(n.value,10),(!n||window.isNaN(n))&&(n=1),0>n&&(n*=-1),n},get_value:function(t,e,n){var a=gantt.form_blocks.duration._get_start_date(t,n),i=gantt.form_blocks.duration._get_duration(t,n),s=gantt.calculateEndDate({start_date:a,duration:i,task:e}),r=gantt._resolve_default_mapping(n),o={start_date:new Date(a),end_date:new Date(s),
|
||||
duration:i};return"string"==typeof r?o.start_date:o},focus:function(t){gantt._focus(t.getElementsByTagName("select")[0])}},parent:{_filter:function(t,e,n){var a=e.filter||function(){return!0};t=t.slice(0);for(var i=0;i<t.length;i++){var s=t[i];(s.id==n||gantt.isChildOf(s.id,n)||a(s.id,s)===!1)&&(t.splice(i,1),i--)}return t},_display:function(t,e){var n=[],a=[];e&&(n=gantt.getTaskByTime(),t.allow_root&&n.unshift({id:gantt.config.root_id,text:t.root_label||""}),n=this._filter(n,t,e),t.sort&&n.sort(t.sort));
|
||||
for(var i=t.template||gantt.templates.task_text,s=0;s<n.length;s++){var r=i.apply(gantt,[n[s].start_date,n[s].end_date,n[s]]);void 0===r&&(r=""),a.push({key:n[s].id,label:r})}return t.options=a,t.map_to=t.map_to||"parent",gantt.form_blocks.select.render.apply(this,arguments)},render:function(t){return gantt.form_blocks.parent._display(t,!1)},set_value:function(t,e,n,a){var i=document.createElement("div");i.innerHTML=gantt.form_blocks.parent._display(a,n.id);var s=i.removeChild(i.firstChild);return t.onselect=null,
|
||||
t.parentNode.replaceChild(s,t),gantt.form_blocks.select.set_value.apply(gantt,[s,e,n,a])},get_value:function(){return gantt.form_blocks.select.get_value.apply(gantt,arguments)},focus:function(){return gantt.form_blocks.select.focus.apply(gantt,arguments)}}},gantt._is_lightbox_timepicker=function(){for(var t=this._get_typed_lightbox_config(),e=0;e<t.length;e++)if("time"==t[e].name&&"time"==t[e].type)return!0;return!1},gantt._dhtmlx_confirm=function(t,e,n,a){if(!t)return n();var i={text:t};e&&(i.title=e),
|
||||
a&&(i.ok=a),n&&(i.callback=function(t){t&&n()}),gantt.confirm(i)},gantt._get_typed_lightbox_config=function(t){void 0===t&&(t=this.getLightboxType());var e=this._get_type_name(t);return gantt.config.lightbox[e+"_sections"]?gantt.config.lightbox[e+"_sections"]:gantt.config.lightbox.sections},gantt._silent_redraw_lightbox=function(t){var e=this.getLightboxType();if(this.getState().lightbox){var n=this.getState().lightbox,a=this.getLightboxValues(),i=this.copy(this.getTask(n));this.resetLightbox();var s=this.mixin(i,a,!0),r=this.getLightbox(t?t:void 0);
|
||||
this._center_lightbox(this.getLightbox()),this._set_lightbox_values(s,r)}else this.resetLightbox(),this.getLightbox(t?t:void 0);this.callEvent("onLightboxChange",[e,this.getLightboxType()])},gantt._extend_to_optional=function(t){var e=t,n={render:e.render,focus:e.focus,set_value:function(t,a,i,s){var r=gantt._resolve_default_mapping(s);if(!i[r.start_date]||"start_date"==r.start_date&&this._isAllowedUnscheduledTask(i)){n.disable(t,s);var o={};for(var _ in r)o[r[_]]=i[_];return e.set_value.call(gantt,t,a,o,s);
|
||||
}return n.enable(t,s),e.set_value.call(gantt,t,a,i,s)},get_value:function(t,n,a){return a.disabled?{start_date:null}:e.get_value.call(gantt,t,n,a)},update_block:function(t,e){if(gantt.callEvent("onSectionToggle",[gantt._lightbox_id,e]),t.style.display=e.disabled?"none":"block",e.button){var n=t.previousSibling.querySelector(".gantt_custom_button_label"),a=gantt.locale.labels,i=e.disabled?a[e.name+"_enable_button"]:a[e.name+"_disable_button"];n.innerHTML=i}gantt.resizeLightbox()},disable:function(t,e){
|
||||
e.disabled=!0,n.update_block(t,e)},enable:function(t,e){e.disabled=!1,n.update_block(t,e)},button_click:function(t,e,a,i){if(gantt.callEvent("onSectionButton",[gantt._lightbox_id,a])!==!1){var s=gantt._get_typed_lightbox_config()[t];s.disabled?n.enable(i,s):n.disable(i,s)}}};return n},gantt.form_blocks.duration_optional=gantt._extend_to_optional(gantt.form_blocks.duration),gantt.form_blocks.time_optional=gantt._extend_to_optional(gantt.form_blocks.time),gantt.dataProcessor=function(t){return this.serverProcessor=t,
|
||||
this.action_param="!nativeeditor_status",this.object=null,this.updatedRows=[],this.autoUpdate=!0,this.updateMode="cell",this._tMode="GET",this._headers=null,this._payload=null,this.post_delim="_",this._waitMode=0,this._in_progress={},this._invalid={},this.mandatoryFields=[],this.messages=[],this.styles={updated:"font-weight:bold;",inserted:"font-weight:bold;",deleted:"text-decoration : line-through;",invalid:"background-color:FFE0E0;",invalid_cell:"border-bottom:2px solid red;",error:"color:red;",
|
||||
clear:"font-weight:normal;text-decoration:none;"},this.enableUTFencoding(!0),gantt._eventable(this),this},gantt.dataProcessor.prototype={setTransactionMode:function(t,e){"object"==typeof t?(this._tMode=t.mode||this._tMode,gantt.defined(t.headers)&&(this._headers=t.headers),gantt.defined(t.payload)&&(this._payload=t.payload)):(this._tMode=t,this._tSend=e),"REST"==this._tMode&&(this._tSend=!1,this._endnm=!0),"JSON"==this._tMode&&(this._tSend=!1,this._endnm=!0,this._headers=this._headers||{},this._headers["Content-type"]="application/json");
|
||||
},escape:function(t){return this._utf?encodeURIComponent(t):escape(t)},enableUTFencoding:function(t){this._utf=!!t},setDataColumns:function(t){this._columns="string"==typeof t?t.split(","):t},getSyncState:function(){return!this.updatedRows.length},enableDataNames:function(t){this._endnm=!!t},enablePartialDataSend:function(t){this._changed=!!t},setUpdateMode:function(t,e){this.autoUpdate="cell"==t,this.updateMode=t,this.dnd=e},ignore:function(t,e){this._silent_mode=!0,t.call(e||window),this._silent_mode=!1;
|
||||
},setUpdated:function(t,e,n){if(!this._silent_mode){var a=this.findRow(t);n=n||"updated";var i=this.obj.getUserData(t,this.action_param);i&&"updated"==n&&(n=i),e?(this.set_invalid(t,!1),this.updatedRows[a]=t,this.obj.setUserData(t,this.action_param,n),this._in_progress[t]&&(this._in_progress[t]="wait")):this.is_invalid(t)||(this.updatedRows.splice(a,1),this.obj.setUserData(t,this.action_param,"")),e||this._clearUpdateFlag(t),this.markRow(t,e,n),e&&this.autoUpdate&&this.sendData(t)}},_clearUpdateFlag:function(t){},
|
||||
markRow:function(t,e,n){var a="",i=this.is_invalid(t);if(i&&(a=this.styles[i],e=!0),this.callEvent("onRowMark",[t,e,n,i])&&(a=this.styles[e?n:"clear"]+a,this.obj[this._methods[0]](t,a),i&&i.details)){a+=this.styles[i+"_cell"];for(var s=0;s<i.details.length;s++)i.details[s]&&this.obj[this._methods[1]](t,s,a)}},getState:function(t){return this.obj.getUserData(t,this.action_param)},is_invalid:function(t){return this._invalid[t]},set_invalid:function(t,e,n){n&&(e={value:e,details:n,toString:function(){
|
||||
return this.value.toString()}}),this._invalid[t]=e},checkBeforeUpdate:function(t){return!0},sendData:function(t){return!this._waitMode||"tree"!=this.obj.mytype&&!this.obj._h2?(this.obj.editStop&&this.obj.editStop(),"undefined"==typeof t||this._tSend?this.sendAllData():this._in_progress[t]?!1:(this.messages=[],!this.checkBeforeUpdate(t)&&this.callEvent("onValidationError",[t,this.messages])?!1:void this._beforeSendData(this._getRowData(t),t))):void 0},_beforeSendData:function(t,e){return this.callEvent("onBeforeUpdate",[e,this.getState(e),t])?void this._sendData(t,e):!1;
|
||||
},serialize:function(t,e){if("string"==typeof t)return t;if("undefined"!=typeof e)return this.serialize_one(t,"");var n=[],a=[];for(var i in t)t.hasOwnProperty(i)&&(n.push(this.serialize_one(t[i],i+this.post_delim)),a.push(i));return n.push("ids="+this.escape(a.join(","))),gantt.security_key&&n.push("dhx_security="+gantt.security_key),n.join("&")},serialize_one:function(t,e){if("string"==typeof t)return t;var n=[];for(var a in t)if(t.hasOwnProperty(a)){if(("id"==a||a==this.action_param)&&"REST"==this._tMode)continue;
|
||||
n.push(this.escape((e||"")+a)+"="+this.escape(t[a]))}return n.join("&")},_applyPayload:function(t){if(this._payload)for(var e in this._payload)t=t+gantt._urlSeparator(t)+this.escape(e)+"="+this.escape(this._payload[e]);return t},_sendData:function(t,e){if(t){if(!this.callEvent("onBeforeDataSending",e?[e,this.getState(e),t]:[null,null,t]))return!1;e&&(this._in_progress[e]=(new Date).valueOf());var n=this,a=function(a){var i=[];if(e)i.push(e);else if(t)for(var s in t)i.push(s);return n.afterUpdate(n,a,i);
|
||||
},i=this.serverProcessor+(this._user?gantt._urlSeparator(this.serverProcessor)+["dhx_user="+this._user,"dhx_version="+this.obj.getUserData(0,"version")].join("&"):""),s=this._applyPayload(i);if("GET"==this._tMode)gantt.ajax.query({url:s+gantt._urlSeparator(s)+this.serialize(t,e),method:"GET",callback:a,headers:this._headers});else if("POST"==this._tMode)gantt.ajax.query({url:s,method:"POST",headers:this._headers,data:this.serialize(t,e),callback:a});else if("JSON"==this._tMode){var r=t[this.action_param],o={};
|
||||
for(var _ in t)o[_]=t[_];delete o[this.action_param],delete o.id,delete o.gr_id,gantt.ajax.query({url:s,method:"POST",headers:this._headers,callback:a,data:JSON.stringify({id:e,action:r,data:o})})}else if("REST"==this._tMode){var l=this.getState(e),d=i.replace(/(\&|\?)editing\=true/,""),o="",g="post";"inserted"==l?o=this.serialize(t,e):"deleted"==l?(g="DELETE",d=d+("/"==d.slice(-1)?"":"/")+e):(g="PUT",o=this.serialize(t,e),d=d+("/"==d.slice(-1)?"":"/")+e),d=this._applyPayload(d),gantt.ajax.query({
|
||||
url:d,method:g,headers:this._headers,data:o,callback:a})}this._waitMode++}},sendAllData:function(){if(this.updatedRows.length){this.messages=[];for(var t=!0,e=0;e<this.updatedRows.length;e++)t&=this.checkBeforeUpdate(this.updatedRows[e]);if(!t&&!this.callEvent("onValidationError",["",this.messages]))return!1;if(this._tSend)this._sendData(this._getAllData());else for(var e=0;e<this.updatedRows.length;e++)if(!this._in_progress[this.updatedRows[e]]){if(this.is_invalid(this.updatedRows[e]))continue;if(this._beforeSendData(this._getRowData(this.updatedRows[e]),this.updatedRows[e]),
|
||||
this._waitMode&&("tree"==this.obj.mytype||this.obj._h2))return}}},_getAllData:function(t){for(var e={},n=!1,a=0;a<this.updatedRows.length;a++){var i=this.updatedRows[a];if(!this._in_progress[i]&&!this.is_invalid(i)){var s=this._getRowData(i);this.callEvent("onBeforeUpdate",[i,this.getState(i),s])&&(e[i]=s,n=!0,this._in_progress[i]=(new Date).valueOf())}}return n?e:null},setVerificator:function(t,e){this.mandatoryFields[t]=e||function(t){return""!==t}},clearVerificator:function(t){this.mandatoryFields[t]=!1;
|
||||
},findRow:function(t){var e=0;for(e=0;e<this.updatedRows.length&&t!=this.updatedRows[e];e++);return e},defineAction:function(t,e){this._uActions||(this._uActions=[]),this._uActions[t]=e},afterUpdateCallback:function(t,e,n,a){var i=t,s="error"!=n&&"invalid"!=n;if(s||this.set_invalid(t,n),this._uActions&&this._uActions[n]&&!this._uActions[n](a))return delete this._in_progress[i];"wait"!=this._in_progress[i]&&this.setUpdated(t,!1);var r=t;switch(n){case"inserted":case"insert":e!=t&&(this.setUpdated(t,!1),
|
||||
this.obj[this._methods[2]](t,e),t=e);break;case"delete":case"deleted":return this.obj.setUserData(t,this.action_param,"true_deleted"),this.obj[this._methods[3]](t),delete this._in_progress[i],this.callEvent("onAfterUpdate",[t,n,e,a])}"wait"!=this._in_progress[i]?(s&&this.obj.setUserData(t,this.action_param,""),delete this._in_progress[i]):(delete this._in_progress[i],this.setUpdated(e,!0,this.obj.getUserData(t,this.action_param))),this.callEvent("onAfterUpdate",[r,n,e,a])},afterUpdate:function(t,e,n){
|
||||
if(window.JSON){var a;try{a=JSON.parse(e.xmlDoc.responseText)}catch(i){e.xmlDoc.responseText.length||(a={})}if(a){var s=a.action||this.getState(n)||"updated",r=a.sid||n[0],o=a.tid||n[0];return t.afterUpdateCallback(r,o,s,a),void t.finalizeUpdate()}}var _=gantt.ajax.xmltop("data",e.xmlDoc);if(!_)return this.cleanUpdate(n);var l=gantt.ajax.xpath("//data/action",_);if(!l.length)return this.cleanUpdate(n);for(var d=0;d<l.length;d++){var g=l[d],s=g.getAttribute("type"),r=g.getAttribute("sid"),o=g.getAttribute("tid");
|
||||
t.afterUpdateCallback(r,o,s,g)}t.finalizeUpdate()},cleanUpdate:function(t){if(t)for(var e=0;e<t.length;e++)delete this._in_progress[t[e]]},finalizeUpdate:function(){this._waitMode&&this._waitMode--,("tree"==this.obj.mytype||this.obj._h2)&&this.updatedRows.length&&this.sendData(),this.callEvent("onAfterUpdateFinish",[]),this.updatedRows.length||this.callEvent("onFullSync",[])},init:function(t){this.obj=t,this.obj._dp_init&&this.obj._dp_init(this)},setOnAfterUpdate:function(t){this.attachEvent("onAfterUpdate",t);
|
||||
},enableDebug:function(t){},setOnBeforeUpdateHandler:function(t){this.attachEvent("onBeforeDataSending",t)},setAutoUpdate:function(t,e){t=t||2e3,this._user=e||(new Date).valueOf(),this._need_update=!1,this._update_busy=!1,this.attachEvent("onAfterUpdate",function(t,e,n,a){this.afterAutoUpdate(t,e,n,a)}),this.attachEvent("onFullSync",function(){this.fullSync()});var n=this;window.setInterval(function(){n.loadUpdate()},t)},afterAutoUpdate:function(t,e,n,a){return"collision"==e?(this._need_update=!0,
|
||||
!1):!0},fullSync:function(){return this._need_update&&(this._need_update=!1,this.loadUpdate()),!0},getUpdates:function(t,e){return this._update_busy?!1:(this._update_busy=!0,void gantt.ajax.get(t,e))},_v:function(t){return t.firstChild?t.firstChild.nodeValue:""},_a:function(t){for(var e=[],n=0;n<t.length;n++)e[n]=this._v(t[n]);return e},loadUpdate:function(){var t=this,e=this.obj.getUserData(0,"version"),n=this.serverProcessor+gantt._urlSeparator(this.serverProcessor)+["dhx_user="+this._user,"dhx_version="+e].join("&");
|
||||
n=n.replace("editing=true&",""),this.getUpdates(n,function(e){var n=gantt.ajax.xpath("//userdata",e);t.obj.setUserData(0,"version",t._v(n[0]));var a=gantt.ajax.xpath("//update",e);if(a.length){t._silent_mode=!0;for(var i=0;i<a.length;i++){var s=a[i].getAttribute("status"),r=a[i].getAttribute("id"),o=a[i].getAttribute("parent");switch(s){case"inserted":t.callEvent("insertCallback",[a[i],r,o]);break;case"updated":t.callEvent("updateCallback",[a[i],r,o]);break;case"deleted":t.callEvent("deleteCallback",[a[i],r,o]);
|
||||
}}t._silent_mode=!1}t._update_busy=!1,t=null})}},gantt._init_dp_live_update_hooks=function(t){t.attachEvent("insertCallback",gantt._insert_callback),t.attachEvent("updateCallback",gantt._update_callback),t.attachEvent("deleteCallback",gantt._delete_callback)},gantt._update_callback=function(t,e){var n=t.data||gantt.xml._xmlNodeToJSON(t.firstChild);if(gantt.isTaskExists(e)){var a=gantt.getTask(e);for(var i in n){var s=n[i];switch(i){case"id":continue;case"start_date":case"end_date":s=gantt.templates.xml_date(s);
|
||||
break;case"duration":a.end_date=gantt.calculateEndDate({start_date:a.start_date,duration:s,task:a})}a[i]=s}gantt.updateTask(e),gantt.refreshData()}},gantt._insert_callback=function(t,e,n,a){var i=t.data||gantt.xml._xmlNodeToJSON(t.firstChild),s={add:gantt.addTask,isExist:gantt.isTaskExists};"links"==a&&(s.add=gantt.addLink,s.isExist=gantt.isLinkExists),s.isExist.call(gantt,e)||(i.id=e,s.add.call(gantt,i))},gantt._delete_callback=function(t,e,n,a){var i={"delete":gantt.deleteTask,isExist:gantt.isTaskExists
|
||||
};"links"==a&&(i["delete"]=gantt.deleteLink,i.isExist=gantt.isLinkExists),i.isExist.call(gantt,e)&&i["delete"].call(gantt,e)},gantt.assert=function(t,e){t||gantt.config.show_errors&&gantt.callEvent("onError",[e])!==!1&&gantt.message({type:"error",text:e,expire:-1})},gantt.init=function(t,e,n){this.callEvent("onBeforeGanttReady",[]),e&&n&&(this.config.start_date=this._min_date=new Date(e),this.config.end_date=this._max_date=new Date(n)),this._init_skin(),this.date.init(),this.config.scroll_size||(this.config.scroll_size=this._detectScrollSize());
|
||||
var a;gantt.event(window,"resize",function(){clearTimeout(a),a=setTimeout(function(){gantt.render()},300)}),this.init=function(t){this.$container&&this.$container.parentNode&&(this.$container.parentNode.removeChild(this.$container),this.$container=null),this._reinit(t)},this._reinit(t)},gantt._reinit=function(t){this._init_html_area(t),this._set_sizes(),this._clear_renderers(),this.resetLightbox(),this._update_flags(),this._init_touch_events(),this._init_templates(),this._init_grid(),this._init_tasks(),
|
||||
this._set_scroll_events(),gantt.event(this.$container,"click",this._on_click),gantt.event(this.$container,"dblclick",this._on_dblclick),gantt.event(this.$container,"mousemove",this._on_mousemove),gantt.event(this.$container,"contextmenu",this._on_contextmenu),this.callEvent("onGanttReady",[]),this.render()},gantt._init_html_area=function(t){"string"==typeof t?this._obj=document.getElementById(t):this._obj=t,this.assert(this._obj,"Invalid html container: "+t);var e=this._waiAria.gridAttrString(),n=this._waiAria.gridDataAttrString(),a="<div class='gantt_container'><div class='gantt_grid' "+e+"></div><div class='gantt_task'></div>";
|
||||
a+="<div class='gantt_ver_scroll'><div></div></div><div class='gantt_hor_scroll'><div></div></div></div>",this._obj.innerHTML=a,this.$container=this._obj.firstChild;var i=this.$container.childNodes;this.$grid=i[0],this.$task=i[1],this.$scroll_ver=i[2],this.$scroll_hor=i[3],this.$grid.innerHTML="<div class='gantt_grid_scale' "+gantt._waiAria.gridScaleRowAttrString()+"></div><div class='gantt_grid_data' "+n+"></div>",this.$grid_scale=this.$grid.childNodes[0],this.$grid_data=this.$grid.childNodes[1],
|
||||
this.$task.innerHTML="<div class='gantt_task_scale'></div><div class='gantt_data_area'><div class='gantt_task_bg'></div><div class='gantt_links_area'></div><div class='gantt_bars_area'></div></div>",this.$task_scale=this.$task.childNodes[0],this.$task_data=this.$task.childNodes[1],this.$task_bg=this.$task_data.childNodes[0],this.$task_links=this.$task_data.childNodes[1],this.$task_bars=this.$task_data.childNodes[2]},gantt.$click={buttons:{edit:function(t){gantt.showLightbox(t)},"delete":function(t){
|
||||
var e=gantt.locale.labels.confirm_deleting,n=gantt.locale.labels.confirm_deleting_title;gantt._dhtmlx_confirm(e,n,function(){if(!gantt.isTaskExists(t))return void gantt.hideLightbox();var e=gantt.getTask(t);e.$new?(gantt._deleteTask(t,!0),gantt.refreshData()):gantt.deleteTask(t),gantt.hideLightbox()})}}},gantt._calculate_content_height=function(){var t=this.config.scale_height,e=this._order.length*this.config.row_height,n=this._scroll_hor?this.config.scroll_size+1:0;return this._is_grid_visible()||this._is_chart_visible()?t+e+2+n:0;
|
||||
},gantt._calculate_content_width=function(){var t=this._get_grid_width(),e=this._tasks?this._tasks.full_width:0;this._scroll_ver?this.config.scroll_size+1:0;return this._is_chart_visible()||(e=0),this._is_grid_visible()||(t=0),t+e+1},gantt._get_resize_options=function(){var t={x:!1,y:!1};return"xy"==this.config.autosize?t.x=t.y=!0:"y"==this.config.autosize||this.config.autosize===!0?t.y=!0:"x"==this.config.autosize&&(t.x=!0),t},gantt._clean_el_size=function(t){return 1*(t||"").toString().replace("px","")||0;
|
||||
},gantt._get_box_styles=function(){var t=null;t=window.getComputedStyle?window.getComputedStyle(this._obj,null):{width:this._obj.clientWidth,height:this._obj.clientHeight};var e=["width","height","paddingTop","paddingBottom","paddingLeft","paddingRight","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],n={boxSizing:"border-box"==t.boxSizing};t.MozBoxSizing&&(n.boxSizing="border-box"==t.MozBoxSizing);for(var a=0;a<e.length;a++)n[e[a]]=t[e[a]]?this._clean_el_size(t[e[a]]):0;
|
||||
var i={horPaddings:n.paddingLeft+n.paddingRight+n.borderLeftWidth+n.borderRightWidth,vertPaddings:n.paddingTop+n.paddingBottom+n.borderTopWidth+n.borderBottomWidth,borderBox:n.boxSizing,innerWidth:n.width,innerHeight:n.height,outerWidth:n.width,outerHeight:n.height};return i.borderBox?(i.innerWidth-=i.horPaddings,i.innerHeight-=i.vertPaddings):(i.outerWidth+=i.horPaddings,i.outerHeight+=i.vertPaddings),i},gantt._do_autosize=function(){var t=this._get_resize_options(),e=this._get_box_styles();if(t.y){
|
||||
var n=this._calculate_content_height();e.borderBox&&(n+=e.vertPaddings),this._obj.style.height=n+"px"}if(t.x){var a=this._calculate_content_width();e.borderBox&&(a+=e.horPaddings),this._obj.style.width=a+"px"}},gantt._set_sizes=function(){this._do_autosize();var t=this._get_box_styles();if(this._y=t.innerHeight,!(this._y<20)){this.$grid.style.height=this.$task.style.height=Math.max(this._y-this.$scroll_hor.offsetHeight-2,0)+"px";var e=Math.max(this._y-(this.config.scale_height||0)-this.$scroll_hor.offsetHeight-2,0);
|
||||
this.$grid_data.style.height=this.$task_data.style.height=e+"px";var n=Math.max(this._get_grid_width()-1,0);this.$grid.style.width=n+"px",this.$grid.style.display=0===n?"none":"",t=this._get_box_styles(),this._x=t.innerWidth,this._x<20||(this.$grid_data.style.width=Math.max(this._get_grid_width()-1,0)+"px",this.$task.style.width=Math.max(this._x-this._get_grid_width()-2,0)+"px")}},gantt.getScrollState=function(){return this.$task&&this.$task_data?{x:this.$task.scrollLeft,y:this.$task_data.scrollTop
|
||||
}:null},gantt._save_scroll_state=function(t,e){var n={};this._cached_scroll_pos=this._cached_scroll_pos||{},void 0!==t&&(n.x=Math.max(t,0)),void 0!==e&&(n.y=Math.max(e,0)),this.mixin(this._cached_scroll_pos,n,!0)},gantt._restore_scroll_state=function(){var t={x:0,y:0};return this._cached_scroll_pos&&(t.x=this._cached_scroll_pos.x||t.x,t.y=this._cached_scroll_pos.y||t.y),t},gantt.scrollTo=function(t,e){var n=this._restore_scroll_state();1*t==t&&(this.$task.scrollLeft=t,this._save_scroll_state(t,void 0)),
|
||||
1*e==e&&(this.$scroll_ver.scrollTop=e,this.$task_data.scrollTop=e,this.$grid_data.scrollTop=e,this._save_scroll_state(void 0,this.config.show_chart?this.$task_data.scrollTop:this.$scroll_ver.scrollTop));var a=gantt._restore_scroll_state();this.callEvent("onGanttScroll",[n.x,n.y,a.x,a.y])},gantt.showDate=function(t){var e=this.posFromDate(t),n=Math.max(e-this.config.task_scroll_offset,0);this.scrollTo(n)},gantt.showTask=function(t){var e,n=this._get_task_pos(this.getTask(t)),a=Math.max(n.x-this.config.task_scroll_offset,0),i=this._scroll_sizes().y;
|
||||
e=i?n.y-(i-this.config.row_height)/2:n.y,this.scrollTo(a,e)},gantt._on_resize=gantt.setSizes=function(){gantt._set_sizes(),gantt._scroll_resize(),gantt._set_sizes()},gantt.render=function(){this.callEvent("onBeforeGanttRender",[]);var t=this.copy(this._restore_scroll_state()),e=null;if(t&&(e=gantt.dateFromPos(t.x+this.config.task_scroll_offset)),this._render_grid(),this._render_tasks_scales(),this._scroll_resize(),this._on_resize(),this._render_data(),this.config.preserve_scroll&&t){var n=gantt._restore_scroll_state(),a=gantt.dateFromPos(n.x);
|
||||
(+e!=+a||n.y!=t.y)&&(e&&this.showDate(e),gantt.scrollTo(void 0,t.y))}this.callEvent("onGanttRender",[])},gantt._set_scroll_events=function(){function t(t){var n=gantt._get_resize_options();gantt._wheel_time=new Date;var a=e?-20*t.deltaX:2*t.wheelDeltaX,i=e?-40*t.deltaY:t.wheelDelta;if(!t.shiftKey||t.deltaX||t.wheelDeltaX||(a=2*i,i=0),a&&Math.abs(a)>Math.abs(i)){if(n.x)return!0;if(!gantt.$scroll_hor||!gantt.$scroll_hor.offsetWidth)return!0;var s=a/-40,r=gantt.$task.scrollLeft,o=r+30*s;if(gantt.scrollTo(o,null),
|
||||
gantt.$scroll_hor.scrollLeft=o,r==gantt.$task.scrollLeft)return!0}else{if(n.y)return!0;if(!gantt.$scroll_ver||!gantt.$scroll_ver.offsetHeight)return!0;var s=i/-40;"undefined"==typeof i&&(s=t.detail);var _=gantt.$scroll_ver.scrollTop,l=gantt.$scroll_ver.scrollTop+30*s;if(!gantt.config.prevent_default_scroll&&gantt._cached_scroll_pos&&(gantt._cached_scroll_pos.y==l||gantt._cached_scroll_pos.y<=0&&0>=l))return!0;if(gantt.scrollTo(null,l),gantt.$scroll_ver.scrollTop=l,_==gantt.$scroll_ver.scrollTop)return!0;
|
||||
}return t.preventDefault&&t.preventDefault(),t.cancelBubble=!0,!1}this.event(this.$scroll_hor,"scroll",function(){if(new Date-(gantt._wheel_time||0)<100)return!0;if(!gantt._touch_scroll_active){var t=gantt.$scroll_hor.scrollLeft;gantt.scrollTo(t)}}),this.event(this.$scroll_ver,"scroll",function(){if(!gantt._touch_scroll_active){var t=gantt.$scroll_ver.scrollTop,e=gantt.$scroll_ver.prevTop;t!=e&&(gantt.$scroll_ver.prevTop=t,gantt.scrollTo(null,t))}}),this.event(this.$task,"scroll",function(){var t=gantt.$task.scrollLeft,e=gantt.$scroll_hor.scrollLeft;
|
||||
e!=t&&(gantt.$scroll_hor.scrollLeft=t)}),this.event(this.$task_data,"scroll",function(){var t=gantt.$task_data.scrollTop,e=gantt.$scroll_ver.scrollTop;e!=t&&(gantt.$scroll_ver.scrollTop=t)});var e=gantt.env.isFF;e?this.event(gantt.$container,"wheel",t):this.event(gantt.$container,"mousewheel",t)},gantt._scroll_resize=function(){if(!(this._x<20||this._y<20)){var t=this._scroll_sizes();t.x?(this.$scroll_hor.style.display="block",this.$scroll_hor.style.height=t.scroll_size+"px",this.$scroll_hor.style.width=t.x+"px",
|
||||
this.$scroll_hor.firstChild.style.width=t.x_inner+"px"):(this.$scroll_hor.style.display="none",this.$scroll_hor.style.height=this.$scroll_hor.style.width="0px"),t.y?(this.$scroll_ver.style.display="block",this.$scroll_ver.style.width=t.scroll_size+"px",this.$scroll_ver.style.height=t.y+"px",this.$scroll_ver.style.top=this.config.scale_height+"px",this.$scroll_ver.firstChild.style.height=t.y_inner+"px"):(this.$scroll_ver.style.display="none",this.$scroll_ver.style.width=this.$scroll_ver.style.height="0px");
|
||||
}},gantt._scroll_sizes=function(){var t=this._get_grid_width(),e=Math.max(this._x-t,0),n=Math.max(this._y-this.config.scale_height,0),a=this.config.scroll_size+1,i=this._get_resize_options(),s=this.config.row_height*this._order.length,r=this._scroll_ver=i.y?!1:s>n,o=Math.max(this._tasks.full_width-(r?0:a),0),_=this._scroll_hor=i.x?!1:o>e,l={x:!1,y:!1,scroll_size:a,x_inner:o+t+a+2,y_inner:s};return _&&(l.x=Math.max(this._x-(r?a:2),0)),r&&(l.y=Math.max(this._y-(_?a:2)-this.config.scale_height,0)),l;
|
||||
},gantt._getClassName=function(t){if(!t)return"";var e=t.className||"";return e.baseVal&&(e=e.baseVal),e.indexOf||(e=""),gantt._trim(e)},gantt.locate=function(t){var e=gantt._get_target_node(t),n=gantt._getClassName(e);if((n||"").indexOf("gantt_task_cell")>=0)return null;for(var a=arguments[1]||this.config.task_attribute;e;){if(e.getAttribute){var i=e.getAttribute(a);if(i)return i}e=e.parentNode}return null},gantt._get_target_node=function(t){var e;return t.tagName?e=t:(t=t||window.event,e=t.target||t.srcElement),
|
||||
e},gantt._trim=function(t){var e=String.prototype.trim||function(){return this.replace(/^\s+|\s+$/g,"")};return e.apply(t)},gantt._locate_css=function(t,e,n){void 0===n&&(n=!0);for(var a=gantt._get_target_node(t),i="";a;){if(i=gantt._getClassName(a)){var s=i.indexOf(e);if(s>=0){if(!n)return a;var r=0===s||!gantt._trim(i.charAt(s-1)),o=s+e.length>=i.length||!gantt._trim(i.charAt(s+e.length));if(r&&o)return a}}a=a.parentNode}return null},gantt._locateHTML=function(t,e){var n=gantt._get_target_node(t);
|
||||
for(e=e||this.config.task_attribute;n;){if(n.getAttribute){var a=n.getAttribute(e);if(a)return n}n=n.parentNode}return null},gantt.getTaskRowNode=function(t){for(var e=this.$grid_data.childNodes,n=this.config.task_attribute,a=0;a<e.length;a++)if(e[a].getAttribute){var i=e[a].getAttribute(n);if(i==t)return e[a]}return null},gantt.getState=function(){return{drag_id:this._tasks_dnd.drag?this._tasks_dnd.drag.id:void 0,drag_mode:this._tasks_dnd.drag?this._tasks_dnd.drag.mode:void 0,drag_from_start:this._tasks_dnd.drag?this._tasks_dnd.drag.left:void 0,
|
||||
selected_task:this._selected_task,min_date:this._min_date?new Date(this._min_date):void 0,max_date:this._max_date?new Date(this._max_date):void 0,lightbox:this._lightbox_id,touch_drag:this._touch_drag,scale_unit:this._tasks?this._tasks.unit:void 0,scale_step:this._tasks?this._tasks.step:void 0}},gantt._checkTimeout=function(t,e){if(!e)return!0;var n=1e3/e;return 1>n?!0:t._on_timeout?!1:(setTimeout(function(){delete t._on_timeout},n),t._on_timeout=!0,!0)},gantt.selectTask=function(t){if(!this.config.select_task)return!1;
|
||||
if(t){if(this._selected_task==t)return this._selected_task;if(!this.callEvent("onBeforeTaskSelected",[t]))return!1;this.unselectTask(),this._selected_task=t,this.refreshTask(t),this.callEvent("onTaskSelected",[t])}return this._selected_task},gantt.unselectTask=function(t){var t=t||this._selected_task;t&&(this._selected_task=null,this.refreshTask(t),this.callEvent("onTaskUnselected",[t]))},gantt.getSelectedId=function(){return this.defined(this._selected_task)?this._selected_task:null},gantt.changeLightboxType=function(t){
|
||||
return this.getLightboxType()==t?!0:void gantt._silent_redraw_lightbox(t)},gantt._is_render_active=function(){return!this._skip_render},gantt._correct_dst_change=function(t,e,n,a){var i=gantt._get_line(a)*n;if(i>3600&&86400>i){var s=t.getTimezoneOffset()-e;s&&(t=gantt.date.add(t,s,"minute"))}return t},function(){var t={};gantt._disableMethod=function(e,n){n="function"==typeof n?n:function(){},t[e]||(t[e]=this[e],this[e]=n)},gantt._restoreMethod=function(e){t[e]&&(this[e]=t[e],t[e]=null)},gantt._disableMethods=function(t){
|
||||
for(var e in t)this._disableMethod(e,t[e])},gantt._restoreMethods=function(){for(var e in t)this._restoreMethod(e)}}(),gantt._batchUpdatePayload=function(t){try{t()}catch(e){window.console.error(e)}},gantt.batchUpdate=function(t,e){if(!this._is_render_active())return void this._batchUpdatePayload(t);var n,a=this._dp&&"off"!=this._dp.updateMode;a&&(n=this._dp.updateMode,this._dp.setUpdateMode("off"));var i={},s={_sync_order:!0,_sync_links:!0,_adjust_scales:!0,render:!0,_render_data:!0,refreshTask:!0,
|
||||
refreshLink:!0,resetProjectDates:function(t){i[t.id]=t}};this._disableMethods(s),this._skip_render=!0,this.callEvent("onBeforeBatchUpdate",[]),this._batchUpdatePayload(t),this.callEvent("onAfterBatchUpdate",[]),this._restoreMethods(),this._sync_order(),this._sync_links();for(var r in i)this.resetProjectDates(i[r]);this._adjust_scales(),this._skip_render=!1,e||this.render(),a&&(this._dp.setUpdateMode(n),this._dp.setGanttMode("tasks"),this._dp.sendData(),this._dp.setGanttMode("links"),this._dp.sendData());
|
||||
},gantt.env={isIE:navigator.userAgent.indexOf("MSIE")>=0||navigator.userAgent.indexOf("Trident")>=0,isIE6:!window.XMLHttpRequest&&navigator.userAgent.indexOf("MSIE")>=0,isIE7:navigator.userAgent.indexOf("MSIE 7.0")>=0&&navigator.userAgent.indexOf("Trident")<0,isIE8:navigator.userAgent.indexOf("MSIE 8.0")>=0&&navigator.userAgent.indexOf("Trident")>=0,isOpera:navigator.userAgent.indexOf("Opera")>=0,isChrome:navigator.userAgent.indexOf("Chrome")>=0,isKHTML:navigator.userAgent.indexOf("Safari")>=0||navigator.userAgent.indexOf("Konqueror")>=0,
|
||||
isFF:navigator.userAgent.indexOf("Firefox")>=0,isIPad:navigator.userAgent.search(/iPad/gi)>=0,isEdge:-1!=navigator.userAgent.indexOf("Edge")},gantt.ajax={cache:!0,method:"get",parse:function(t){if("string"!=typeof t)return t;var e;return t=t.replace(/^[\s]+/,""),window.DOMParser&&!gantt.env.isIE?e=(new window.DOMParser).parseFromString(t,"text/xml"):window.ActiveXObject!==window.undefined&&(e=new window.ActiveXObject("Microsoft.XMLDOM"),e.async="false",e.loadXML(t)),e},xmltop:function(t,e,n){if("undefined"==typeof e.status||e.status<400){
|
||||
var a=e.responseXML?e.responseXML||e:gantt.ajax.parse(e.responseText||e);if(a&&null!==a.documentElement&&!a.getElementsByTagName("parsererror").length)return a.getElementsByTagName(t)[0]}return-1!==n&&gantt.callEvent("onLoadXMLError",["Incorrect XML",arguments[1],n]),document.createElement("DIV")},xpath:function(t,e){if(e.nodeName||(e=e.responseXML||e),gantt.env.isIE)return e.selectNodes(t)||[];for(var n,a=[],i=(e.ownerDocument||e).evaluate(t,e,null,XPathResult.ANY_TYPE,null);;){if(n=i.iterateNext(),
|
||||
!n)break;a.push(n)}return a},query:function(t){gantt.ajax._call(t.method||"GET",t.url,t.data||"",t.async||!0,t.callback,null,t.headers)},get:function(t,e){this._call("GET",t,null,!0,e)},getSync:function(t){return this._call("GET",t,null,!1)},put:function(t,e,n){this._call("PUT",t,e,!0,n)},del:function(t,e,n){this._call("DELETE",t,e,!0,n)},post:function(t,e,n){1==arguments.length?e="":2!=arguments.length||"function"!=typeof e&&"function"!=typeof window[e]?e=String(e):(n=e,e=""),this._call("POST",t,e,!0,n);
|
||||
},postSync:function(t,e){return e=null===e?"":String(e),this._call("POST",t,e,!1)},getLong:function(t,e){this._call("GET",t,null,!0,e,{url:t})},postLong:function(t,e,n){2==arguments.length&&(n=e,e=""),this._call("POST",t,e,!0,n,{url:t,postData:e})},_call:function(t,e,n,a,i,s,r){var o=window.XMLHttpRequest&&!gantt.env.isIE?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP"),_=null!==navigator.userAgent.match(/AppleWebKit/)&&null!==navigator.userAgent.match(/Qt/)&&null!==navigator.userAgent.match(/Safari/);
|
||||
if(a&&(o.onreadystatechange=function(){if(4==o.readyState||_&&3==o.readyState){if((200!=o.status||""===o.responseText)&&!gantt.callEvent("onAjaxError",[o]))return;window.setTimeout(function(){"function"==typeof i&&i.apply(window,[{xmlDoc:o,filePath:e}]),s&&("undefined"!=typeof s.postData?gantt.ajax.postLong(s.url,s.postData,i):gantt.ajax.getLong(s.url,i)),i=null,o=null},1)}}),"GET"!=t||this.cache||(e+=(e.indexOf("?")>=0?"&":"?")+"dhxr"+(new Date).getTime()+"=1"),o.open(t,e,a),r)for(var l in r)o.setRequestHeader(l,r[l]);else"POST"==t.toUpperCase()||"PUT"==t||"DELETE"==t?o.setRequestHeader("Content-Type","application/x-www-form-urlencoded"):"GET"==t&&(n=null);
|
||||
return o.setRequestHeader("X-Requested-With","XMLHttpRequest"),o.send(n),a?void 0:{xmlDoc:o,filePath:e}}},gantt._urlSeparator=function(t){return-1!=t.indexOf("?")?"&":"?"},function(){function t(t,e){var n=t.callback;gantt.modalbox.hide(t.box),c=t.box=null,n&&n(e)}function e(e){if(c){e=e||event;var n=e.which||event.keyCode,a=!1;if(gantt.message.keyboard){if(13==n||32==n){var i=e.target||e.srcElement;gantt._getClassName(i).indexOf("gantt_popup_button")>-1&&i.click?i.click():(t(c,!0),a=!0)}27==n&&(t(c,!1),
|
||||
a=!0)}if(a)return e.preventDefault&&e.preventDefault(),!(e.cancelBubble=!0)}else;}function n(t){n.cover||(n.cover=document.createElement("DIV"),n.cover.onkeydown=e,n.cover.className="dhx_modal_cover",document.body.appendChild(n.cover));document.body.scrollHeight;n.cover.style.display=t?"inline-block":"none"}function a(t,e){var n=gantt._waiAria.messageButtonAttrString(t),a="gantt_"+t.toLowerCase().replace(/ /g,"_")+"_button dhtmlx_"+t.toLowerCase().replace(/ /g,"_")+"_button";return"<div "+n+" class='gantt_popup_button dhtmlx_popup_button "+a+"' result='"+e+"' ><div>"+t+"</div></div>";
|
||||
}function i(t){u.area||(u.area=document.createElement("DIV"),u.area.className="gantt_message_area dhtmlx_message_area",u.area.style[u.position]="5px",document.body.appendChild(u.area)),u.hide(t.id);var e=document.createElement("DIV");return e.innerHTML="<div>"+t.text+"</div>",e.className="gantt-info dhtmlx-info gantt-"+t.type+" dhtmlx-"+t.type,e.onclick=function(){u.hide(t.id),t=null},gantt._waiAria.messageInfoAttr(e),"bottom"==u.position&&u.area.firstChild?u.area.insertBefore(e,u.area.firstChild):u.area.appendChild(e),
|
||||
t.expire>0&&(u.timers[t.id]=window.setTimeout(function(){u.hide(t.id)},t.expire)),u.pull[t.id]=e,e=null,t.id}function s(){for(var t=[].slice.apply(arguments,[0]),e=0;e<t.length;e++)if(t[e])return t[e]}function r(e,n,i){var r=document.createElement("DIV"),o=gantt.uid();gantt._waiAria.messageModalAttr(r,o),r.className=" gantt_modal_box dhtmlx_modal_box gantt-"+e.type+" dhtmlx-"+e.type,r.setAttribute("dhxbox",1);var _="";if(e.width&&(r.style.width=e.width),e.height&&(r.style.height=e.height),e.title&&(_+='<div class="gantt_popup_title dhtmlx_popup_title">'+e.title+"</div>"),
|
||||
_+='<div class="gantt_popup_text dhtmlx_popup_text" id="'+o+'"><span>'+(e.content?"":e.text)+'</span></div><div class="gantt_popup_controls dhtmlx_popup_controls">',n&&(_+=a(s(e.ok,gantt.locale.labels.message_ok,"OK"),!0)),i&&(_+=a(s(e.cancel,gantt.locale.labels.message_cancel,"Cancel"),!1)),e.buttons)for(var l=0;l<e.buttons.length;l++)_+=a(e.buttons[l],l);if(_+="</div>",r.innerHTML=_,e.content){var d=e.content;"string"==typeof d&&(d=document.getElementById(d)),"none"==d.style.display&&(d.style.display=""),
|
||||
r.childNodes[e.title?1:0].appendChild(d)}return r.onclick=function(n){n=n||event;var a=n.target||n.srcElement;if(a.className||(a=a.parentNode),"gantt_popup_button"==a.className.split(" ")[0]){var i=a.getAttribute("result");i="true"==i||("false"==i?!1:i),t(e,i)}},e.box=r,(n||i)&&(c=e),r}function o(t,a,i){var s=t.tagName?t:r(t,a,i);t.hidden||n(!0),document.body.appendChild(s);var o=Math.abs(Math.floor(((window.innerWidth||document.documentElement.offsetWidth)-s.offsetWidth)/2)),_=Math.abs(Math.floor(((window.innerHeight||document.documentElement.offsetHeight)-s.offsetHeight)/2));
|
||||
return"top"==t.position?s.style.top="-3px":s.style.top=_+"px",s.style.left=o+"px",s.onkeydown=e,gantt.modalbox.focus(s),t.hidden&&gantt.modalbox.hide(s),gantt.callEvent("onMessagePopup",[s]),s}function _(t){return o(t,!0,!1)}function l(t){return o(t,!0,!0)}function d(t){return o(t)}function g(t,e,n){return"object"!=typeof t&&("function"==typeof e&&(n=e,e=""),t={text:t,type:e,callback:n}),t}function h(t,e,n,a){return"object"!=typeof t&&(t={text:t,type:e,expire:n,id:a}),t.id=t.id||u.uid(),t.expire=t.expire||u.expire,
|
||||
t}var c=null;document.attachEvent?document.attachEvent("onkeydown",e):document.addEventListener("keydown",e,!0),gantt.alert=function(){var t=g.apply(this,arguments);return t.type=t.type||"confirm",_(t)},gantt.confirm=function(){var t=g.apply(this,arguments);return t.type=t.type||"alert",l(t)},gantt.modalbox=function(){var t=g.apply(this,arguments);return t.type=t.type||"alert",d(t)},gantt.modalbox.hide=function(t){for(;t&&t.getAttribute&&!t.getAttribute("dhxbox");)t=t.parentNode;t&&(t.parentNode.removeChild(t),
|
||||
n(!1),gantt.callEvent("onAfterMessagePopup",[t]))},gantt.modalbox.focus=function(t){setTimeout(function(){var e=gantt._getFocusableNodes(t);e.length&&e[0].focus&&e[0].focus()},1)};var u=gantt.message=function(t,e,n,a){t=h.apply(this,arguments),t.type=t.type||"info";var s=t.type.split("-")[0];switch(s){case"alert":return _(t);case"confirm":return l(t);case"modalbox":return d(t);default:return i(t)}};u.seed=(new Date).valueOf(),u.uid=function(){return u.seed++},u.expire=4e3,u.keyboard=!0,u.position="top",
|
||||
u.pull={},u.timers={},u.hideAll=function(){for(var t in u.pull)u.hide(t)},u.hide=function(t){var e=u.pull[t];e&&e.parentNode&&(window.setTimeout(function(){e.parentNode.removeChild(e),e=null},2e3),e.className+=" hidden",u.timers[t]&&window.clearTimeout(u.timers[t]),delete u.pull[t])}}(),gantt.date={init:function(){for(var t=gantt.locale.date.month_short,e=gantt.locale.date.month_short_hash={},n=0;n<t.length;n++)e[t[n]]=n;for(var t=gantt.locale.date.month_full,e=gantt.locale.date.month_full_hash={},n=0;n<t.length;n++)e[t[n]]=n;
|
||||
},date_part:function(t){var e=new Date(t);return t.setHours(0),this.hour_start(t),t.getHours()&&(t.getDate()<e.getDate()||t.getMonth()<e.getMonth()||t.getFullYear()<e.getFullYear())&&t.setTime(t.getTime()+36e5*(24-t.getHours())),t},time_part:function(t){return(t.valueOf()/1e3-60*t.getTimezoneOffset())%86400},week_start:function(t){var e=t.getDay();return gantt.config.start_on_monday&&(0===e?e=6:e--),this.date_part(this.add(t,-1*e,"day"))},month_start:function(t){return t.setDate(1),this.date_part(t);
|
||||
},year_start:function(t){return t.setMonth(0),this.month_start(t)},day_start:function(t){return this.date_part(t)},hour_start:function(t){return t.getMinutes()&&t.setMinutes(0),this.minute_start(t),t},minute_start:function(t){return t.getSeconds()&&t.setSeconds(0),t.getMilliseconds()&&t.setMilliseconds(0),t},_add_days:function(t,e){var n=new Date(t.valueOf());return n.setDate(n.getDate()+e),e>=0&&!t.getHours()&&n.getHours()&&(n.getDate()<=t.getDate()||n.getMonth()<t.getMonth()||n.getFullYear()<t.getFullYear())&&n.setTime(n.getTime()+36e5*(24-n.getHours())),
|
||||
n},add:function(t,e,n){var a=new Date(t.valueOf());switch(n){case"day":a=gantt.date._add_days(a,e);break;case"week":a=gantt.date._add_days(a,7*e);break;case"month":a.setMonth(a.getMonth()+e);break;case"year":a.setYear(a.getFullYear()+e);break;case"hour":a.setTime(a.getTime()+60*e*60*1e3);break;case"minute":a.setTime(a.getTime()+60*e*1e3);break;default:return gantt.date["add_"+n](t,e,n)}return a},to_fixed:function(t){return 10>t?"0"+t:t},copy:function(t){return new Date(t.valueOf())},date_to_str:function(t,e){
|
||||
return t=t.replace(/%[a-zA-Z]/g,function(t){switch(t){case"%d":return'"+gantt.date.to_fixed(date.getDate())+"';case"%m":return'"+gantt.date.to_fixed((date.getMonth()+1))+"';case"%j":return'"+date.getDate()+"';case"%n":return'"+(date.getMonth()+1)+"';case"%y":return'"+gantt.date.to_fixed(date.getFullYear()%100)+"';case"%Y":return'"+date.getFullYear()+"';case"%D":return'"+gantt.locale.date.day_short[date.getDay()]+"';case"%l":return'"+gantt.locale.date.day_full[date.getDay()]+"';case"%M":return'"+gantt.locale.date.month_short[date.getMonth()]+"';
|
||||
case"%F":return'"+gantt.locale.date.month_full[date.getMonth()]+"';case"%h":return'"+gantt.date.to_fixed((date.getHours()+11)%12+1)+"';case"%g":return'"+((date.getHours()+11)%12+1)+"';case"%G":return'"+date.getHours()+"';case"%H":return'"+gantt.date.to_fixed(date.getHours())+"';case"%i":return'"+gantt.date.to_fixed(date.getMinutes())+"';case"%a":return'"+(date.getHours()>11?"pm":"am")+"';case"%A":return'"+(date.getHours()>11?"PM":"AM")+"';case"%s":return'"+gantt.date.to_fixed(date.getSeconds())+"';
|
||||
case"%W":return'"+gantt.date.to_fixed(gantt.date.getISOWeek(date))+"';default:return t}}),e&&(t=t.replace(/date\.get/g,"date.getUTC")),new Function("date",'return "'+t+'";')},str_to_date:function(t,e){for(var n="var temp=date.match(/[a-zA-Z]+|[0-9]+/g);",a=t.match(/%[a-zA-Z]/g),i=0;i<a.length;i++)switch(a[i]){case"%j":case"%d":n+="set[2]=temp["+i+"]||1;";break;case"%n":case"%m":n+="set[1]=(temp["+i+"]||1)-1;";break;case"%y":n+="set[0]=temp["+i+"]*1+(temp["+i+"]>50?1900:2000);";break;case"%g":case"%G":
|
||||
case"%h":case"%H":n+="set[3]=temp["+i+"]||0;";break;case"%i":n+="set[4]=temp["+i+"]||0;";break;case"%Y":n+="set[0]=temp["+i+"]||0;";break;case"%a":case"%A":n+="set[3]=set[3]%12+((temp["+i+"]||'').toLowerCase()=='am'?0:12);";break;case"%s":n+="set[5]=temp["+i+"]||0;";break;case"%M":n+="set[1]=gantt.locale.date.month_short_hash[temp["+i+"]]||0;";break;case"%F":n+="set[1]=gantt.locale.date.month_full_hash[temp["+i+"]]||0;"}var s="set[0],set[1],set[2],set[3],set[4],set[5]";return e&&(s=" Date.UTC("+s+")"),
|
||||
new Function("date","var set=[0,0,1,0,0,0]; "+n+" return new Date("+s+");")},getISOWeek:function(t){if(!t)return!1;var e=t.getDay();0===e&&(e=7);var n=new Date(t.valueOf());n.setDate(t.getDate()+(4-e));var a=n.getFullYear(),i=Math.round((n.getTime()-new Date(a,0,1).getTime())/864e5),s=1+Math.floor(i/7);return s},getUTCISOWeek:function(t){return this.getISOWeek(t)},convert_to_utc:function(t){return new Date(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate(),t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds());
|
||||
},parseDate:function(t,e){return t&&!t.getFullYear&&(gantt.defined(e)&&(e="string"==typeof e?gantt.defined(gantt.templates[e])?gantt.templates[e]:gantt.date.str_to_date(e):gantt.templates.xml_date),t=t?e(t):null),t}},gantt.date.quarter_start=function(t){gantt.date.month_start(t);var e,n=t.getMonth();return e=n>=9?9:n>=6?6:n>=3?3:0,t.setMonth(e),t},gantt.date.add_quarter=function(t,e){return gantt.date.add(t,3*e,"month")},window.jQuery&&!function(t){var e=[];t.fn.dhx_gantt=function(n){if(n=n||{},"string"!=typeof n){
|
||||
var a=[];return this.each(function(){if(this&&this.getAttribute&&!this.getAttribute("dhxgantt")){for(var t in n)"data"!=t&&(gantt.config[t]=n[t]);gantt.init(this),n.data&&gantt.parse(n.data),a.push(gantt)}}),1===a.length?a[0]:a}return e[n]?e[n].apply(this,[]):void t.error("Method "+n+" does not exist on jQuery.dhx_gantt")}}(jQuery),gantt.locale={date:{month_full:["January","February","March","April","May","June","July","August","September","October","November","December"],month_short:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],
|
||||
day_full:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],day_short:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]},labels:{new_task:"New task",icon_save:"Save",icon_cancel:"Cancel",icon_details:"Details",icon_edit:"Edit",icon_delete:"Delete",confirm_closing:"",confirm_deleting:"Task will be deleted permanently, are you sure?",section_description:"Description",section_time:"Time period",section_type:"Type",column_text:"Task name",column_start_date:"Start time",column_duration:"Duration",
|
||||
column_add:"",link:"Link",confirm_link_deleting:"will be deleted",link_start:" (start)",link_end:" (end)",type_task:"Task",type_project:"Project",type_milestone:"Milestone",minutes:"Minutes",hours:"Hours",days:"Days",weeks:"Week",months:"Months",years:"Years",message_ok:"OK",message_cancel:"Cancel"}},gantt.skins.skyblue={config:{grid_width:350,row_height:27,scale_height:27,link_line_width:1,link_arrow_size:8,lightbox_additional_height:75},_second_column_width:95,_third_column_width:80},gantt.skins.meadow={
|
||||
config:{grid_width:350,row_height:27,scale_height:30,link_line_width:2,link_arrow_size:6,lightbox_additional_height:72},_second_column_width:95,_third_column_width:80},gantt.skins.terrace={config:{grid_width:360,row_height:35,scale_height:35,link_line_width:2,link_arrow_size:6,lightbox_additional_height:75},_second_column_width:90,_third_column_width:70},gantt.skins.broadway={config:{grid_width:360,row_height:35,scale_height:35,link_line_width:1,link_arrow_size:7,lightbox_additional_height:86},_second_column_width:90,
|
||||
_third_column_width:80,_lightbox_template:"<div class='gantt_cal_ltitle'><span class='gantt_mark'> </span><span class='gantt_time'></span><span class='gantt_title'></span><div class='gantt_cancel_btn'></div></div><div class='gantt_cal_larea'></div>",_config_buttons_left:{},_config_buttons_right:{gantt_delete_btn:"icon_delete",gantt_save_btn:"icon_save"}},gantt.skins.contrast_black={config:{grid_width:360,row_height:35,scale_height:35,link_line_width:2,link_arrow_size:6,lightbox_additional_height:75
|
||||
},_second_column_width:100,_third_column_width:80},gantt.skins.contrast_white={config:{grid_width:360,row_height:35,scale_height:35,link_line_width:2,link_arrow_size:6,lightbox_additional_height:75},_second_column_width:100,_third_column_width:80},gantt.config.touch_drag=500,gantt.config.touch=!0,gantt.config.touch_feedback=!0,gantt.config.touch_feedback_duration=1,gantt._prevent_touch_scroll=!1,gantt._touch_feedback=function(){gantt.config.touch_feedback&&navigator.vibrate&&navigator.vibrate(gantt.config.touch_feedback_duration);
|
||||
},gantt._init_touch_events=function(){if("force"!=this.config.touch&&(this.config.touch=this.config.touch&&(-1!=navigator.userAgent.indexOf("Mobile")||-1!=navigator.userAgent.indexOf("iPad")||-1!=navigator.userAgent.indexOf("Android")||-1!=navigator.userAgent.indexOf("Touch"))),this.config.touch){var t=!0;try{document.createEvent("TouchEvent")}catch(e){t=!1}t?this._touch_events(["touchmove","touchstart","touchend"],function(t){return t.touches&&t.touches.length>1?null:t.touches[0]?{target:t.target,
|
||||
pageX:t.touches[0].pageX,pageY:t.touches[0].pageY,clientX:t.touches[0].clientX,clientY:t.touches[0].clientY}:t},function(){return!1}):window.navigator.pointerEnabled?this._touch_events(["pointermove","pointerdown","pointerup"],function(t){return"mouse"==t.pointerType?null:t},function(t){return!t||"mouse"==t.pointerType}):window.navigator.msPointerEnabled&&this._touch_events(["MSPointerMove","MSPointerDown","MSPointerUp"],function(t){return t.pointerType==t.MSPOINTER_TYPE_MOUSE?null:t},function(t){
|
||||
return!t||t.pointerType==t.MSPOINTER_TYPE_MOUSE})}},gantt._touch_events=function(t,e,n){function a(t){return t&&t.preventDefault&&t.preventDefault(),(t||event).cancelBubble=!0,!1}function i(t){var e=gantt._task_area_pulls,n=gantt.getTask(t);if(n&&gantt.isTaskVisible(t))for(var a in e)if(n=e[a][t],n&&n.getAttribute("task_id")&&n.getAttribute("task_id")==t){var i=n.cloneNode(!0);return g=n,e[a][t]=i,n.style.display="none",i.className+=" gantt_drag_move ",n.parentNode.appendChild(i),i}}var s,r=0,o=!1,_=!1,l=null,d=null,g=null;
|
||||
this._gantt_touch_event_ready||(this._gantt_touch_event_ready=1,gantt.event(gantt.$container,t[0],function(t){if(!n(t)&&o){d&&clearTimeout(d);var i=e(t);if(gantt._tasks_dnd.drag.id||gantt._tasks_dnd.drag.start_drag)return gantt._tasks_dnd.on_mouse_move(i),t.preventDefault&&t.preventDefault(),t.cancelBubble=!0,!1;if(!gantt._prevent_touch_scroll){if(i&&l){var g=l.pageX-i.pageX,h=l.pageY-i.pageY;if(!_&&(Math.abs(g)>5||Math.abs(h)>5)&&(gantt._touch_scroll_active=_=!0,r=0,s=gantt.getScrollState()),_){
|
||||
gantt.scrollTo(s.x+g,s.y+h);var c=gantt.getScrollState();if(s.x!=c.x&&h>2*g||s.y!=c.y&&g>2*h)return a(t)}}return a(t)}return!0}})),gantt.event(this.$container,"contextmenu",function(t){return o?a(t):void 0}),gantt.event(this.$container,t[1],function(t){if(!n(t)){if(t.touches&&t.touches.length>1)return void(o=!1);l=e(t),gantt._locate_css(l,"gantt_hor_scroll")||gantt._locate_css(l,"gantt_ver_scroll")||(o=!0),d=setTimeout(function(){var t=gantt.locate(l);!t||gantt._locate_css(l,"gantt_link_control")||gantt._locate_css(l,"gantt_grid_data")||(gantt._tasks_dnd.on_mouse_down(l),
|
||||
gantt._tasks_dnd.drag&&gantt._tasks_dnd.drag.start_drag&&(i(t),gantt._tasks_dnd._start_dnd(l),gantt._touch_drag=!0,gantt.refreshTask(t),gantt._touch_feedback())),d=null},gantt.config.touch_drag)}}),gantt.event(this.$container,t[2],function(t){if(!n(t)){d&&clearTimeout(d),gantt._touch_drag=!1,o=!1;var i=e(t);if(gantt._tasks_dnd.on_mouse_up(i),g&&(gantt.refreshTask(gantt.locate(g)),g.parentNode&&(g.parentNode.removeChild(g),gantt._touch_feedback())),gantt._touch_scroll_active=o=_=!1,g=null,l&&r){var s=new Date;
|
||||
500>s-r?(gantt._on_dblclick(l),a(t)):r=s}else r=new Date}})},function(){function t(t,e){var n=gantt.env.isIE?"":"%c",a=[n,'"',t,'"',n," has been deprecated in dhtmlxGantt v4.0 and will stop working in v5.0. Use ",n,'"',e,'"',n," instead. \nSee more details at http://docs.dhtmlx.com/gantt/migrating.html "].join(""),i=window.console.warn||window.console.log,s=[a];gantt.env.isIE||(s=s.concat(["font-weight:bold","font-weight:normal","font-weight:bold","font-weight:normal"])),i.apply(window.console,s);
|
||||
}function e(e){return function(){return t("dhtmlx."+e,"gantt."+e),gantt[e].apply(gantt,arguments)}}window.dhtmlx||(window.dhtmlx={});for(var n=["message","alert","confirm","modalbox","uid","copy","mixin","defined","bind","assert"],a=0;a<n.length;a++)window.dhtmlx[n[a]]||(dhtmlx[n[a]]=e(n[a]));window.dataProcessor||(window.dataProcessor=function(e){return t("new dataProcessor(url)","new gantt.dataProcessor(url)"),new gantt.dataProcessor(e)})}();
|
||||
//# sourceMappingURL=sources/dhtmlxgantt.js.map
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
@license
|
||||
|
||||
dhtmlxGantt v.4.2.1 Stardard
|
||||
This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited.
|
||||
|
||||
(c) Dinamenta, UAB.
|
||||
*/
|
||||
gantt._markers||(gantt._markers={}),gantt.config.show_markers=!0,gantt.attachEvent("onClear",function(){gantt._markers={}}),gantt.attachEvent("onGanttReady",function(){function t(t){if(!gantt.config.show_markers)return!1;if(!t.start_date)return!1;var e=gantt.getState();if(!(+t.start_date>+e.max_date||+t.end_date&&+t.end_date<+e.min_date||+t.start_date<+e.min_date)){var n=document.createElement("div");n.setAttribute("marker_id",t.id);var a="gantt_marker";gantt.templates.marker_class&&(a+=" "+gantt.templates.marker_class(t)),
|
||||
t.css&&(a+=" "+t.css),t.title&&(n.title=t.title),n.className=a;var i=gantt.posFromDate(t.start_date);if(n.style.left=i+"px",n.style.height=Math.max(gantt._y_from_ind(gantt._order.length),0)+"px",t.end_date){var s=gantt.posFromDate(t.end_date);n.style.width=Math.max(s-i,0)+"px"}return t.text&&(n.innerHTML="<div class='gantt_marker_content' >"+t.text+"</div>"),n}}var e=document.createElement("div");e.className="gantt_marker_area",gantt.$task_data.appendChild(e),gantt.$marker_area=e,gantt._markerRenderer=gantt._task_renderer("markers",t,gantt.$marker_area,null);
|
||||
}),gantt.attachEvent("onDataRender",function(){gantt.renderMarkers()}),gantt.getMarker=function(t){return this._markers?this._markers[t]:null},gantt.addMarker=function(t){return t.id=t.id||gantt.uid(),this._markers[t.id]=t,t.id},gantt.deleteMarker=function(t){return this._markers&&this._markers[t]?(delete this._markers[t],!0):!1},gantt.updateMarker=function(t){this._markerRenderer&&this._markerRenderer.render_item(this.getMarker(t))},gantt._getMarkers=function(){var t=[];for(var e in this._markers)t.push(this._markers[e]);
|
||||
return t},gantt.renderMarkers=function(){if(!this._markers)return!1;if(!this._markerRenderer)return!1;var t=this._getMarkers();return this._markerRenderer.render_items(t),!0};
|
||||
//# sourceMappingURL=../sources/ext/dhtmlxgantt_marker.js.map
|
||||
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
@license
|
||||
|
||||
dhtmlxGantt v.4.2.1 dhtmlx.com
|
||||
This software can be used only as part of dhtmlx.com site.
|
||||
You are not allowed to use it on any other site
|
||||
|
||||
(c) Dinamenta, UAB.
|
||||
*/
|
||||
Gantt.plugin(function(t){t._tooltip={},t._tooltip_class="gantt_tooltip",t.config.tooltip_timeout=30,t.config.tooltip_offset_y=20,t.config.tooltip_offset_x=10,t._create_tooltip=function(){return this._tooltip_html||(this._tooltip_html=document.createElement("div"),this._tooltip_html.className=t._tooltip_class,this._waiAria.tooltipAttr(this._tooltip_html)),this._tooltip_html},t._is_cursor_under_tooltip=function(t,e){return t.x>=e.pos.x&&t.x<=e.pos.x+e.width?!0:t.y>=e.pos.y&&t.y<=e.pos.y+e.height?!0:!1;
|
||||
},t._show_tooltip=function(e,i){if(!t.config.touch||t.config.touch_tooltip){var n=this._create_tooltip();n.innerHTML=e,t.$task_data.appendChild(n);var a=n.offsetWidth+20,r=n.offsetHeight+40,s=this.$task.offsetHeight,o=this.$task.offsetWidth,l=this.getScrollState();t._waiAria.tooltipVisibleAttr(n),i.y+=l.y;var d={x:i.x,y:i.y};i.x+=1*t.config.tooltip_offset_x||0,i.y+=1*t.config.tooltip_offset_y||0,i.y=Math.min(Math.max(l.y,i.y),l.y+s-r),i.x=Math.min(Math.max(l.x,i.x),l.x+o-a),t._is_cursor_under_tooltip(d,{
|
||||
pos:i,width:a,height:r})&&(d.x+a>o+l.x&&(i.x=d.x-(a-20)-(1*t.config.tooltip_offset_x||0)),d.y+r>s+l.y&&(i.y=d.y-(r-40)-(1*t.config.tooltip_offset_y||0))),n.style.left=i.x+"px",n.style.top=i.y+"px"}},t._hide_tooltip=function(){this._tooltip_html&&this._waiAria.tooltipHiddenAttr(this._tooltip_html),this._tooltip_html&&this._tooltip_html.parentNode&&this._tooltip_html.parentNode.removeChild(this._tooltip_html),this._tooltip_id=0},t._is_tooltip=function(e){var i=e.target||e.srcElement;return t._is_node_child(i,function(t){
|
||||
return t.className==this._tooltip_class})},t._is_task_line=function(e){var i=e.target||e.srcElement;return t._is_node_child(i,function(t){return t==this.$task_data})},t._is_node_child=function(e,i){for(var n=!1;e&&!n;)n=i.call(t,e),e=e.parentNode;return n},t._tooltip_pos=function(e){if(e.pageX||e.pageY)var i={x:e.pageX,y:e.pageY};var n=t.env.isIE?document.documentElement:document.body,i={x:e.clientX+n.scrollLeft-n.clientLeft,y:e.clientY+n.scrollTop-n.clientTop},a=t._get_position(t.$task_data);return i.x=i.x-a.x,
|
||||
i.y=i.y-a.y,i},t.attachEvent("onMouseMove",function(e,i){if(this.config.tooltip_timeout){document.createEventObject&&!document.createEvent&&(i=document.createEventObject(i));var n=this.config.tooltip_timeout;this._tooltip_id&&!e&&(isNaN(this.config.tooltip_hide_timeout)||(n=this.config.tooltip_hide_timeout)),clearTimeout(t._tooltip_ev_timer),t._tooltip_ev_timer=setTimeout(function(){t._init_tooltip(e,i)},n)}else t._init_tooltip(e,i)}),t._init_tooltip=function(t,e){if(!this._is_tooltip(e)&&(t!=this._tooltip_id||this._is_task_line(e))){
|
||||
if(!t)return this._hide_tooltip();this._tooltip_id=t;var i=this.getTask(t),n=this.templates.tooltip_text(i.start_date,i.end_date,i);return n?void this._show_tooltip(n,this._tooltip_pos(e)):void this._hide_tooltip()}},t.attachEvent("onMouseLeave",function(e){t._is_tooltip(e)||this._hide_tooltip()})});
|
||||
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
@license
|
||||
|
||||
dhtmlxGantt v.4.2.1 Stardard
|
||||
This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited.
|
||||
|
||||
(c) Dinamenta, UAB.
|
||||
*/
|
||||
gantt.config.day_date="%M %d日 %D",gantt.config.default_date="%Y年 %M %d日",gantt.config.month_date="%Y年 %M",gantt.locale={date:{month_full:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],month_short:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],day_full:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],day_short:["日","一","二","三","四","五","六"]},labels:{dhx_cal_today_button:"今天",day_tab:"日",week_tab:"周",month_tab:"月",new_event:"新建日程",icon_save:"保存",icon_cancel:"关闭",icon_details:"详细",
|
||||
icon_edit:"编辑",icon_delete:"删除",confirm_closing:"请确认是否撤销修改!",confirm_deleting:"是否删除日程?",section_description:"描述",section_time:"时间范围",section_type:"类型",column_text:"任务名",column_start_date:"开始时间",column_duration:"持续时间",column_add:"",link:"关联",confirm_link_deleting:"将被删除",link_start:" (开始)",link_end:" (结束)",type_task:"任务",type_project:"项目",type_milestone:"里程碑",minutes:"分钟",hours:"小时",days:"天",weeks:"周",months:"月",years:"年",message_ok:"OK",message_cancel:"关闭"}};
|
||||
//# sourceMappingURL=../sources/locale/locale_cn.js.map
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1,673 @@
|
||||
/*!
|
||||
* Fancytree "Win8" skin.
|
||||
*
|
||||
* DON'T EDIT THE CSS FILE DIRECTLY, since it is automatically generated from
|
||||
* the LESS templates.
|
||||
*/
|
||||
/*******************************************************************************
|
||||
* Common Styles for Fancytree Skins.
|
||||
*
|
||||
* This section is automatically generated from the `skin-common.less` template.
|
||||
******************************************************************************/
|
||||
/*------------------------------------------------------------------------------
|
||||
* Helpers
|
||||
*----------------------------------------------------------------------------*/
|
||||
.ui-helper-hidden {
|
||||
display: none;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* Container and UL / LI
|
||||
*----------------------------------------------------------------------------*/
|
||||
ul.fancytree-container {
|
||||
/*font-family: tahoma, arial, helvetica;
|
||||
font-size: 10pt;
|
||||
*/
|
||||
white-space: nowrap;
|
||||
padding: 3px;
|
||||
margin: 0;
|
||||
background-color: white;
|
||||
border: 1px dotted gray;
|
||||
border: 1px solid #ddd;
|
||||
min-height: 0%;
|
||||
position: relative;
|
||||
}
|
||||
ul.fancytree-container ul {
|
||||
padding: 0 0 0 16px;
|
||||
margin: 0;
|
||||
}
|
||||
ul.fancytree-container ul > li:before {
|
||||
content: none;
|
||||
}
|
||||
ul.fancytree-container li {
|
||||
list-style-image: none;
|
||||
list-style-position: outside;
|
||||
list-style-type: none;
|
||||
-moz-background-clip: border;
|
||||
-moz-background-inline-policy: continuous;
|
||||
-moz-background-origin: padding;
|
||||
background-attachment: scroll;
|
||||
background-color: transparent;
|
||||
background-position: 0px 0px;
|
||||
background-repeat: repeat-y;
|
||||
background-image: none;
|
||||
margin: 0;
|
||||
}
|
||||
ul.fancytree-container li.fancytree-lastsib {
|
||||
background-image: none;
|
||||
}
|
||||
.ui-fancytree-disabled ul.fancytree-container {
|
||||
opacity: 0.5;
|
||||
background-color: silver;
|
||||
}
|
||||
ul.fancytree-connectors.fancytree-container li {
|
||||
background-image: url("data:image/gif;base64,R0lGODlhEAAQAPcAAAAAANPT0wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAQABAAAAgxAP8JHPgvAMGDCA0iXFiQ4UKFDglCjChwIkWLETE61MiQ40OKEkEO9JhQZEWTDRcGBAA7");
|
||||
background-position: 0 0;
|
||||
}
|
||||
ul.fancytree-container li.fancytree-lastsib,
|
||||
ul.fancytree-no-connector > li {
|
||||
background-image: none;
|
||||
}
|
||||
li.fancytree-animating {
|
||||
position: relative;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* Common icon definitions
|
||||
*----------------------------------------------------------------------------*/
|
||||
span.fancytree-empty,
|
||||
span.fancytree-vline,
|
||||
span.fancytree-expander,
|
||||
span.fancytree-icon,
|
||||
span.fancytree-checkbox,
|
||||
span.fancytree-drag-helper-img,
|
||||
#fancytree-drop-marker {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
background-repeat: no-repeat;
|
||||
background-position: left;
|
||||
background-image: url("icons.gif");
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
span.fancytree-icon,
|
||||
span.fancytree-checkbox,
|
||||
span.fancytree-expander,
|
||||
span.fancytree-custom-icon {
|
||||
margin-top: 2px;
|
||||
}
|
||||
/* Used by icon option: */
|
||||
span.fancytree-custom-icon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
display: inline-block;
|
||||
margin-left: 3px;
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
/* Used by 'icon' node option: */
|
||||
img.fancytree-icon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-left: 3px;
|
||||
margin-top: 2px;
|
||||
vertical-align: top;
|
||||
border-style: none;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* Expander icon
|
||||
*
|
||||
* Note: IE6 doesn't correctly evaluate multiples class names,
|
||||
* so we create combined class names that can be used in the CSS.
|
||||
*
|
||||
* Prefix: fancytree-exp-
|
||||
* 1st character: 'e': expanded, 'c': collapsed, 'n': no children
|
||||
* 2nd character (optional): 'd': lazy (Delayed)
|
||||
* 3rd character (optional): 'l': Last sibling
|
||||
*----------------------------------------------------------------------------*/
|
||||
span.fancytree-expander {
|
||||
cursor: pointer;
|
||||
}
|
||||
.fancytree-exp-n span.fancytree-expander,
|
||||
.fancytree-exp-nl span.fancytree-expander {
|
||||
background-image: none;
|
||||
cursor: default;
|
||||
}
|
||||
.fancytree-connectors .fancytree-exp-n span.fancytree-expander,
|
||||
.fancytree-connectors .fancytree-exp-nl span.fancytree-expander {
|
||||
background-image: url("icons.gif");
|
||||
margin-top: 0;
|
||||
}
|
||||
.fancytree-connectors .fancytree-exp-n span.fancytree-expander,
|
||||
.fancytree-connectors .fancytree-exp-n span.fancytree-expander:hover {
|
||||
background-position: 0px -64px;
|
||||
}
|
||||
.fancytree-connectors .fancytree-exp-nl span.fancytree-expander,
|
||||
.fancytree-connectors .fancytree-exp-nl span.fancytree-expander:hover {
|
||||
background-position: -16px -64px;
|
||||
}
|
||||
.fancytree-exp-c span.fancytree-expander {
|
||||
background-position: 0px -80px;
|
||||
}
|
||||
.fancytree-exp-c span.fancytree-expander:hover {
|
||||
background-position: -16px -80px;
|
||||
}
|
||||
.fancytree-exp-cl span.fancytree-expander {
|
||||
background-position: 0px -96px;
|
||||
}
|
||||
.fancytree-exp-cl span.fancytree-expander:hover {
|
||||
background-position: -16px -96px;
|
||||
}
|
||||
.fancytree-exp-cd span.fancytree-expander {
|
||||
background-position: -64px -80px;
|
||||
}
|
||||
.fancytree-exp-cd span.fancytree-expander:hover {
|
||||
background-position: -80px -80px;
|
||||
}
|
||||
.fancytree-exp-cdl span.fancytree-expander {
|
||||
background-position: -64px -96px;
|
||||
}
|
||||
.fancytree-exp-cdl span.fancytree-expander:hover {
|
||||
background-position: -80px -96px;
|
||||
}
|
||||
.fancytree-exp-e span.fancytree-expander,
|
||||
.fancytree-exp-ed span.fancytree-expander {
|
||||
background-position: -32px -80px;
|
||||
}
|
||||
.fancytree-exp-e span.fancytree-expander:hover,
|
||||
.fancytree-exp-ed span.fancytree-expander:hover {
|
||||
background-position: -48px -80px;
|
||||
}
|
||||
.fancytree-exp-el span.fancytree-expander,
|
||||
.fancytree-exp-edl span.fancytree-expander {
|
||||
background-position: -32px -96px;
|
||||
}
|
||||
.fancytree-exp-el span.fancytree-expander:hover,
|
||||
.fancytree-exp-edl span.fancytree-expander:hover {
|
||||
background-position: -48px -96px;
|
||||
}
|
||||
/* Fade out expanders, when container is not hovered or active */
|
||||
.fancytree-fade-expander span.fancytree-expander {
|
||||
transition: opacity 1.5s;
|
||||
opacity: 0;
|
||||
}
|
||||
.fancytree-fade-expander:hover span.fancytree-expander,
|
||||
.fancytree-fade-expander.fancytree-treefocus span.fancytree-expander,
|
||||
.fancytree-fade-expander .fancytree-treefocus span.fancytree-expander,
|
||||
.fancytree-fade-expander [class*='fancytree-statusnode-'] span.fancytree-expander {
|
||||
transition: opacity 0.6s;
|
||||
opacity: 1;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* Checkbox icon
|
||||
*----------------------------------------------------------------------------*/
|
||||
span.fancytree-checkbox {
|
||||
margin-left: 3px;
|
||||
background-position: 0px -32px;
|
||||
}
|
||||
span.fancytree-checkbox:hover {
|
||||
background-position: -16px -32px;
|
||||
}
|
||||
span.fancytree-checkbox.fancytree-radio {
|
||||
background-position: 0px -48px;
|
||||
}
|
||||
span.fancytree-checkbox.fancytree-radio:hover {
|
||||
background-position: -16px -48px;
|
||||
}
|
||||
.fancytree-partsel span.fancytree-checkbox {
|
||||
background-position: -64px -32px;
|
||||
}
|
||||
.fancytree-partsel span.fancytree-checkbox:hover {
|
||||
background-position: -80px -32px;
|
||||
}
|
||||
.fancytree-partsel span.fancytree-checkbox.fancytree-radio {
|
||||
background-position: -64px -48px;
|
||||
}
|
||||
.fancytree-partsel span.fancytree-checkbox.fancytree-radio:hover {
|
||||
background-position: -80px -48px;
|
||||
}
|
||||
.fancytree-selected span.fancytree-checkbox {
|
||||
background-position: -32px -32px;
|
||||
}
|
||||
.fancytree-selected span.fancytree-checkbox:hover {
|
||||
background-position: -48px -32px;
|
||||
}
|
||||
.fancytree-selected span.fancytree-checkbox.fancytree-radio {
|
||||
background-position: -32px -48px;
|
||||
}
|
||||
.fancytree-selected span.fancytree-checkbox.fancytree-radio:hover {
|
||||
background-position: -48px -48px;
|
||||
}
|
||||
.fancytree-unselectable span.fancytree-checkbox {
|
||||
opacity: 0.4;
|
||||
filter: alpha(opacity=40);
|
||||
}
|
||||
.fancytree-unselectable span.fancytree-checkbox:hover {
|
||||
background-position: 0px -32px;
|
||||
}
|
||||
.fancytree-unselectable.fancytree-partsel span.fancytree-checkbox:hover {
|
||||
background-position: -64px -32px;
|
||||
}
|
||||
.fancytree-unselectable.fancytree-selected span.fancytree-checkbox:hover {
|
||||
background-position: -32px -32px;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* Node type icon
|
||||
* Note: IE6 doesn't correctly evaluate multiples class names,
|
||||
* so we create combined class names that can be used in the CSS.
|
||||
*
|
||||
* Prefix: fancytree-ico-
|
||||
* 1st character: 'e': expanded, 'c': collapsed
|
||||
* 2nd character (optional): 'f': folder
|
||||
*----------------------------------------------------------------------------*/
|
||||
span.fancytree-icon {
|
||||
margin-left: 3px;
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
/* Documents */
|
||||
.fancytree-ico-c span.fancytree-icon:hover {
|
||||
background-position: -16px 0px;
|
||||
}
|
||||
.fancytree-has-children.fancytree-ico-c span.fancytree-icon {
|
||||
background-position: -32px 0px;
|
||||
}
|
||||
.fancytree-has-children.fancytree-ico-c span.fancytree-icon:hover {
|
||||
background-position: -48px 0px;
|
||||
}
|
||||
.fancytree-ico-e span.fancytree-icon {
|
||||
background-position: -64px 0px;
|
||||
}
|
||||
.fancytree-ico-e span.fancytree-icon:hover {
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
/* Folders */
|
||||
.fancytree-ico-cf span.fancytree-icon {
|
||||
background-position: 0px -16px;
|
||||
}
|
||||
.fancytree-ico-cf span.fancytree-icon:hover {
|
||||
background-position: -16px -16px;
|
||||
}
|
||||
.fancytree-has-children.fancytree-ico-cf span.fancytree-icon {
|
||||
background-position: -32px -16px;
|
||||
}
|
||||
.fancytree-has-children.fancytree-ico-cf span.fancytree-icon:hover {
|
||||
background-position: -48px -16px;
|
||||
}
|
||||
.fancytree-ico-ef span.fancytree-icon {
|
||||
background-position: -64px -16px;
|
||||
}
|
||||
.fancytree-ico-ef span.fancytree-icon:hover {
|
||||
background-position: -80px -16px;
|
||||
}
|
||||
.fancytree-loading span.fancytree-expander,
|
||||
.fancytree-loading span.fancytree-expander:hover,
|
||||
.fancytree-statusnode-loading span.fancytree-icon,
|
||||
.fancytree-statusnode-loading span.fancytree-icon:hover {
|
||||
background-image: url("data:image/gif;base64,R0lGODlhEAAQAPcAAEai/0+m/1is/12u/2Oy/2u1/3C3/3G4/3W6/3q8/3+//4HA/4XC/4nE/4/H/5LI/5XK/5vN/57O/6DP/6HQ/6TS/6/X/7DX/7HY/7bb/7rd/7ze/8Hg/8fj/8rl/83m/9Dn/9Lp/9bq/9jr/9rt/9/v/+Dv/+Hw/+Xy/+v1/+32//D3//L5//f7//j7//v9/0qk/06m/1Ko/1er/2Cw/2m0/2y2/3u9/32+/4jD/5bK/5jL/5/P/6HP/6PS/6fS/6nU/67X/7Ta/7nc/7zd/8Ph/8bj/8jk/8vl/9Pp/9fr/9rs/9zu/+j0/+72//T6/0ij/1Op/1uu/1yu/2Wy/2q0/2+3/3C4/3m8/3y9/4PB/4vE/4/G/6XS/6jU/67W/7HZ/7Xa/7vd/73e/8Lh/8nk/87m/9Hn/9Ho/9vt/97u/+Lx/+bz/+n0//H4//X6/1Gn/1Go/2Gx/36+/5PJ/5TJ/5nL/57P/7PZ/7TZ/8Xi/9Tq/9zt/+by/+r0/+73//P5//n8/0uk/1Wq/3K4/3e7/4bC/4vF/47G/5fK/77f/9Do/9ns/+Tx/+/3//L4//b6//r9/2Wx/2q1/4bD/6DQ/6fT/9Tp/+Lw/+jz//D4//j8/1qt/2mz/5rM/6bS/8Lg/8jj/97v/+r1/1Cn/1ar/2Cv/3O5/3++/53O/8Th/9Lo/9Xq/+z2/2Kw/2Sx/8Ti/4rF/7DY/1+v/4TB/7fb/+Ty/1+u/2Ox/4zG/6vU/7/f//r8/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/i1NYWRlIGJ5IEtyYXNpbWlyYSBOZWpjaGV2YSAod3d3LmxvYWRpbmZvLm5ldCkAIfkEAQoAMAAsAAAAABAAEAAABptAmFCI6mAsnNNwCUthGomDoYCQoJinyELRgDwUhAFCNFRJGg8P6/VSaQyCgxK2cURMTJioEIA0Jw8geUIZAQMkIhEVLIMwKgMAFx4SGS+NLwwCFR8UGo1CKSgsJBUYLZ9sMCsZF3iDLy2nMCEXGyp5bSqyLBwaHSguQi8sKigqlkIqHb4hJc4lJsdMLSQeHyEhIyXSgy2hxsFLQQAh+QQBCgAAACwAAAAAEAAQAAAHp4AAgoIoH0NCSCiDiwBORDo5Czg3C0BNjCg/Dw46PjwOBwcLS4MrQTs9ICwvL05FODU4igBGPECzi0s4NDyNQT5KjINDAzZMTEBCLMKCTQczQ0lBRcyDODI8SojVAC84MTxMQkVP1SgDMEJPRkS4jB8xM6RKRR/Lwi9HQYJPIB9KTV4MeuHiicBSSkAoYYKiiRMnKw4ucnFiyRKGKJyUq/aChUaDjAIBACH5BAEKAAAALAAAAAAQABAAAAeogACCgm1KZGRmbYOLAG5GXjoPXFsPYIqLbWE7XV1fXjtaWQ9qg25iXmBKby8AKmVcWFyXaBdil4tqWldejWNhpIyCZFZZa2tjZG/BgipYVWRpY2bLg1s0XWpGaNQAL1pTXW1maMrLbVZSYm9oZyrUYVFUpGxoaeWLZzQBOoJvamkm3OCSAsWKiUH+1rBp48bFCxVWaGxb9LBNGxVvVqUBFuzFizculgUCACH5BAEKAAEALAAAAAAQABAAAAi4AAMIFPiHxJEjJPwMXBgAEIg8XijcsUNhzB+GfzjkwYNnSB4KdRzcWTPwzZEhY/i8EfgmhJ0GdhQGIDFGz0WGJuoswBPgzQc9fRgOPDKnQR8/H0K4EErQQQKgIPgwFRioTgE8ffZInRqIztWCfAJN/TOnAAcXJvgAmjpEDgKSf9b4Ectwz5UBd6j68fNnaYBAfvIUEIAgKNU/gN4E+sNgAJw4BvYIfeMiUB8BAAbUMTz1TYU8YRcGBAAh+QQBCgAAACwAAAAAEAAQAAAItAABCBT4qJGIRY0cDVwIAJIIMnnyWABiwYjChY8WGVFExgjELjwsNBroQgSSD40gCXQIJFGXi41AiHjEEECjLg8UNWS06GLND4gSNXrEqESkmgQTGfrgqMRIpAAidVkwpKDPmpF44MgDqVGTo0gdHbqBJJIjR2BrkiG0YCSkRyprMsJBCMhASJEioczbZEihGoaeCtQrgwYOujRoLGBU08IgQYJkzKjBQ/DCSIzy8OgypATDgAAh+QQBCgAAACwAAAAAEAAQAAAIswABCBQIKRMfPmw0DVwIYBObEEiKjBEzJoTChZD4XArB0UyRMBfGtBm4CdOSJW02EeQjxkuYi38wYYLEEEAmDJWMNGyTsKbAS5Us/YHU5o9PgZos7QixSdPFo18eFNkESeXRTV+4FGlo1aemHVvM7ORzFMmCByOXHJgSoiafLTgwCOQjCYqkMCk3/SlCCQvagSEmBRh0gBLcAwe4kF2IaYekKVNoTMLiZWTNTSwtWRqDiWFAACH5BAEKAAIALAAAAAAQABAAAAi5AAUIFOhCBRs2o94MXCjghQpRI/YkQYJkj8KFL0atEcVRVJIOY0KtWKhi1Cg3LwS+YdNhCCg3Kt2oSMlQxZg8IGLSZChA1IU8Khru5PkmjxdRbtgE5TlwCAUknzgxGIoxDw8kQgAMGMVUgJtPnvaQGBAgT1cQDyhwhRCnUxKeazw5GCNwTQFOBsbMfLECyYMGPJYK2INgAAEFDyA0ULDA0xqGbHggKFDgQIIGF7jyfLGmw4ULHdgwDAgAIfkEAQoAAAAsAAAAABAAEAAACLcAAQgcqElTK00uBioUuKlVEzYnlixhk3BhC4MO2SxhtIrVCoWbNrnYNLAhKzMgWggMgqTiwhVIiiwBsKQUKTMLB7IhoqpVHhimmuQU2KJInhOpYtxwmdNMHlapZKAiORRAkSCshpQ61arqijxAJNoYMKTqEh95uvagUWjmQjZAUqkSyAZVDVRFWoXUBKLHjiAfBS5hcOqUg1Q+djh44IPNwiZAFtxAtSCHDiJdh55AkmeIGaEKAwIAIfkEAQoAAAAsAAAAABAAEAAACLcAAQgcGMgFJEiBBioEUEIJAINuRo36k1AhGldXVhSMyAaTCUgDMVWBMiWNQjeY0pRwIVBHAFdoFgKAxOgMG4avooSRKfCPmTOQNEi5MornwzNIRnWZQqkiTyVFSnRxtYWlUTMa0hSpkuWPUUgcNGDClMVKEaMmwohxA6CLFUolZI7ScCEmgFFcsnBB4nVmCTBeNLAVWCKvlh1dvnjRUSlMUYWjwDzYwuWBji6wBss1U6QImscDAwIAIfkEAQoAAQAsAAAAABAAEAAACLMAAwgUyEfWJxYDEw5sBGEAAAGNXkCCpDAAKwNw4AxgoEIii44LCwnolMfPC4EvVPgxKfDOgCusKr7ws0ZFABOF5IipKJAFHz4vOBSYY5NnAD4jVMgqAOGkUT5J/CxtajRAmiRr9CSIVbQiJFZI/DRyMAeJ0awfKMqaQ2dNRRV6xqQR6MdOLDusEAaAtGbMGCR6A6y54wDCpzxiZCnm0FWgijF3INyhcDhJYIV+wH5I0zhAQAAh+QQBCgAAACwAAAAAEAAQAAAItAABCBRYYkiqVLUYuRjIkE2qGjNkxBA0IwhDgYwU0JhVg1YCGjLMLBzYxFCNBEM0uXDBxkyLlQOBEFLA6CKAlZpaAGBjiBAZmwP//HFhJMGhP0AF/mHjopaCVCOBsmGjqZahLlFtsinxx4yhHZqSurDFaGkiREmS/rnESOeQB6nY2NR0CYRcAH+67AByaWSLlkj6DmQTJFWXWmSMkCFCBkRYhn+MBAESpBbitmpLJLlU4vHAgAAh+QQBCgAAACwAAAAAEAAQAAAIvQABCBS4ZpclS0PWDFwIoI0uHFVu3ZIiiY7ChWpyHTiAowGDK4MCVEEzsA0dLAw4OOHFq00YXFBwqREIBkeumQzN3DqQBkCmOgvKMByYpg0vAGZy7XAydCCvFgA45NLVdGCLFrw40PlytCoLJy0u7bAEtSkvJ21aOLF055JXNkYBwKoEJtPQFmvWMAWwIoyuIWrKunCSJo2Jrg2HXAjDwcwlNCDQpCk7kAWIXUN2wTKDZo2Lqk7YpFGTibLAgAA7");
|
||||
background-position: 0px 0px;
|
||||
}
|
||||
/* Status node icons */
|
||||
.fancytree-statusnode-error span.fancytree-icon,
|
||||
.fancytree-statusnode-error span.fancytree-icon:hover {
|
||||
background-position: 0px -112px;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* Node titles and highlighting
|
||||
*----------------------------------------------------------------------------*/
|
||||
span.fancytree-node {
|
||||
/* See #117 */
|
||||
display: inherit;
|
||||
width: 100%;
|
||||
margin-top: 0px;
|
||||
min-height: 20px;
|
||||
}
|
||||
span.fancytree-title {
|
||||
color: black;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
min-height: 20px;
|
||||
padding: 0 3px 0 3px;
|
||||
margin: 0px 0 0 3px;
|
||||
border: 1px solid transparent;
|
||||
-webkit-border-radius: 0px;
|
||||
-moz-border-radius: 0px;
|
||||
-ms-border-radius: 0px;
|
||||
-o-border-radius: 0px;
|
||||
border-radius: 0px;
|
||||
}
|
||||
span.fancytree-node.fancytree-error span.fancytree-title {
|
||||
color: red;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* Drag'n'drop support
|
||||
*----------------------------------------------------------------------------*/
|
||||
div.fancytree-drag-helper span.fancytree-childcounter,
|
||||
div.fancytree-drag-helper span.fancytree-dnd-modifier {
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
background: #337ab7;
|
||||
border: 1px solid gray;
|
||||
min-width: 10px;
|
||||
height: 10px;
|
||||
line-height: 1;
|
||||
vertical-align: baseline;
|
||||
border-radius: 10px;
|
||||
padding: 2px;
|
||||
text-align: center;
|
||||
font-size: 9px;
|
||||
}
|
||||
div.fancytree-drag-helper span.fancytree-childcounter {
|
||||
position: absolute;
|
||||
top: -6px;
|
||||
right: -6px;
|
||||
}
|
||||
div.fancytree-drag-helper span.fancytree-dnd-modifier {
|
||||
background: #5cb85c;
|
||||
border: none;
|
||||
font-weight: bolder;
|
||||
}
|
||||
div.fancytree-drag-helper.fancytree-drop-accept span.fancytree-drag-helper-img {
|
||||
background-position: -32px -112px;
|
||||
}
|
||||
div.fancytree-drag-helper.fancytree-drop-reject span.fancytree-drag-helper-img {
|
||||
background-position: -16px -112px;
|
||||
}
|
||||
/*** Drop marker icon *********************************************************/
|
||||
#fancytree-drop-marker {
|
||||
width: 32px;
|
||||
position: absolute;
|
||||
background-position: 0px -128px;
|
||||
margin: 0;
|
||||
}
|
||||
#fancytree-drop-marker.fancytree-drop-after,
|
||||
#fancytree-drop-marker.fancytree-drop-before {
|
||||
width: 64px;
|
||||
background-position: 0px -144px;
|
||||
}
|
||||
#fancytree-drop-marker.fancytree-drop-copy {
|
||||
background-position: -64px -128px;
|
||||
}
|
||||
#fancytree-drop-marker.fancytree-drop-move {
|
||||
background-position: -32px -128px;
|
||||
}
|
||||
/*** Source node while dragging ***********************************************/
|
||||
span.fancytree-drag-source.fancytree-drag-remove {
|
||||
opacity: 0.15;
|
||||
}
|
||||
/*** Target node while dragging cursor is over it *****************************/
|
||||
/*------------------------------------------------------------------------------
|
||||
* 'rtl' option
|
||||
*----------------------------------------------------------------------------*/
|
||||
.fancytree-container.fancytree-rtl .fancytree-title {
|
||||
/*unicode-bidi: bidi-override;*/
|
||||
/* optional: reverse title letters */
|
||||
}
|
||||
.fancytree-container.fancytree-rtl span.fancytree-connector,
|
||||
.fancytree-container.fancytree-rtl span.fancytree-expander,
|
||||
.fancytree-container.fancytree-rtl span.fancytree-icon,
|
||||
.fancytree-container.fancytree-rtl span.fancytree-drag-helper-img,
|
||||
.fancytree-container.fancytree-rtl #fancytree-drop-marker {
|
||||
background-image: url("icons-rtl.gif");
|
||||
}
|
||||
.fancytree-container.fancytree-rtl .fancytree-exp-n span.fancytree-expander,
|
||||
.fancytree-container.fancytree-rtl .fancytree-exp-nl span.fancytree-expander {
|
||||
background-image: none;
|
||||
}
|
||||
.fancytree-container.fancytree-rtl.fancytree-connectors .fancytree-exp-n span.fancytree-expander,
|
||||
.fancytree-container.fancytree-rtl.fancytree-connectors .fancytree-exp-nl span.fancytree-expander {
|
||||
background-image: url("icons-rtl.gif");
|
||||
}
|
||||
ul.fancytree-container.fancytree-rtl ul {
|
||||
padding: 0 16px 0 0;
|
||||
}
|
||||
ul.fancytree-container.fancytree-rtl.fancytree-connectors li {
|
||||
background-position: right 0;
|
||||
background-image: url("vline-rtl.gif");
|
||||
}
|
||||
ul.fancytree-container.fancytree-rtl li.fancytree-lastsib,
|
||||
ul.fancytree-container.fancytree-rtl.fancytree-no-connector > li {
|
||||
background-image: none;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* 'table' extension
|
||||
*----------------------------------------------------------------------------*/
|
||||
table.fancytree-ext-table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.fancytree-ext-table span.fancytree-node {
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* 'columnview' extension
|
||||
*----------------------------------------------------------------------------*/
|
||||
table.fancytree-ext-columnview tbody tr td {
|
||||
position: relative;
|
||||
border: 1px solid gray;
|
||||
vertical-align: top;
|
||||
overflow: auto;
|
||||
}
|
||||
table.fancytree-ext-columnview tbody tr td > ul {
|
||||
padding: 0;
|
||||
}
|
||||
table.fancytree-ext-columnview tbody tr td > ul li {
|
||||
list-style-image: none;
|
||||
list-style-position: outside;
|
||||
list-style-type: none;
|
||||
-moz-background-clip: border;
|
||||
-moz-background-inline-policy: continuous;
|
||||
-moz-background-origin: padding;
|
||||
background-attachment: scroll;
|
||||
background-color: transparent;
|
||||
background-position: 0px 0px;
|
||||
background-repeat: repeat-y;
|
||||
background-image: none;
|
||||
/* no v-lines */
|
||||
margin: 0;
|
||||
}
|
||||
table.fancytree-ext-columnview span.fancytree-node {
|
||||
position: relative;
|
||||
/* allow positioning of embedded spans */
|
||||
display: inline-block;
|
||||
}
|
||||
table.fancytree-ext-columnview span.fancytree-node.fancytree-expanded {
|
||||
background-color: #CBE8F6;
|
||||
}
|
||||
table.fancytree-ext-columnview .fancytree-has-children span.fancytree-cv-right {
|
||||
position: absolute;
|
||||
right: 3px;
|
||||
background-position: 0px -80px;
|
||||
}
|
||||
table.fancytree-ext-columnview .fancytree-has-children span.fancytree-cv-right:hover {
|
||||
background-position: -16px -80px;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* 'filter' extension
|
||||
*----------------------------------------------------------------------------*/
|
||||
.fancytree-ext-filter-dimm span.fancytree-node span.fancytree-title {
|
||||
color: silver;
|
||||
font-weight: lighter;
|
||||
}
|
||||
.fancytree-ext-filter-dimm tr.fancytree-submatch span.fancytree-title,
|
||||
.fancytree-ext-filter-dimm span.fancytree-node.fancytree-submatch span.fancytree-title {
|
||||
color: black;
|
||||
font-weight: normal;
|
||||
}
|
||||
.fancytree-ext-filter-dimm tr.fancytree-match span.fancytree-title,
|
||||
.fancytree-ext-filter-dimm span.fancytree-node.fancytree-match span.fancytree-title {
|
||||
color: black;
|
||||
font-weight: bold;
|
||||
}
|
||||
.fancytree-ext-filter-hide tr.fancytree-hide,
|
||||
.fancytree-ext-filter-hide span.fancytree-node.fancytree-hide {
|
||||
display: none;
|
||||
}
|
||||
.fancytree-ext-filter-hide tr.fancytree-submatch span.fancytree-title,
|
||||
.fancytree-ext-filter-hide span.fancytree-node.fancytree-submatch span.fancytree-title {
|
||||
color: silver;
|
||||
font-weight: lighter;
|
||||
}
|
||||
.fancytree-ext-filter-hide tr.fancytree-match span.fancytree-title,
|
||||
.fancytree-ext-filter-hide span.fancytree-node.fancytree-match span.fancytree-title {
|
||||
color: black;
|
||||
font-weight: normal;
|
||||
}
|
||||
/* Hide expanders if all child nodes are hidden by filter */
|
||||
.fancytree-ext-filter-hide-expanders tr.fancytree-match span.fancytree-expander,
|
||||
.fancytree-ext-filter-hide-expanders span.fancytree-node.fancytree-match span.fancytree-expander {
|
||||
visibility: hidden;
|
||||
}
|
||||
.fancytree-ext-filter-hide-expanders tr.fancytree-submatch span.fancytree-expander,
|
||||
.fancytree-ext-filter-hide-expanders span.fancytree-node.fancytree-submatch span.fancytree-expander {
|
||||
visibility: visible;
|
||||
}
|
||||
.fancytree-ext-childcounter span.fancytree-icon,
|
||||
.fancytree-ext-filter span.fancytree-icon {
|
||||
position: relative;
|
||||
}
|
||||
.fancytree-ext-childcounter span.fancytree-childcounter,
|
||||
.fancytree-ext-filter span.fancytree-childcounter {
|
||||
color: #fff;
|
||||
background: #777;
|
||||
border: 1px solid gray;
|
||||
position: absolute;
|
||||
top: -6px;
|
||||
right: -6px;
|
||||
min-width: 10px;
|
||||
height: 10px;
|
||||
line-height: 1;
|
||||
vertical-align: baseline;
|
||||
border-radius: 10px;
|
||||
padding: 2px;
|
||||
text-align: center;
|
||||
font-size: 9px;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* 'wide' extension
|
||||
*----------------------------------------------------------------------------*/
|
||||
ul.fancytree-ext-wide {
|
||||
position: relative;
|
||||
min-width: 100%;
|
||||
z-index: 2;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
ul.fancytree-ext-wide span.fancytree-node > span {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
ul.fancytree-ext-wide span.fancytree-node span.fancytree-title {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
left: 0px;
|
||||
min-width: 100%;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
/*------------------------------------------------------------------------------
|
||||
* 'fixed' extension
|
||||
*----------------------------------------------------------------------------*/
|
||||
.fancytree-ext-fixed-wrapper .fancytree-fixed-hidden {
|
||||
display: none;
|
||||
}
|
||||
.fancytree-ext-fixed-wrapper div.scrollBorderBottom {
|
||||
border-bottom: 3px solid rgba(0, 0, 0, 0.75);
|
||||
}
|
||||
.fancytree-ext-fixed-wrapper div.scrollBorderRight {
|
||||
border-right: 3px solid rgba(0, 0, 0, 0.75);
|
||||
}
|
||||
.fancytree-ext-fixed-wrapper div.fancytree-fixed-wrapper-tl {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
z-index: 3;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
}
|
||||
.fancytree-ext-fixed-wrapper div.fancytree-fixed-wrapper-tr {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
z-index: 2;
|
||||
top: 0px;
|
||||
}
|
||||
.fancytree-ext-fixed-wrapper div.fancytree-fixed-wrapper-bl {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
z-index: 2;
|
||||
left: 0px;
|
||||
}
|
||||
.fancytree-ext-fixed-wrapper div.fancytree-fixed-wrapper-br {
|
||||
position: absolute;
|
||||
overflow: scroll;
|
||||
z-index: 1;
|
||||
}
|
||||
/*******************************************************************************
|
||||
* Styles specific to this skin.
|
||||
*
|
||||
* This section is automatically generated from the `ui-fancytree.less` template.
|
||||
******************************************************************************/
|
||||
/*******************************************************************************
|
||||
* Node titles
|
||||
*/
|
||||
.fancytree-plain span.fancytree-title {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.fancytree-plain.fancytree-container.fancytree-treefocus span.fancytree-focused span.fancytree-title {
|
||||
border-color: #3399ff;
|
||||
}
|
||||
.fancytree-plain span.fancytree-active span.fancytree-title,
|
||||
.fancytree-plain span.fancytree-selected span.fancytree-title {
|
||||
background-color: #f7f7f7;
|
||||
border-color: #dedede;
|
||||
}
|
||||
.fancytree-plain span.fancytree-node span.fancytree-selected span.fancytree-title {
|
||||
font-style: italic;
|
||||
}
|
||||
.fancytree-plain span.fancytree-node:hover span.fancytree-title {
|
||||
background-color: #eff9fe;
|
||||
border-color: #70c0e7;
|
||||
}
|
||||
.fancytree-plain.fancytree-container.fancytree-treefocus span.fancytree-active span.fancytree-title,
|
||||
.fancytree-plain.fancytree-container.fancytree-treefocus span.fancytree-selected span.fancytree-title {
|
||||
background-color: #cbe8f6;
|
||||
border-color: #26a0da;
|
||||
}
|
||||
/*******************************************************************************
|
||||
* 'table' extension
|
||||
*/
|
||||
table.fancytree-ext-table tbody tr td {
|
||||
border: 1px solid #EDEDED;
|
||||
}
|
||||
table.fancytree-ext-table tbody span.fancytree-node,
|
||||
table.fancytree-ext-table tbody span.fancytree-node:hover {
|
||||
border: none;
|
||||
background: none;
|
||||
}
|
||||
table.fancytree-ext-table tbody tr:hover {
|
||||
background-color: #E5F3FB;
|
||||
outline: 1px solid #70C0E7;
|
||||
}
|
||||
table.fancytree-ext-table tbody tr.fancytree-focused span.fancytree-title {
|
||||
outline: 1px dotted black;
|
||||
}
|
||||
table.fancytree-ext-table tbody tr.fancytree-active:hover,
|
||||
table.fancytree-ext-table tbody tr.fancytree-selected:hover {
|
||||
background-color: #CBE8F6;
|
||||
outline: 1px solid #26A0DA;
|
||||
}
|
||||
table.fancytree-ext-table tbody tr.fancytree-active {
|
||||
background-color: #F7F7F7;
|
||||
outline: 1px solid #DEDEDE;
|
||||
}
|
||||
table.fancytree-ext-table tbody tr.fancytree-selected {
|
||||
background-color: #F7F7F7;
|
||||
}
|
||||
table.fancytree-ext-table.fancytree-treefocus tbody tr.fancytree-active {
|
||||
background-color: #CBE8F6;
|
||||
outline: 1px solid #26A0DA;
|
||||
}
|
||||
table.fancytree-ext-table.fancytree-treefocus tbody tr.fancytree-selected {
|
||||
background-color: #CBE8F6;
|
||||
}
|
||||
@@ -0,0 +1,151 @@
|
||||
/*!
|
||||
* Fancytree "Win8" skin.
|
||||
*
|
||||
* DON'T EDIT THE CSS FILE DIRECTLY, since it is automatically generated from
|
||||
* the LESS templates.
|
||||
*/
|
||||
|
||||
// Import common styles
|
||||
@import "../skin-common.less";
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
* Styles specific to this skin.
|
||||
*
|
||||
* This section is automatically generated from the `ui-fancytree.less` template.
|
||||
******************************************************************************/
|
||||
|
||||
// Borders have NO radius and NO gradients are used!
|
||||
|
||||
// both:
|
||||
// unselected background: white
|
||||
// hover bar (unselected, inactive): #E5F3FB (border: #70C0E7) 'very light blue'
|
||||
// active node: #CBE8F6 (border: #26A0DA) 'light blue'
|
||||
// active node with hover: wie active node
|
||||
|
||||
// Tree view:
|
||||
// active node, tree inactive: #F7F7F7 (border: #DEDEDE) 'light gray, selected, but tree not active'
|
||||
|
||||
// List view:
|
||||
// selected bar: --> active bar
|
||||
// focus bar: transparent(white) + border 1px solid #3399FF ()
|
||||
|
||||
// table left/right border: #EDEDED 'light gray'
|
||||
|
||||
// Override the variable after the import.
|
||||
// NOTE: Variables are always resolved as the last definition, even if it is
|
||||
// after where it is used.
|
||||
@fancy-use-sprites: true; // false: suppress all background images (i.e. icons)
|
||||
|
||||
@fancy-line-height: 20px; // height of a nodes selection bar including borders
|
||||
@fancy-node-v-spacing: 0px; // gap between two node borders
|
||||
@fancy-icon-width: 16px;
|
||||
@fancy-icon-height: 16px;
|
||||
@fancy-icon-spacing: 3px; // margin between icon/icon or icon/title
|
||||
@fancy-icon-ofs-top: 2px; // extra vertical offset for expander, checkbox and icon
|
||||
@fancy-title-ofs-top: 0px; // extra vertical offset for title
|
||||
@fancy-node-border-width: 1px;
|
||||
@fancy-node-border-radius: 0px;
|
||||
@fancy-node-outline-width: 1px;
|
||||
|
||||
|
||||
// @fancy-icon-width: 16px;
|
||||
// @fancy-icon-height: 16px;
|
||||
// @fancy-line-height: 16px;
|
||||
// @fancy-icon-spacing: 3px;
|
||||
|
||||
// Use 'data-uri(...)' to embed the image into CSS instead of linking to 'loading.gif':
|
||||
@fancy-loading-url: data-uri("@{fancy-image-dir}/loading.gif");
|
||||
// Set to `true` to use `data-uri(...)` which will embed icons.gif into CSS
|
||||
// instead of linking to that file:
|
||||
// @fancy-inline-sprites: true;
|
||||
|
||||
/*******************************************************************************
|
||||
* Node titles
|
||||
*/
|
||||
.fancytree-plain {
|
||||
span.fancytree-title {
|
||||
border: @fancy-node-border-width solid transparent; // avoid jumping, when a border is added on hover
|
||||
}
|
||||
&.fancytree-container.fancytree-treefocus span.fancytree-focused span.fancytree-title {
|
||||
border-color: #3399ff;
|
||||
}
|
||||
span.fancytree-active span.fancytree-title,
|
||||
span.fancytree-selected span.fancytree-title { // active/selcted nodes inside inactive tree
|
||||
background-color: #f7f7f7;
|
||||
border-color: #dedede;
|
||||
}
|
||||
span.fancytree-node span.fancytree-selected span.fancytree-title {
|
||||
font-style: italic;
|
||||
}
|
||||
span.fancytree-node:hover span.fancytree-title {
|
||||
background-color: #eff9fe; // hover is always colored, even if tree is unfocused
|
||||
border-color: #70c0e7;
|
||||
}
|
||||
&.fancytree-container.fancytree-treefocus {
|
||||
span.fancytree-active span.fancytree-title,
|
||||
span.fancytree-selected span.fancytree-title {
|
||||
background-color: #cbe8f6;
|
||||
border-color: #26a0da;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
* 'table' extension
|
||||
*/
|
||||
table.fancytree-ext-table tbody {
|
||||
tr td {
|
||||
border: 1px solid #EDEDED;
|
||||
}
|
||||
span.fancytree-node,
|
||||
span.fancytree-node:hover { // undo standard tree css
|
||||
border: none;
|
||||
background: none;
|
||||
}
|
||||
// Title gets a white background, when hovered. Undo standard node formatting
|
||||
// span.fancytree-title:hover {
|
||||
// border: none; //1px solid transparent;
|
||||
// background: inherit;
|
||||
// background: transparent;
|
||||
// background: none;
|
||||
// filter: none;
|
||||
// }
|
||||
tr:hover {
|
||||
background-color: #E5F3FB;
|
||||
outline: 1px solid #70C0E7;
|
||||
}
|
||||
// tr:hover td {
|
||||
// outline: 1px solid #D8F0FA;
|
||||
// }
|
||||
// tr.fancytree-focused {
|
||||
// border-color: #3399FF;
|
||||
// outline: 1px dotted black;
|
||||
// }
|
||||
tr.fancytree-focused span.fancytree-title {
|
||||
outline: 1px dotted black;
|
||||
}
|
||||
|
||||
tr.fancytree-active:hover,
|
||||
tr.fancytree-selected:hover {
|
||||
background-color: #CBE8F6;
|
||||
outline: 1px solid #26A0DA;
|
||||
}
|
||||
tr.fancytree-active { // dimmed, if inside inactive tree
|
||||
background-color: #F7F7F7;
|
||||
outline: 1px solid #DEDEDE;
|
||||
}
|
||||
tr.fancytree-selected { // dimmed, if inside inactive tree
|
||||
background-color: #F7F7F7;
|
||||
}
|
||||
}
|
||||
|
||||
table.fancytree-ext-table.fancytree-treefocus tbody {
|
||||
tr.fancytree-active {
|
||||
background-color: #CBE8F6;
|
||||
outline: 1px solid #26A0DA;
|
||||
}
|
||||
tr.fancytree-selected {
|
||||
background-color: #CBE8F6;
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 852 B |
|
After Width: | Height: | Size: 852 B |
@@ -0,0 +1,208 @@
|
||||
/*!
|
||||
* FullCalendar v3.0.1 Print Stylesheet
|
||||
* Docs & License: http://fullcalendar.io/
|
||||
* (c) 2016 Adam Shaw
|
||||
*/
|
||||
|
||||
/*
|
||||
* Include this stylesheet on your page to get a more printer-friendly calendar.
|
||||
* When including this stylesheet, use the media='print' attribute of the <link> tag.
|
||||
* Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css.
|
||||
*/
|
||||
|
||||
.fc {
|
||||
max-width: 100% !important;
|
||||
}
|
||||
|
||||
|
||||
/* Global Event Restyling
|
||||
--------------------------------------------------------------------------------------------------*/
|
||||
|
||||
.fc-event {
|
||||
background: #fff !important;
|
||||
color: #000 !important;
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
.fc-event .fc-resizer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* Table & Day-Row Restyling
|
||||
--------------------------------------------------------------------------------------------------*/
|
||||
|
||||
.fc th,
|
||||
.fc td,
|
||||
.fc hr,
|
||||
.fc thead,
|
||||
.fc tbody,
|
||||
.fc-row {
|
||||
border-color: #ccc !important;
|
||||
background: #fff !important;
|
||||
}
|
||||
|
||||
/* kill the overlaid, absolutely-positioned components */
|
||||
/* common... */
|
||||
.fc-bg,
|
||||
.fc-bgevent-skeleton,
|
||||
.fc-highlight-skeleton,
|
||||
.fc-helper-skeleton,
|
||||
/* for timegrid. within cells within table skeletons... */
|
||||
.fc-bgevent-container,
|
||||
.fc-business-container,
|
||||
.fc-highlight-container,
|
||||
.fc-helper-container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* don't force a min-height on rows (for DayGrid) */
|
||||
.fc tbody .fc-row {
|
||||
height: auto !important; /* undo height that JS set in distributeHeight */
|
||||
min-height: 0 !important; /* undo the min-height from each view's specific stylesheet */
|
||||
}
|
||||
|
||||
.fc tbody .fc-row .fc-content-skeleton {
|
||||
position: static; /* undo .fc-rigid */
|
||||
padding-bottom: 0 !important; /* use a more border-friendly method for this... */
|
||||
}
|
||||
|
||||
.fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td { /* only works in newer browsers */
|
||||
padding-bottom: 1em; /* ...gives space within the skeleton. also ensures min height in a way */
|
||||
}
|
||||
|
||||
.fc tbody .fc-row .fc-content-skeleton table {
|
||||
/* provides a min-height for the row, but only effective for IE, which exaggerates this value,
|
||||
making it look more like 3em. for other browers, it will already be this tall */
|
||||
height: 1em;
|
||||
}
|
||||
|
||||
|
||||
/* Undo month-view event limiting. Display all events and hide the "more" links
|
||||
--------------------------------------------------------------------------------------------------*/
|
||||
|
||||
.fc-more-cell,
|
||||
.fc-more {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.fc tr.fc-limited {
|
||||
display: table-row !important;
|
||||
}
|
||||
|
||||
.fc td.fc-limited {
|
||||
display: table-cell !important;
|
||||
}
|
||||
|
||||
.fc-popover {
|
||||
display: none; /* never display the "more.." popover in print mode */
|
||||
}
|
||||
|
||||
|
||||
/* TimeGrid Restyling
|
||||
--------------------------------------------------------------------------------------------------*/
|
||||
|
||||
/* undo the min-height 100% trick used to fill the container's height */
|
||||
.fc-time-grid {
|
||||
min-height: 0 !important;
|
||||
}
|
||||
|
||||
/* don't display the side axis at all ("all-day" and time cells) */
|
||||
.fc-agenda-view .fc-axis {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* don't display the horizontal lines */
|
||||
.fc-slats,
|
||||
.fc-time-grid hr { /* this hr is used when height is underused and needs to be filled */
|
||||
display: none !important; /* important overrides inline declaration */
|
||||
}
|
||||
|
||||
/* let the container that holds the events be naturally positioned and create real height */
|
||||
.fc-time-grid .fc-content-skeleton {
|
||||
position: static;
|
||||
}
|
||||
|
||||
/* in case there are no events, we still want some height */
|
||||
.fc-time-grid .fc-content-skeleton table {
|
||||
height: 4em;
|
||||
}
|
||||
|
||||
/* kill the horizontal spacing made by the event container. event margins will be done below */
|
||||
.fc-time-grid .fc-event-container {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
|
||||
/* TimeGrid *Event* Restyling
|
||||
--------------------------------------------------------------------------------------------------*/
|
||||
|
||||
/* naturally position events, vertically stacking them */
|
||||
.fc-time-grid .fc-event {
|
||||
position: static !important;
|
||||
margin: 3px 2px !important;
|
||||
}
|
||||
|
||||
/* for events that continue to a future day, give the bottom border back */
|
||||
.fc-time-grid .fc-event.fc-not-end {
|
||||
border-bottom-width: 1px !important;
|
||||
}
|
||||
|
||||
/* indicate the event continues via "..." text */
|
||||
.fc-time-grid .fc-event.fc-not-end:after {
|
||||
content: "...";
|
||||
}
|
||||
|
||||
/* for events that are continuations from previous days, give the top border back */
|
||||
.fc-time-grid .fc-event.fc-not-start {
|
||||
border-top-width: 1px !important;
|
||||
}
|
||||
|
||||
/* indicate the event is a continuation via "..." text */
|
||||
.fc-time-grid .fc-event.fc-not-start:before {
|
||||
content: "...";
|
||||
}
|
||||
|
||||
/* time */
|
||||
|
||||
/* undo a previous declaration and let the time text span to a second line */
|
||||
.fc-time-grid .fc-event .fc-time {
|
||||
white-space: normal !important;
|
||||
}
|
||||
|
||||
/* hide the the time that is normally displayed... */
|
||||
.fc-time-grid .fc-event .fc-time span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
|
||||
.fc-time-grid .fc-event .fc-time:after {
|
||||
content: attr(data-full);
|
||||
}
|
||||
|
||||
|
||||
/* Vertical Scroller & Containers
|
||||
--------------------------------------------------------------------------------------------------*/
|
||||
|
||||
/* kill the scrollbars and allow natural height */
|
||||
.fc-scroller,
|
||||
.fc-day-grid-container, /* these divs might be assigned height, which we need to cleared */
|
||||
.fc-time-grid-container { /* */
|
||||
overflow: visible !important;
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
/* kill the horizontal border/padding used to compensate for scrollbars */
|
||||
.fc-row {
|
||||
border: 0 !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
|
||||
/* Button Controls
|
||||
--------------------------------------------------------------------------------------------------*/
|
||||
|
||||
.fc-button-group,
|
||||
.fc button {
|
||||
display: none; /* don't display any button-related controls */
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
!function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):"object"==typeof exports?module.exports=e(require("jquery"),require("moment")):e(jQuery,moment)}(function(e,t){!function(){var e=t.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"Ah点mm分",LTS:"Ah点m分s秒",L:"YYYY-MM-DD",LL:"YYYY年MMMD日",LLL:"YYYY年MMMD日Ah点mm分",LLLL:"YYYY年MMMD日ddddAh点mm分",l:"YYYY-MM-DD",ll:"YYYY年MMMD日",lll:"YYYY年MMMD日Ah点mm分",llll:"YYYY年MMMD日ddddAh点mm分"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"下午"===t||"晚上"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:function(){return 0===this.minutes()?"[今天]Ah[点整]":"[今天]LT"},nextDay:function(){return 0===this.minutes()?"[明天]Ah[点整]":"[明天]LT"},lastDay:function(){return 0===this.minutes()?"[昨天]Ah[点整]":"[昨天]LT"},nextWeek:function(){var e,n;return e=t().startOf("week"),n=this.diff(e,"days")>=7?"[下]":"[本]",0===this.minutes()?n+"dddAh点整":n+"dddAh点mm"},lastWeek:function(){var e,n;return e=t().startOf("week"),n=this.unix()<e.unix()?"[上]":"[本]",0===this.minutes()?n+"dddAh点整":n+"dddAh点mm"},sameElse:"LL"},ordinalParse:/\d{1,2}(日|月|周)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"周";default:return e}},relativeTime:{future:"%s内",past:"%s前",s:"几秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("zh-cn","zh-CN",{closeText:"关闭",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),e.fullCalendar.locale("zh-cn",{buttonText:{month:"月",week:"周",day:"日",list:"日程"},allDayText:"全天",eventLimitText:function(e){return"另外 "+e+" 个"},noEventsMessage:"没有事件显示"})});
|
||||
@@ -0,0 +1,285 @@
|
||||
/*
|
||||
Highcharts JS v3.0.7 (2013-10-24)
|
||||
|
||||
(c) 2009-2013 Torstein Hønsi
|
||||
|
||||
License: www.highcharts.com/license
|
||||
*/
|
||||
(function(){function s(a,b){var c;a||(a={});for(c in b)a[c]=b[c];return a}function x(){var a,b=arguments.length,c={},d=function(a,b){var c,h;typeof a!=="object"&&(a={});for(h in b)b.hasOwnProperty(h)&&(c=b[h],a[h]=c&&typeof c==="object"&&Object.prototype.toString.call(c)!=="[object Array]"&&typeof c.nodeType!=="number"?d(a[h]||{},c):b[h]);return a};for(a=0;a<b;a++)c=d(c,arguments[a]);return c}function y(a,b){return parseInt(a,b||10)}function ea(a){return typeof a==="string"}function T(a){return typeof a===
|
||||
"object"}function Ia(a){return Object.prototype.toString.call(a)==="[object Array]"}function ra(a){return typeof a==="number"}function ma(a){return R.log(a)/R.LN10}function fa(a){return R.pow(10,a)}function ga(a,b){for(var c=a.length;c--;)if(a[c]===b){a.splice(c,1);break}}function u(a){return a!==v&&a!==null}function w(a,b,c){var d,e;if(ea(b))u(c)?a.setAttribute(b,c):a&&a.getAttribute&&(e=a.getAttribute(b));else if(u(b)&&T(b))for(d in b)a.setAttribute(d,b[d]);return e}function ja(a){return Ia(a)?
|
||||
a:[a]}function o(){var a=arguments,b,c,d=a.length;for(b=0;b<d;b++)if(c=a[b],typeof c!=="undefined"&&c!==null)return c}function I(a,b){if(sa&&b&&b.opacity!==v)b.filter="alpha(opacity="+b.opacity*100+")";s(a.style,b)}function U(a,b,c,d,e){a=z.createElement(a);b&&s(a,b);e&&I(a,{padding:0,border:S,margin:0});c&&I(a,c);d&&d.appendChild(a);return a}function ha(a,b){var c=function(){};c.prototype=new a;s(c.prototype,b);return c}function Aa(a,b,c,d){var e=L.lang,a=+a||0,f=b===-1?(a.toString().split(".")[1]||
|
||||
"").length:isNaN(b=M(b))?2:b,b=c===void 0?e.decimalPoint:c,d=d===void 0?e.thousandsSep:d,e=a<0?"-":"",c=String(y(a=M(a).toFixed(f))),g=c.length>3?c.length%3:0;return e+(g?c.substr(0,g)+d:"")+c.substr(g).replace(/(\d{3})(?=\d)/g,"$1"+d)+(f?b+M(a-c).toFixed(f).slice(2):"")}function Ba(a,b){return Array((b||2)+1-String(a).length).join(0)+a}function mb(a,b,c){var d=a[b];a[b]=function(){var a=Array.prototype.slice.call(arguments);a.unshift(d);return c.apply(this,a)}}function Ca(a,b){for(var c="{",d=!1,
|
||||
e,f,g,h,i,j=[];(c=a.indexOf(c))!==-1;){e=a.slice(0,c);if(d){f=e.split(":");g=f.shift().split(".");i=g.length;e=b;for(h=0;h<i;h++)e=e[g[h]];if(f.length)f=f.join(":"),g=/\.([0-9])/,h=L.lang,i=void 0,/f$/.test(f)?(i=(i=f.match(g))?i[1]:-1,e=Aa(e,i,h.decimalPoint,f.indexOf(",")>-1?h.thousandsSep:"")):e=Ya(f,e)}j.push(e);a=a.slice(c+1);c=(d=!d)?"}":"{"}j.push(a);return j.join("")}function nb(a){return R.pow(10,P(R.log(a)/R.LN10))}function ob(a,b,c,d){var e,c=o(c,1);e=a/c;b||(b=[1,2,2.5,5,10],d&&d.allowDecimals===
|
||||
!1&&(c===1?b=[1,2,5,10]:c<=0.1&&(b=[1/c])));for(d=0;d<b.length;d++)if(a=b[d],e<=(b[d]+(b[d+1]||b[d]))/2)break;a*=c;return a}function Cb(a,b){var c=b||[[Db,[1,2,5,10,20,25,50,100,200,500]],[pb,[1,2,5,10,15,30]],[Za,[1,2,5,10,15,30]],[Qa,[1,2,3,4,6,8,12]],[ta,[1,2]],[$a,[1,2]],[Ra,[1,2,3,4,6]],[Da,null]],d=c[c.length-1],e=D[d[0]],f=d[1],g;for(g=0;g<c.length;g++)if(d=c[g],e=D[d[0]],f=d[1],c[g+1]&&a<=(e*f[f.length-1]+D[c[g+1][0]])/2)break;e===D[Da]&&a<5*e&&(f=[1,2,5]);c=ob(a/e,f,d[0]===Da?r(nb(a/e),1):
|
||||
1);return{unitRange:e,count:c,unitName:d[0]}}function Eb(a,b,c,d){var e=[],f={},g=L.global.useUTC,h,i=new Date(b),j=a.unitRange,k=a.count;if(u(b)){j>=D[pb]&&(i.setMilliseconds(0),i.setSeconds(j>=D[Za]?0:k*P(i.getSeconds()/k)));if(j>=D[Za])i[Fb](j>=D[Qa]?0:k*P(i[qb]()/k));if(j>=D[Qa])i[Gb](j>=D[ta]?0:k*P(i[rb]()/k));if(j>=D[ta])i[sb](j>=D[Ra]?1:k*P(i[Sa]()/k));j>=D[Ra]&&(i[Hb](j>=D[Da]?0:k*P(i[ab]()/k)),h=i[bb]());j>=D[Da]&&(h-=h%k,i[Ib](h));if(j===D[$a])i[sb](i[Sa]()-i[tb]()+o(d,1));b=1;h=i[bb]();
|
||||
for(var d=i.getTime(),l=i[ab](),m=i[Sa](),p=g?0:(864E5+i.getTimezoneOffset()*6E4)%864E5;d<c;)e.push(d),j===D[Da]?d=cb(h+b*k,0):j===D[Ra]?d=cb(h,l+b*k):!g&&(j===D[ta]||j===D[$a])?d=cb(h,l,m+b*k*(j===D[ta]?1:7)):d+=j*k,b++;e.push(d);n(ub(e,function(a){return j<=D[Qa]&&a%D[ta]===p}),function(a){f[a]=ta})}e.info=s(a,{higherRanks:f,totalRange:j*k});return e}function Jb(){this.symbol=this.color=0}function Kb(a,b){var c=a.length,d,e;for(e=0;e<c;e++)a[e].ss_i=e;a.sort(function(a,c){d=b(a,c);return d===0?
|
||||
a.ss_i-c.ss_i:d});for(e=0;e<c;e++)delete a[e].ss_i}function Ja(a){for(var b=a.length,c=a[0];b--;)a[b]<c&&(c=a[b]);return c}function ua(a){for(var b=a.length,c=a[0];b--;)a[b]>c&&(c=a[b]);return c}function Ka(a,b){for(var c in a)a[c]&&a[c]!==b&&a[c].destroy&&a[c].destroy(),delete a[c]}function Ta(a){db||(db=U(Ea));a&&db.appendChild(a);db.innerHTML=""}function ka(a,b){var c="Highcharts error #"+a+": www.highcharts.com/errors/"+a;if(b)throw c;else N.console&&console.log(c)}function ia(a){return parseFloat(a.toPrecision(14))}
|
||||
function La(a,b){Fa=o(a,b.animation)}function Lb(){var a=L.global.useUTC,b=a?"getUTC":"get",c=a?"setUTC":"set";cb=a?Date.UTC:function(a,b,c,g,h,i){return(new Date(a,b,o(c,1),o(g,0),o(h,0),o(i,0))).getTime()};qb=b+"Minutes";rb=b+"Hours";tb=b+"Day";Sa=b+"Date";ab=b+"Month";bb=b+"FullYear";Fb=c+"Minutes";Gb=c+"Hours";sb=c+"Date";Hb=c+"Month";Ib=c+"FullYear"}function va(){}function Ma(a,b,c,d){this.axis=a;this.pos=b;this.type=c||"";this.isNew=!0;!c&&!d&&this.addLabel()}function vb(a,b){this.axis=a;if(b)this.options=
|
||||
b,this.id=b.id}function Mb(a,b,c,d,e,f){var g=a.chart.inverted;this.axis=a;this.isNegative=c;this.options=b;this.x=d;this.total=null;this.points={};this.stack=e;this.percent=f==="percent";this.alignOptions={align:b.align||(g?c?"left":"right":"center"),verticalAlign:b.verticalAlign||(g?"middle":c?"bottom":"top"),y:o(b.y,g?4:c?14:-6),x:o(b.x,g?c?-6:6:0)};this.textAlign=b.textAlign||(g?c?"right":"left":"center")}function eb(){this.init.apply(this,arguments)}function wb(){this.init.apply(this,arguments)}
|
||||
function xb(a,b){this.init(a,b)}function fb(a,b){this.init(a,b)}function yb(){this.init.apply(this,arguments)}var v,z=document,N=window,R=Math,t=R.round,P=R.floor,wa=R.ceil,r=R.max,J=R.min,M=R.abs,V=R.cos,ba=R.sin,xa=R.PI,Ua=xa*2/360,na=navigator.userAgent,Nb=N.opera,sa=/msie/i.test(na)&&!Nb,gb=z.documentMode===8,hb=/AppleWebKit/.test(na),ib=/Firefox/.test(na),Ob=/(Mobile|Android|Windows Phone)/.test(na),ya="http://www.w3.org/2000/svg",W=!!z.createElementNS&&!!z.createElementNS(ya,"svg").createSVGRect,
|
||||
Ub=ib&&parseInt(na.split("Firefox/")[1],10)<4,ca=!W&&!sa&&!!z.createElement("canvas").getContext,Va,jb=z.documentElement.ontouchstart!==v,Pb={},zb=0,db,L,Ya,Fa,Ab,D,oa=function(){},Ga=[],Ea="div",S="none",Qb="rgba(192,192,192,"+(W?1.0E-4:0.002)+")",Db="millisecond",pb="second",Za="minute",Qa="hour",ta="day",$a="week",Ra="month",Da="year",Rb="stroke-width",cb,qb,rb,tb,Sa,ab,bb,Fb,Gb,sb,Hb,Ib,X={};N.Highcharts=N.Highcharts?ka(16,!0):{};Ya=function(a,b,c){if(!u(b)||isNaN(b))return"Invalid date";var a=
|
||||
o(a,"%Y-%m-%d %H:%M:%S"),d=new Date(b),e,f=d[rb](),g=d[tb](),h=d[Sa](),i=d[ab](),j=d[bb](),k=L.lang,l=k.weekdays,d=s({a:l[g].substr(0,3),A:l[g],d:Ba(h),e:h,b:k.shortMonths[i],B:k.months[i],m:Ba(i+1),y:j.toString().substr(2,2),Y:j,H:Ba(f),I:Ba(f%12||12),l:f%12||12,M:Ba(d[qb]()),p:f<12?"AM":"PM",P:f<12?"am":"pm",S:Ba(d.getSeconds()),L:Ba(t(b%1E3),3)},Highcharts.dateFormats);for(e in d)for(;a.indexOf("%"+e)!==-1;)a=a.replace("%"+e,typeof d[e]==="function"?d[e](b):d[e]);return c?a.substr(0,1).toUpperCase()+
|
||||
a.substr(1):a};Jb.prototype={wrapColor:function(a){if(this.color>=a)this.color=0},wrapSymbol:function(a){if(this.symbol>=a)this.symbol=0}};D=function(){for(var a=0,b=arguments,c=b.length,d={};a<c;a++)d[b[a++]]=b[a];return d}(Db,1,pb,1E3,Za,6E4,Qa,36E5,ta,864E5,$a,6048E5,Ra,26784E5,Da,31556952E3);Ab={init:function(a,b,c){var b=b||"",d=a.shift,e=b.indexOf("C")>-1,f=e?7:3,g,b=b.split(" "),c=[].concat(c),h,i,j=function(a){for(g=a.length;g--;)a[g]==="M"&&a.splice(g+1,0,a[g+1],a[g+2],a[g+1],a[g+2])};e&&
|
||||
(j(b),j(c));a.isArea&&(h=b.splice(b.length-6,6),i=c.splice(c.length-6,6));if(d<=c.length/f&&b.length===c.length)for(;d--;)c=[].concat(c).splice(0,f).concat(c);a.shift=0;if(b.length)for(a=c.length;b.length<a;)d=[].concat(b).splice(b.length-f,f),e&&(d[f-6]=d[f-2],d[f-5]=d[f-1]),b=b.concat(d);h&&(b=b.concat(h),c=c.concat(i));return[b,c]},step:function(a,b,c,d){var e=[],f=a.length;if(c===1)e=d;else if(f===b.length&&c<1)for(;f--;)d=parseFloat(a[f]),e[f]=isNaN(d)?a[f]:c*parseFloat(b[f]-d)+d;else e=b;return e}};
|
||||
(function(a){N.HighchartsAdapter=N.HighchartsAdapter||a&&{init:function(b){var c=a.fx,d=c.step,e,f=a.Tween,g=f&&f.propHooks;e=a.cssHooks.opacity;a.extend(a.easing,{easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c}});a.each(["cur","_default","width","height","opacity"],function(a,b){var e=d,k,l;b==="cur"?e=c.prototype:b==="_default"&&f&&(e=g[b],b="set");(k=e[b])&&(e[b]=function(c){c=a?c:this;if(c.prop!=="align")return l=c.elem,l.attr?l.attr(c.prop,b==="cur"?v:c.now):k.apply(this,arguments)})});
|
||||
mb(e,"get",function(a,b,c){return b.attr?b.opacity||0:a.call(this,b,c)});e=function(a){var c=a.elem,d;if(!a.started)d=b.init(c,c.d,c.toD),a.start=d[0],a.end=d[1],a.started=!0;c.attr("d",b.step(a.start,a.end,a.pos,c.toD))};f?g.d={set:e}:d.d=e;this.each=Array.prototype.forEach?function(a,b){return Array.prototype.forEach.call(a,b)}:function(a,b){for(var c=0,d=a.length;c<d;c++)if(b.call(a[c],a[c],c,a)===!1)return c};a.fn.highcharts=function(){var a="Chart",b=arguments,c,d;ea(b[0])&&(a=b[0],b=Array.prototype.slice.call(b,
|
||||
1));c=b[0];if(c!==v)c.chart=c.chart||{},c.chart.renderTo=this[0],new Highcharts[a](c,b[1]),d=this;c===v&&(d=Ga[w(this[0],"data-highcharts-chart")]);return d}},getScript:a.getScript,inArray:a.inArray,adapterRun:function(b,c){return a(b)[c]()},grep:a.grep,map:function(a,c){for(var d=[],e=0,f=a.length;e<f;e++)d[e]=c.call(a[e],a[e],e,a);return d},offset:function(b){return a(b).offset()},addEvent:function(b,c,d){a(b).bind(c,d)},removeEvent:function(b,c,d){var e=z.removeEventListener?"removeEventListener":
|
||||
"detachEvent";z[e]&&b&&!b[e]&&(b[e]=function(){});a(b).unbind(c,d)},fireEvent:function(b,c,d,e){var f=a.Event(c),g="detached"+c,h;!sa&&d&&(delete d.layerX,delete d.layerY);s(f,d);b[c]&&(b[g]=b[c],b[c]=null);a.each(["preventDefault","stopPropagation"],function(a,b){var c=f[b];f[b]=function(){try{c.call(f)}catch(a){b==="preventDefault"&&(h=!0)}}});a(b).trigger(f);b[g]&&(b[c]=b[g],b[g]=null);e&&!f.isDefaultPrevented()&&!h&&e(f)},washMouseEvent:function(a){var c=a.originalEvent||a;if(c.pageX===v)c.pageX=
|
||||
a.pageX,c.pageY=a.pageY;return c},animate:function(b,c,d){var e=a(b);if(!b.style)b.style={};if(c.d)b.toD=c.d,c.d=1;e.stop();c.opacity!==v&&b.attr&&(c.opacity+="px");e.animate(c,d)},stop:function(b){a(b).stop()}}})(N.jQuery);var Y=N.HighchartsAdapter,G=Y||{};Y&&Y.init.call(Y,Ab);var kb=G.adapterRun,Vb=G.getScript,pa=G.inArray,n=G.each,ub=G.grep,Wb=G.offset,Na=G.map,K=G.addEvent,$=G.removeEvent,A=G.fireEvent,Xb=G.washMouseEvent,Bb=G.animate,Wa=G.stop,G={enabled:!0,x:0,y:15,style:{color:"#666",cursor:"default",
|
||||
fontSize:"11px",lineHeight:"14px"}};L={colors:"#2f7ed8,#0d233a,#8bbc21,#910000,#1aadce,#492970,#f28f43,#77a1e5,#c42525,#a6c96a".split(","),symbols:["circle","diamond","square","triangle","triangle-down"],lang:{loading:"Loading...",months:"January,February,March,April,May,June,July,August,September,October,November,December".split(","),shortMonths:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec".split(","),weekdays:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday".split(","),decimalPoint:".",
|
||||
numericSymbols:"k,M,G,T,P,E".split(","),resetZoom:"Reset zoom",resetZoomTitle:"Reset zoom level 1:1",thousandsSep:","},global:{useUTC:!0,canvasToolsURL:"http://code.highcharts.com/3.0.7/modules/canvas-tools.js",VMLRadialGradientURL:"http://code.highcharts.com/3.0.7/gfx/vml-radial-gradient.png"},chart:{borderColor:"#4572A7",borderRadius:5,defaultSeriesType:"line",ignoreHiddenSeries:!0,spacing:[10,10,15,10],style:{fontFamily:'"微软雅黑","Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif',
|
||||
fontSize:"12px"},backgroundColor:"#FFFFFF",plotBorderColor:"#C0C0C0",resetZoomButton:{theme:{zIndex:20},position:{align:"right",x:-10,y:10}}},title:{text:"Chart title",align:"center",margin:15,style:{color:"#274b6d",fontSize:"16px"}},subtitle:{text:"",align:"center",style:{color:"#4d759e"}},plotOptions:{line:{allowPointSelect:!1,showCheckbox:!1,animation:{duration:1E3},events:{},lineWidth:2,marker:{enabled:!0,lineWidth:0,radius:4,lineColor:"#FFFFFF",states:{hover:{enabled:!0},select:{fillColor:"#FFFFFF",
|
||||
lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:x(G,{align:"center",enabled:!1,formatter:function(){return this.y===null?"":Aa(this.y,-1)},verticalAlign:"bottom",y:0}),cropThreshold:300,pointRange:0,states:{hover:{marker:{}},select:{marker:{}}},stickyTracking:!0}},labels:{style:{position:"absolute",color:"#3E576F"}},legend:{enabled:!0,align:"center",layout:"horizontal",labelFormatter:function(){return this.name},borderWidth:1,borderColor:"#909090",borderRadius:5,navigation:{activeColor:"#274b6d",
|
||||
inactiveColor:"#CCC"},shadow:!1,itemStyle:{cursor:"pointer",color:"#274b6d",fontSize:"12px"},itemHoverStyle:{color:"#000"},itemHiddenStyle:{color:"#CCC"},itemCheckboxStyle:{position:"absolute",width:"13px",height:"13px"},symbolWidth:16,symbolPadding:5,verticalAlign:"bottom",x:0,y:0,title:{style:{fontWeight:"bold"}}},loading:{labelStyle:{fontWeight:"bold",position:"relative",top:"1em"},style:{position:"absolute",backgroundColor:"white",opacity:0.5,textAlign:"center"}},tooltip:{enabled:!0,animation:W,
|
||||
backgroundColor:"rgba(255, 255, 255, .85)",borderWidth:1,borderRadius:3,dateTimeLabelFormats:{millisecond:"%A, %b %e, %H:%M:%S.%L",second:"%A, %b %e, %H:%M:%S",minute:"%A, %b %e, %H:%M",hour:"%A, %b %e, %H:%M",day:"%A, %b %e, %Y",week:"Week from %A, %b %e, %Y",month:"%B %Y",year:"%Y"},headerFormat:'<span style="font-size: 10px">{point.key}</span><br/>',pointFormat:'<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b><br/>',shadow:!0,snap:Ob?25:10,style:{color:"#333333",cursor:"default",
|
||||
fontSize:"12px",padding:"8px",whiteSpace:"nowrap"}},credits:{enabled:!0,text:"sc35.com",href:"http://www.sc35.com",position:{align:"right",x:-10,verticalAlign:"bottom",y:-5},style:{cursor:"pointer",color:"#909090",fontSize:"9px"}}};var Z=L.plotOptions,Y=Z.line;Lb();var Yb=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]?(?:\.[0-9]+)?)\s*\)/,Zb=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/,$b=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/,
|
||||
qa=function(a){var b=[],c,d;(function(a){a&&a.stops?d=Na(a.stops,function(a){return qa(a[1])}):(c=Yb.exec(a))?b=[y(c[1]),y(c[2]),y(c[3]),parseFloat(c[4],10)]:(c=Zb.exec(a))?b=[y(c[1],16),y(c[2],16),y(c[3],16),1]:(c=$b.exec(a))&&(b=[y(c[1]),y(c[2]),y(c[3]),1])})(a);return{get:function(c){var f;d?(f=x(a),f.stops=[].concat(f.stops),n(d,function(a,b){f.stops[b]=[f.stops[b][0],a.get(c)]})):f=b&&!isNaN(b[0])?c==="rgb"?"rgb("+b[0]+","+b[1]+","+b[2]+")":c==="a"?b[3]:"rgba("+b.join(",")+")":a;return f},brighten:function(a){if(d)n(d,
|
||||
function(b){b.brighten(a)});else if(ra(a)&&a!==0){var c;for(c=0;c<3;c++)b[c]+=y(a*255),b[c]<0&&(b[c]=0),b[c]>255&&(b[c]=255)}return this},rgba:b,setOpacity:function(a){b[3]=a;return this}}};va.prototype={init:function(a,b){this.element=b==="span"?U(b):z.createElementNS(ya,b);this.renderer=a;this.attrSetters={}},opacity:1,animate:function(a,b,c){b=o(b,Fa,!0);Wa(this);if(b){b=x(b);if(c)b.complete=c;Bb(this,a,b)}else this.attr(a),c&&c()},attr:function(a,b){var c,d,e,f,g=this.element,h=g.nodeName.toLowerCase(),
|
||||
i=this.renderer,j,k=this.attrSetters,l=this.shadows,m,p,q=this;ea(a)&&u(b)&&(c=a,a={},a[c]=b);if(ea(a))c=a,h==="circle"?c={x:"cx",y:"cy"}[c]||c:c==="strokeWidth"&&(c="stroke-width"),q=w(g,c)||this[c]||0,c!=="d"&&c!=="visibility"&&c!=="fill"&&(q=parseFloat(q));else{for(c in a)if(j=!1,d=a[c],e=k[c]&&k[c].call(this,d,c),e!==!1){e!==v&&(d=e);if(c==="d")d&&d.join&&(d=d.join(" ")),/(NaN| {2}|^$)/.test(d)&&(d="M 0 0");else if(c==="x"&&h==="text")for(e=0;e<g.childNodes.length;e++)f=g.childNodes[e],w(f,"x")===
|
||||
w(g,"x")&&w(f,"x",d);else if(this.rotation&&(c==="x"||c==="y"))p=!0;else if(c==="fill")d=i.color(d,g,c);else if(h==="circle"&&(c==="x"||c==="y"))c={x:"cx",y:"cy"}[c]||c;else if(h==="rect"&&c==="r")w(g,{rx:d,ry:d}),j=!0;else if(c==="translateX"||c==="translateY"||c==="rotation"||c==="verticalAlign"||c==="scaleX"||c==="scaleY")j=p=!0;else if(c==="stroke")d=i.color(d,g,c);else if(c==="dashstyle")if(c="stroke-dasharray",d=d&&d.toLowerCase(),d==="solid")d=S;else{if(d){d=d.replace("shortdashdotdot","3,1,1,1,1,1,").replace("shortdashdot",
|
||||
"3,1,1,1").replace("shortdot","1,1,").replace("shortdash","3,1,").replace("longdash","8,3,").replace(/dot/g,"1,3,").replace("dash","4,3,").replace(/,$/,"").split(",");for(e=d.length;e--;)d[e]=y(d[e])*o(a["stroke-width"],this["stroke-width"]);d=d.join(",")}}else if(c==="width")d=y(d);else if(c==="align")c="text-anchor",d={left:"start",center:"middle",right:"end"}[d];else if(c==="title")e=g.getElementsByTagName("title")[0],e||(e=z.createElementNS(ya,"title"),g.appendChild(e)),e.textContent=d;c==="strokeWidth"&&
|
||||
(c="stroke-width");if(c==="stroke-width"||c==="stroke"){this[c]=d;if(this.stroke&&this["stroke-width"])w(g,"stroke",this.stroke),w(g,"stroke-width",this["stroke-width"]),this.hasStroke=!0;else if(c==="stroke-width"&&d===0&&this.hasStroke)g.removeAttribute("stroke"),this.hasStroke=!1;j=!0}this.symbolName&&/^(x|y|width|height|r|start|end|innerR|anchorX|anchorY)/.test(c)&&(m||(this.symbolAttr(a),m=!0),j=!0);if(l&&/^(width|height|visibility|x|y|d|transform|cx|cy|r)$/.test(c))for(e=l.length;e--;)w(l[e],
|
||||
c,c==="height"?r(d-(l[e].cutHeight||0),0):d);if((c==="width"||c==="height")&&h==="rect"&&d<0)d=0;this[c]=d;c==="text"?(d!==this.textStr&&delete this.bBox,this.textStr=d,this.added&&i.buildText(this)):j||w(g,c,d)}p&&this.updateTransform()}return q},addClass:function(a){var b=this.element,c=w(b,"class")||"";c.indexOf(a)===-1&&w(b,"class",c+" "+a);return this},symbolAttr:function(a){var b=this;n("x,y,r,start,end,width,height,innerR,anchorX,anchorY".split(","),function(c){b[c]=o(a[c],b[c])});b.attr({d:b.renderer.symbols[b.symbolName](b.x,
|
||||
b.y,b.width,b.height,b)})},clip:function(a){return this.attr("clip-path",a?"url("+this.renderer.url+"#"+a.id+")":S)},crisp:function(a,b,c,d,e){var f,g={},h={},i,a=a||this.strokeWidth||this.attr&&this.attr("stroke-width")||0;i=t(a)%2/2;h.x=P(b||this.x||0)+i;h.y=P(c||this.y||0)+i;h.width=P((d||this.width||0)-2*i);h.height=P((e||this.height||0)-2*i);h.strokeWidth=a;for(f in h)this[f]!==h[f]&&(this[f]=g[f]=h[f]);return g},css:function(a){var b=this.element,c=this.textWidth=a&&a.width&&b.nodeName.toLowerCase()===
|
||||
"text"&&y(a.width),d,e="",f=function(a,b){return"-"+b.toLowerCase()};if(a&&a.color)a.fill=a.color;this.styles=a=s(this.styles,a);c&&delete a.width;if(sa&&!W)I(this.element,a);else{for(d in a)e+=d.replace(/([A-Z])/g,f)+":"+a[d]+";";w(b,"style",e)}c&&this.added&&this.renderer.buildText(this);return this},on:function(a,b){var c=this,d=c.element;jb&&a==="click"?(d.ontouchstart=function(a){c.touchEventFired=Date.now();a.preventDefault();b.call(d,a)},d.onclick=function(a){(na.indexOf("Android")===-1||Date.now()-
|
||||
(c.touchEventFired||0)>1100)&&b.call(d,a)}):d["on"+a]=b;return this},setRadialReference:function(a){this.element.radialReference=a;return this},translate:function(a,b){return this.attr({translateX:a,translateY:b})},invert:function(){this.inverted=!0;this.updateTransform();return this},htmlCss:function(a){var b=this.element;if(b=a&&b.tagName==="SPAN"&&a.width)delete a.width,this.textWidth=b,this.updateTransform();this.styles=s(this.styles,a);I(this.element,a);return this},htmlGetBBox:function(){var a=
|
||||
this.element,b=this.bBox;if(!b){if(a.nodeName==="text")a.style.position="absolute";b=this.bBox={x:a.offsetLeft,y:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight}}return b},htmlUpdateTransform:function(){if(this.added){var a=this.renderer,b=this.element,c=this.translateX||0,d=this.translateY||0,e=this.x||0,f=this.y||0,g=this.textAlign||"left",h={left:0,center:0.5,right:1}[g],i=g&&g!=="left",j=this.shadows;I(b,{marginLeft:c,marginTop:d});j&&n(j,function(a){I(a,{marginLeft:c+1,marginTop:d+1})});
|
||||
this.inverted&&n(b.childNodes,function(c){a.invertChild(c,b)});if(b.tagName==="SPAN"){var k,l,j=this.rotation,m;k=0;var p=1,q=0,aa;m=y(this.textWidth);var B=this.xCorr||0,O=this.yCorr||0,Sb=[j,g,b.innerHTML,this.textWidth].join(",");if(Sb!==this.cTT){u(j)&&(k=j*Ua,p=V(k),q=ba(k),this.setSpanRotation(j,q,p));k=o(this.elemWidth,b.offsetWidth);l=o(this.elemHeight,b.offsetHeight);if(k>m&&/[ \-]/.test(b.textContent||b.innerText))I(b,{width:m+"px",display:"block",whiteSpace:"normal"}),k=m;m=a.fontMetrics(b.style.fontSize).b;
|
||||
B=p<0&&-k;O=q<0&&-l;aa=p*q<0;B+=q*m*(aa?1-h:h);O-=p*m*(j?aa?h:1-h:1);i&&(B-=k*h*(p<0?-1:1),j&&(O-=l*h*(q<0?-1:1)),I(b,{textAlign:g}));this.xCorr=B;this.yCorr=O}I(b,{left:e+B+"px",top:f+O+"px"});if(hb)l=b.offsetHeight;this.cTT=Sb}}else this.alignOnAdd=!0},setSpanRotation:function(a){var b={};b[sa?"-ms-transform":hb?"-webkit-transform":ib?"MozTransform":Nb?"-o-transform":""]=b.transform="rotate("+a+"deg)";I(this.element,b)},updateTransform:function(){var a=this.translateX||0,b=this.translateY||0,c=
|
||||
this.scaleX,d=this.scaleY,e=this.inverted,f=this.rotation;e&&(a+=this.attr("width"),b+=this.attr("height"));a=["translate("+a+","+b+")"];e?a.push("rotate(90) scale(-1,1)"):f&&a.push("rotate("+f+" "+(this.x||0)+" "+(this.y||0)+")");(u(c)||u(d))&&a.push("scale("+o(c,1)+" "+o(d,1)+")");a.length&&w(this.element,"transform",a.join(" "))},toFront:function(){var a=this.element;a.parentNode.appendChild(a);return this},align:function(a,b,c){var d,e,f,g,h={};e=this.renderer;f=e.alignedObjects;if(a){if(this.alignOptions=
|
||||
a,this.alignByTranslate=b,!c||ea(c))this.alignTo=d=c||"renderer",ga(f,this),f.push(this),c=null}else a=this.alignOptions,b=this.alignByTranslate,d=this.alignTo;c=o(c,e[d],e);d=a.align;e=a.verticalAlign;f=(c.x||0)+(a.x||0);g=(c.y||0)+(a.y||0);if(d==="right"||d==="center")f+=(c.width-(a.width||0))/{right:1,center:2}[d];h[b?"translateX":"x"]=t(f);if(e==="bottom"||e==="middle")g+=(c.height-(a.height||0))/({bottom:1,middle:2}[e]||1);h[b?"translateY":"y"]=t(g);this[this.placed?"animate":"attr"](h);this.placed=
|
||||
!0;this.alignAttr=h;return this},getBBox:function(){var a=this.bBox,b=this.renderer,c,d=this.rotation;c=this.element;var e=this.styles,f=d*Ua;if(!a){if(c.namespaceURI===ya||b.forExport){try{a=c.getBBox?s({},c.getBBox()):{width:c.offsetWidth,height:c.offsetHeight}}catch(g){}if(!a||a.width<0)a={width:0,height:0}}else a=this.htmlGetBBox();if(b.isSVG){b=a.width;c=a.height;if(sa&&e&&e.fontSize==="11px"&&c.toPrecision(3)==="22.7")a.height=c=14;if(d)a.width=M(c*ba(f))+M(b*V(f)),a.height=M(c*V(f))+M(b*ba(f))}this.bBox=
|
||||
a}return a},show:function(){return this.attr({visibility:"visible"})},hide:function(){return this.attr({visibility:"hidden"})},fadeOut:function(a){var b=this;b.animate({opacity:0},{duration:a||150,complete:function(){b.hide()}})},add:function(a){var b=this.renderer,c=a||b,d=c.element||b.box,e=d.childNodes,f=this.element,g=w(f,"zIndex"),h;if(a)this.parentGroup=a;this.parentInverted=a&&a.inverted;this.textStr!==void 0&&b.buildText(this);if(g)c.handleZ=!0,g=y(g);if(c.handleZ)for(c=0;c<e.length;c++)if(a=
|
||||
e[c],b=w(a,"zIndex"),a!==f&&(y(b)>g||!u(g)&&u(b))){d.insertBefore(f,a);h=!0;break}h||d.appendChild(f);this.added=!0;A(this,"add");return this},safeRemoveChild:function(a){var b=a.parentNode;b&&b.removeChild(a)},destroy:function(){var a=this,b=a.element||{},c=a.shadows,d=a.renderer.isSVG&&b.nodeName==="SPAN"&&a.parentGroup,e,f;b.onclick=b.onmouseout=b.onmouseover=b.onmousemove=b.point=null;Wa(a);if(a.clipPath)a.clipPath=a.clipPath.destroy();if(a.stops){for(f=0;f<a.stops.length;f++)a.stops[f]=a.stops[f].destroy();
|
||||
a.stops=null}a.safeRemoveChild(b);for(c&&n(c,function(b){a.safeRemoveChild(b)});d&&d.div.childNodes.length===0;)b=d.parentGroup,a.safeRemoveChild(d.div),delete d.div,d=b;a.alignTo&&ga(a.renderer.alignedObjects,a);for(e in a)delete a[e];return null},shadow:function(a,b,c){var d=[],e,f,g=this.element,h,i,j,k;if(a){i=o(a.width,3);j=(a.opacity||0.15)/i;k=this.parentInverted?"(-1,-1)":"("+o(a.offsetX,1)+", "+o(a.offsetY,1)+")";for(e=1;e<=i;e++){f=g.cloneNode(0);h=i*2+1-2*e;w(f,{isShadow:"true",stroke:a.color||
|
||||
"black","stroke-opacity":j*e,"stroke-width":h,transform:"translate"+k,fill:S});if(c)w(f,"height",r(w(f,"height")-h,0)),f.cutHeight=h;b?b.element.appendChild(f):g.parentNode.insertBefore(f,g);d.push(f)}this.shadows=d}return this}};var za=function(){this.init.apply(this,arguments)};za.prototype={Element:va,init:function(a,b,c,d){var e=location,f,g;f=this.createElement("svg").attr({version:"1.1"});g=f.element;a.appendChild(g);a.innerHTML.indexOf("xmlns")===-1&&w(g,"xmlns",ya);this.isSVG=!0;this.box=
|
||||
g;this.boxWrapper=f;this.alignedObjects=[];this.url=(ib||hb)&&z.getElementsByTagName("base").length?e.href.replace(/#.*?$/,"").replace(/([\('\)])/g,"\\$1").replace(/ /g,"%20"):"";this.createElement("desc").add().element.appendChild(z.createTextNode("Created with Highcharts 3.0.7"));this.defs=this.createElement("defs").add();this.forExport=d;this.gradients={};this.setSize(b,c,!1);var h;if(ib&&a.getBoundingClientRect)this.subPixelFix=b=function(){I(a,{left:0,top:0});h=a.getBoundingClientRect();I(a,
|
||||
{left:wa(h.left)-h.left+"px",top:wa(h.top)-h.top+"px"})},b(),K(N,"resize",b)},isHidden:function(){return!this.boxWrapper.getBBox().width},destroy:function(){var a=this.defs;this.box=null;this.boxWrapper=this.boxWrapper.destroy();Ka(this.gradients||{});this.gradients=null;if(a)this.defs=a.destroy();this.subPixelFix&&$(N,"resize",this.subPixelFix);return this.alignedObjects=null},createElement:function(a){var b=new this.Element;b.init(this,a);return b},draw:function(){},buildText:function(a){for(var b=
|
||||
a.element,c=this,d=c.forExport,e=o(a.textStr,"").toString().replace(/<(b|strong)>/g,'<span style="font-weight:bold">').replace(/<(i|em)>/g,'<span style="font-style:italic">').replace(/<a/g,"<span").replace(/<\/(b|strong|i|em|a)>/g,"</span>").split(/<br.*?>/g),f=b.childNodes,g=/style="([^"]+)"/,h=/href="(http[^"]+)"/,i=w(b,"x"),j=a.styles,k=a.textWidth,l=j&&j.lineHeight,m=f.length;m--;)b.removeChild(f[m]);k&&!a.added&&this.box.appendChild(b);e[e.length-1]===""&&e.pop();n(e,function(e,f){var m,o=0,
|
||||
e=e.replace(/<span/g,"|||<span").replace(/<\/span>/g,"</span>|||");m=e.split("|||");n(m,function(e){if(e!==""||m.length===1){var p={},n=z.createElementNS(ya,"tspan"),r;g.test(e)&&(r=e.match(g)[1].replace(/(;| |^)color([ :])/,"$1fill$2"),w(n,"style",r));h.test(e)&&!d&&(w(n,"onclick",'location.href="'+e.match(h)[1]+'"'),I(n,{cursor:"pointer"}));e=(e.replace(/<(.|\n)*?>/g,"")||" ").replace(/</g,"<").replace(/>/g,">");if(e!==" "&&(n.appendChild(z.createTextNode(e)),o?p.dx=0:p.x=i,w(n,p),!o&&f&&
|
||||
(!W&&d&&I(n,{display:"block"}),w(n,"dy",l||c.fontMetrics(/px$/.test(n.style.fontSize)?n.style.fontSize:j.fontSize).h,hb&&n.offsetHeight)),b.appendChild(n),o++,k))for(var e=e.replace(/([^\^])-/g,"$1- ").split(" "),u,t,p=a._clipHeight,E=[],v=y(l||16),s=1;e.length||E.length;)delete a.bBox,u=a.getBBox(),t=u.width,!W&&c.forExport&&(t=c.measureSpanWidth(n.firstChild.data,a.styles)),u=t>k,!u||e.length===1?(e=E,E=[],e.length&&(s++,p&&s*v>p?(e=["..."],a.attr("title",a.textStr)):(n=z.createElementNS(ya,"tspan"),
|
||||
w(n,{dy:v,x:i}),r&&w(n,"style",r),b.appendChild(n),t>k&&(k=t)))):(n.removeChild(n.firstChild),E.unshift(e.pop())),e.length&&n.appendChild(z.createTextNode(e.join(" ").replace(/- /g,"-")))}})})},button:function(a,b,c,d,e,f,g,h,i){var j=this.label(a,b,c,i,null,null,null,null,"button"),k=0,l,m,p,q,n,o,a={x1:0,y1:0,x2:0,y2:1},e=x({"stroke-width":1,stroke:"#CCCCCC",fill:{linearGradient:a,stops:[[0,"#FEFEFE"],[1,"#F6F6F6"]]},r:2,padding:5,style:{color:"black"}},e);p=e.style;delete e.style;f=x(e,{stroke:"#68A",
|
||||
fill:{linearGradient:a,stops:[[0,"#FFF"],[1,"#ACF"]]}},f);q=f.style;delete f.style;g=x(e,{stroke:"#68A",fill:{linearGradient:a,stops:[[0,"#9BD"],[1,"#CDF"]]}},g);n=g.style;delete g.style;h=x(e,{style:{color:"#CCC"}},h);o=h.style;delete h.style;K(j.element,sa?"mouseover":"mouseenter",function(){k!==3&&j.attr(f).css(q)});K(j.element,sa?"mouseout":"mouseleave",function(){k!==3&&(l=[e,f,g][k],m=[p,q,n][k],j.attr(l).css(m))});j.setState=function(a){(j.state=k=a)?a===2?j.attr(g).css(n):a===3&&j.attr(h).css(o):
|
||||
j.attr(e).css(p)};return j.on("click",function(){k!==3&&d.call(j)}).attr(e).css(s({cursor:"default"},p))},crispLine:function(a,b){a[1]===a[4]&&(a[1]=a[4]=t(a[1])-b%2/2);a[2]===a[5]&&(a[2]=a[5]=t(a[2])+b%2/2);return a},path:function(a){var b={fill:S};Ia(a)?b.d=a:T(a)&&s(b,a);return this.createElement("path").attr(b)},circle:function(a,b,c){a=T(a)?a:{x:a,y:b,r:c};return this.createElement("circle").attr(a)},arc:function(a,b,c,d,e,f){if(T(a))b=a.y,c=a.r,d=a.innerR,e=a.start,f=a.end,a=a.x;a=this.symbol("arc",
|
||||
a||0,b||0,c||0,c||0,{innerR:d||0,start:e||0,end:f||0});a.r=c;return a},rect:function(a,b,c,d,e,f){e=T(a)?a.r:e;e=this.createElement("rect").attr({rx:e,ry:e,fill:S});return e.attr(T(a)?a:e.crisp(f,a,b,r(c,0),r(d,0)))},setSize:function(a,b,c){var d=this.alignedObjects,e=d.length;this.width=a;this.height=b;for(this.boxWrapper[o(c,!0)?"animate":"attr"]({width:a,height:b});e--;)d[e].align()},g:function(a){var b=this.createElement("g");return u(a)?b.attr({"class":"highcharts-"+a}):b},image:function(a,b,
|
||||
c,d,e){var f={preserveAspectRatio:S};arguments.length>1&&s(f,{x:b,y:c,width:d,height:e});f=this.createElement("image").attr(f);f.element.setAttributeNS?f.element.setAttributeNS("http://www.w3.org/1999/xlink","href",a):f.element.setAttribute("hc-svg-href",a);return f},symbol:function(a,b,c,d,e,f){var g,h=this.symbols[a],h=h&&h(t(b),t(c),d,e,f),i=/^url\((.*?)\)$/,j,k;if(h)g=this.path(h),s(g,{symbolName:a,x:b,y:c,width:d,height:e}),f&&s(g,f);else if(i.test(a))k=function(a,b){a.element&&(a.attr({width:b[0],
|
||||
height:b[1]}),a.alignByTranslate||a.translate(t((d-b[0])/2),t((e-b[1])/2)))},j=a.match(i)[1],a=Pb[j],g=this.image(j).attr({x:b,y:c}),g.isImg=!0,a?k(g,a):(g.attr({width:0,height:0}),U("img",{onload:function(){k(g,Pb[j]=[this.width,this.height])},src:j}));return g},symbols:{circle:function(a,b,c,d){var e=0.166*c;return["M",a+c/2,b,"C",a+c+e,b,a+c+e,b+d,a+c/2,b+d,"C",a-e,b+d,a-e,b,a+c/2,b,"Z"]},square:function(a,b,c,d){return["M",a,b,"L",a+c,b,a+c,b+d,a,b+d,"Z"]},triangle:function(a,b,c,d){return["M",
|
||||
a+c/2,b,"L",a+c,b+d,a,b+d,"Z"]},"triangle-down":function(a,b,c,d){return["M",a,b,"L",a+c,b,a+c/2,b+d,"Z"]},diamond:function(a,b,c,d){return["M",a+c/2,b,"L",a+c,b+d/2,a+c/2,b+d,a,b+d/2,"Z"]},arc:function(a,b,c,d,e){var f=e.start,c=e.r||c||d,g=e.end-0.001,d=e.innerR,h=e.open,i=V(f),j=ba(f),k=V(g),g=ba(g),e=e.end-f<xa?0:1;return["M",a+c*i,b+c*j,"A",c,c,0,e,1,a+c*k,b+c*g,h?"M":"L",a+d*k,b+d*g,"A",d,d,0,e,0,a+d*i,b+d*j,h?"":"Z"]}},clipRect:function(a,b,c,d){var e="highcharts-"+zb++,f=this.createElement("clipPath").attr({id:e}).add(this.defs),
|
||||
a=this.rect(a,b,c,d,0).add(f);a.id=e;a.clipPath=f;return a},color:function(a,b,c){var d=this,e,f=/^rgba/,g,h,i,j,k,l,m,p=[];a&&a.linearGradient?g="linearGradient":a&&a.radialGradient&&(g="radialGradient");if(g){c=a[g];h=d.gradients;j=a.stops;b=b.radialReference;Ia(c)&&(a[g]=c={x1:c[0],y1:c[1],x2:c[2],y2:c[3],gradientUnits:"userSpaceOnUse"});g==="radialGradient"&&b&&!u(c.gradientUnits)&&(c=x(c,{cx:b[0]-b[2]/2+c.cx*b[2],cy:b[1]-b[2]/2+c.cy*b[2],r:c.r*b[2],gradientUnits:"userSpaceOnUse"}));for(m in c)m!==
|
||||
"id"&&p.push(m,c[m]);for(m in j)p.push(j[m]);p=p.join(",");h[p]?a=h[p].id:(c.id=a="highcharts-"+zb++,h[p]=i=d.createElement(g).attr(c).add(d.defs),i.stops=[],n(j,function(a){f.test(a[1])?(e=qa(a[1]),k=e.get("rgb"),l=e.get("a")):(k=a[1],l=1);a=d.createElement("stop").attr({offset:a[0],"stop-color":k,"stop-opacity":l}).add(i);i.stops.push(a)}));return"url("+d.url+"#"+a+")"}else return f.test(a)?(e=qa(a),w(b,c+"-opacity",e.get("a")),e.get("rgb")):(b.removeAttribute(c+"-opacity"),a)},text:function(a,
|
||||
b,c,d){var e=L.chart.style,f=ca||!W&&this.forExport;if(d&&!this.forExport)return this.html(a,b,c);b=t(o(b,0));c=t(o(c,0));a=this.createElement("text").attr({x:b,y:c,text:a}).css({fontFamily:e.fontFamily,fontSize:e.fontSize});f&&a.css({position:"absolute"});a.x=b;a.y=c;return a},html:function(a,b,c){var d=L.chart.style,e=this.createElement("span"),f=e.attrSetters,g=e.element,h=e.renderer;f.text=function(a){a!==g.innerHTML&&delete this.bBox;g.innerHTML=a;return!1};f.x=f.y=f.align=function(a,b){b===
|
||||
"align"&&(b="textAlign");e[b]=a;e.htmlUpdateTransform();return!1};e.attr({text:a,x:t(b),y:t(c)}).css({position:"absolute",whiteSpace:"nowrap",fontFamily:d.fontFamily,fontSize:d.fontSize});e.css=e.htmlCss;if(h.isSVG)e.add=function(a){var b,c=h.box.parentNode,d=[];if(this.parentGroup=a){if(b=a.div,!b){for(;a;)d.push(a),a=a.parentGroup;n(d.reverse(),function(a){var d;b=a.div=a.div||U(Ea,{className:w(a.element,"class")},{position:"absolute",left:(a.translateX||0)+"px",top:(a.translateY||0)+"px"},b||c);
|
||||
d=b.style;s(a.attrSetters,{translateX:function(a){d.left=a+"px"},translateY:function(a){d.top=a+"px"},visibility:function(a,b){d[b]=a}})})}}else b=c;b.appendChild(g);e.added=!0;e.alignOnAdd&&e.htmlUpdateTransform();return e};return e},fontMetrics:function(a){var a=y(a||11),a=a<24?a+4:t(a*1.2),b=t(a*0.8);return{h:a,b:b}},label:function(a,b,c,d,e,f,g,h,i){function j(){var a,b;a=o.element.style;O=(Oa===void 0||Ha===void 0||q.styles.textAlign)&&o.getBBox();q.width=(Oa||O.width||0)+2*da+lb;q.height=(Ha||
|
||||
O.height||0)+2*da;w=da+p.fontMetrics(a&&a.fontSize).b;if(y){if(!B)a=t(-r*da),b=h?-w:0,q.box=B=d?p.symbol(d,a,b,q.width,q.height,Xa):p.rect(a,b,q.width,q.height,0,Xa[Rb]),B.add(q);B.isImg||B.attr(x({width:q.width,height:q.height},Xa));Xa=null}}function k(){var a=q.styles,a=a&&a.textAlign,b=lb+da*(1-r),c;c=h?0:w;if(u(Oa)&&(a==="center"||a==="right"))b+={center:0.5,right:1}[a]*(Oa-O.width);(b!==o.x||c!==o.y)&&o.attr({x:b,y:c});o.x=b;o.y=c}function l(a,b){B?B.attr(a,b):Xa[a]=b}function m(){o.add(q);q.attr({text:a,
|
||||
x:b,y:c});B&&u(e)&&q.attr({anchorX:e,anchorY:f})}var p=this,q=p.g(i),o=p.text("",0,0,g).attr({zIndex:1}),B,O,r=0,da=3,lb=0,Oa,Ha,E,H,C=0,Xa={},w,g=q.attrSetters,y;K(q,"add",m);g.width=function(a){Oa=a;return!1};g.height=function(a){Ha=a;return!1};g.padding=function(a){u(a)&&a!==da&&(da=a,k());return!1};g.paddingLeft=function(a){u(a)&&a!==lb&&(lb=a,k());return!1};g.align=function(a){r={left:0,center:0.5,right:1}[a];return!1};g.text=function(a,b){o.attr(b,a);j();k();return!1};g[Rb]=function(a,b){y=
|
||||
!0;C=a%2/2;l(b,a);return!1};g.stroke=g.fill=g.r=function(a,b){b==="fill"&&(y=!0);l(b,a);return!1};g.anchorX=function(a,b){e=a;l(b,a+C-E);return!1};g.anchorY=function(a,b){f=a;l(b,a-H);return!1};g.x=function(a){q.x=a;a-=r*((Oa||O.width)+da);E=t(a);q.attr("translateX",E);return!1};g.y=function(a){H=q.y=t(a);q.attr("translateY",H);return!1};var z=q.css;return s(q,{css:function(a){if(a){var b={},a=x(a);n("fontSize,fontWeight,fontFamily,color,lineHeight,width,textDecoration,textShadow".split(","),function(c){a[c]!==
|
||||
v&&(b[c]=a[c],delete a[c])});o.css(b)}return z.call(q,a)},getBBox:function(){return{width:O.width+2*da,height:O.height+2*da,x:O.x-da,y:O.y-da}},shadow:function(a){B&&B.shadow(a);return q},destroy:function(){$(q,"add",m);$(q.element,"mouseenter");$(q.element,"mouseleave");o&&(o=o.destroy());B&&(B=B.destroy());va.prototype.destroy.call(q);q=p=j=k=l=m=null}})}};Va=za;var F;if(!W&&!ca){Highcharts.VMLElement=F={init:function(a,b){var c=["<",b,' filled="f" stroked="f"'],d=["position: ","absolute",";"],
|
||||
e=b===Ea;(b==="shape"||e)&&d.push("left:0;top:0;width:1px;height:1px;");d.push("visibility: ",e?"hidden":"visible");c.push(' style="',d.join(""),'"/>');if(b)c=e||b==="span"||b==="img"?c.join(""):a.prepVML(c),this.element=U(c);this.renderer=a;this.attrSetters={}},add:function(a){var b=this.renderer,c=this.element,d=b.box,d=a?a.element||a:d;a&&a.inverted&&b.invertChild(c,d);d.appendChild(c);this.added=!0;this.alignOnAdd&&!this.deferUpdateTransform&&this.updateTransform();A(this,"add");return this},
|
||||
updateTransform:va.prototype.htmlUpdateTransform,setSpanRotation:function(a,b,c){I(this.element,{filter:a?["progid:DXImageTransform.Microsoft.Matrix(M11=",c,", M12=",-b,", M21=",b,", M22=",c,", sizingMethod='auto expand')"].join(""):S})},pathToVML:function(a){for(var b=a.length,c=[],d;b--;)if(ra(a[b]))c[b]=t(a[b]*10)-5;else if(a[b]==="Z")c[b]="x";else if(c[b]=a[b],a.isArc&&(a[b]==="wa"||a[b]==="at"))d=a[b]==="wa"?1:-1,c[b+5]===c[b+7]&&(c[b+7]-=d),c[b+6]===c[b+8]&&(c[b+8]-=d);return c.join(" ")||"x"},
|
||||
attr:function(a,b){var c,d,e,f=this.element||{},g=f.style,h=f.nodeName,i=this.renderer,j=this.symbolName,k,l=this.shadows,m,p=this.attrSetters,q=this;ea(a)&&u(b)&&(c=a,a={},a[c]=b);if(ea(a))c=a,q=c==="strokeWidth"||c==="stroke-width"?this.strokeweight:this[c];else for(c in a)if(d=a[c],m=!1,e=p[c]&&p[c].call(this,d,c),e!==!1&&d!==null){e!==v&&(d=e);if(j&&/^(x|y|r|start|end|width|height|innerR|anchorX|anchorY)/.test(c))k||(this.symbolAttr(a),k=!0),m=!0;else if(c==="d"){d=d||[];this.d=d.join(" ");f.path=
|
||||
d=this.pathToVML(d);if(l)for(e=l.length;e--;)l[e].path=l[e].cutOff?this.cutOffPath(d,l[e].cutOff):d;m=!0}else if(c==="visibility"){if(l)for(e=l.length;e--;)l[e].style[c]=d;h==="DIV"&&(d=d==="hidden"?"-999em":0,gb||(g[c]=d?"visible":"hidden"),c="top");g[c]=d;m=!0}else if(c==="zIndex")d&&(g[c]=d),m=!0;else if(pa(c,["x","y","width","height"])!==-1)this[c]=d,c==="x"||c==="y"?c={x:"left",y:"top"}[c]:d=r(0,d),this.updateClipping?(this[c]=d,this.updateClipping()):g[c]=d,m=!0;else if(c==="class"&&h==="DIV")f.className=
|
||||
d;else if(c==="stroke")d=i.color(d,f,c),c="strokecolor";else if(c==="stroke-width"||c==="strokeWidth")f.stroked=d?!0:!1,c="strokeweight",this[c]=d,ra(d)&&(d+="px");else if(c==="dashstyle")(f.getElementsByTagName("stroke")[0]||U(i.prepVML(["<stroke/>"]),null,null,f))[c]=d||"solid",this.dashstyle=d,m=!0;else if(c==="fill")if(h==="SPAN")g.color=d;else{if(h!=="IMG")f.filled=d!==S?!0:!1,d=i.color(d,f,c,this),c="fillcolor"}else if(c==="opacity")m=!0;else if(h==="shape"&&c==="rotation")this[c]=f.style[c]=
|
||||
d,f.style.left=-t(ba(d*Ua)+1)+"px",f.style.top=t(V(d*Ua))+"px";else if(c==="translateX"||c==="translateY"||c==="rotation")this[c]=d,this.updateTransform(),m=!0;else if(c==="text")this.bBox=null,f.innerHTML=d,m=!0;m||(gb?f[c]=d:w(f,c,d))}return q},clip:function(a){var b=this,c;a?(c=a.members,ga(c,b),c.push(b),b.destroyClip=function(){ga(c,b)},a=a.getCSS(b)):(b.destroyClip&&b.destroyClip(),a={clip:gb?"inherit":"rect(auto)"});return b.css(a)},css:va.prototype.htmlCss,safeRemoveChild:function(a){a.parentNode&&
|
||||
Ta(a)},destroy:function(){this.destroyClip&&this.destroyClip();return va.prototype.destroy.apply(this)},on:function(a,b){this.element["on"+a]=function(){var a=N.event;a.target=a.srcElement;b(a)};return this},cutOffPath:function(a,b){var c,a=a.split(/[ ,]/);c=a.length;if(c===9||c===11)a[c-4]=a[c-2]=y(a[c-2])-10*b;return a.join(" ")},shadow:function(a,b,c){var d=[],e,f=this.element,g=this.renderer,h,i=f.style,j,k=f.path,l,m,p,q;k&&typeof k.value!=="string"&&(k="x");m=k;if(a){p=o(a.width,3);q=(a.opacity||
|
||||
0.15)/p;for(e=1;e<=3;e++){l=p*2+1-2*e;c&&(m=this.cutOffPath(k.value,l+0.5));j=['<shape isShadow="true" strokeweight="',l,'" filled="false" path="',m,'" coordsize="10 10" style="',f.style.cssText,'" />'];h=U(g.prepVML(j),null,{left:y(i.left)+o(a.offsetX,1),top:y(i.top)+o(a.offsetY,1)});if(c)h.cutOff=l+1;j=['<stroke color="',a.color||"black",'" opacity="',q*e,'"/>'];U(g.prepVML(j),null,null,h);b?b.element.appendChild(h):f.parentNode.insertBefore(h,f);d.push(h)}this.shadows=d}return this}};F=ha(va,F);
|
||||
var la={Element:F,isIE8:na.indexOf("MSIE 8.0")>-1,init:function(a,b,c){var d,e;this.alignedObjects=[];d=this.createElement(Ea);e=d.element;e.style.position="relative";a.appendChild(d.element);this.isVML=!0;this.box=e;this.boxWrapper=d;this.setSize(b,c,!1);if(!z.namespaces.hcv){z.namespaces.add("hcv","urn:schemas-microsoft-com:vml");try{z.createStyleSheet().cssText="hcv\\:fill, hcv\\:path, hcv\\:shape, hcv\\:stroke{ behavior:url(#default#VML); display: inline-block; } "}catch(f){z.styleSheets[0].cssText+=
|
||||
"hcv\\:fill, hcv\\:path, hcv\\:shape, hcv\\:stroke{ behavior:url(#default#VML); display: inline-block; } "}}},isHidden:function(){return!this.box.offsetWidth},clipRect:function(a,b,c,d){var e=this.createElement(),f=T(a);return s(e,{members:[],left:(f?a.x:a)+1,top:(f?a.y:b)+1,width:(f?a.width:c)-1,height:(f?a.height:d)-1,getCSS:function(a){var b=a.element,c=b.nodeName,a=a.inverted,d=this.top-(c==="shape"?b.offsetTop:0),e=this.left,b=e+this.width,f=d+this.height,d={clip:"rect("+t(a?e:d)+"px,"+t(a?f:
|
||||
b)+"px,"+t(a?b:f)+"px,"+t(a?d:e)+"px)"};!a&&gb&&c==="DIV"&&s(d,{width:b+"px",height:f+"px"});return d},updateClipping:function(){n(e.members,function(a){a.css(e.getCSS(a))})}})},color:function(a,b,c,d){var e=this,f,g=/^rgba/,h,i,j=S;a&&a.linearGradient?i="gradient":a&&a.radialGradient&&(i="pattern");if(i){var k,l,m=a.linearGradient||a.radialGradient,p,q,o,B,O,r="",a=a.stops,u,t=[],v=function(){h=['<fill colors="'+t.join(",")+'" opacity="',o,'" o:opacity2="',q,'" type="',i,'" ',r,'focus="100%" method="any" />'];
|
||||
U(e.prepVML(h),null,null,b)};p=a[0];u=a[a.length-1];p[0]>0&&a.unshift([0,p[1]]);u[0]<1&&a.push([1,u[1]]);n(a,function(a,b){g.test(a[1])?(f=qa(a[1]),k=f.get("rgb"),l=f.get("a")):(k=a[1],l=1);t.push(a[0]*100+"% "+k);b?(o=l,B=k):(q=l,O=k)});if(c==="fill")if(i==="gradient")c=m.x1||m[0]||0,a=m.y1||m[1]||0,p=m.x2||m[2]||0,m=m.y2||m[3]||0,r='angle="'+(90-R.atan((m-a)/(p-c))*180/xa)+'"',v();else{var j=m.r,s=j*2,E=j*2,H=m.cx,C=m.cy,x=b.radialReference,w,j=function(){x&&(w=d.getBBox(),H+=(x[0]-w.x)/w.width-
|
||||
0.5,C+=(x[1]-w.y)/w.height-0.5,s*=x[2]/w.width,E*=x[2]/w.height);r='src="'+L.global.VMLRadialGradientURL+'" size="'+s+","+E+'" origin="0.5,0.5" position="'+H+","+C+'" color2="'+O+'" ';v()};d.added?j():K(d,"add",j);j=B}else j=k}else if(g.test(a)&&b.tagName!=="IMG")f=qa(a),h=["<",c,' opacity="',f.get("a"),'"/>'],U(this.prepVML(h),null,null,b),j=f.get("rgb");else{j=b.getElementsByTagName(c);if(j.length)j[0].opacity=1,j[0].type="solid";j=a}return j},prepVML:function(a){var b=this.isIE8,a=a.join("");b?
|
||||
(a=a.replace("/>",' xmlns="urn:schemas-microsoft-com:vml" />'),a=a.indexOf('style="')===-1?a.replace("/>",' style="display:inline-block;behavior:url(#default#VML);" />'):a.replace('style="','style="display:inline-block;behavior:url(#default#VML);')):a=a.replace("<","<hcv:");return a},text:za.prototype.html,path:function(a){var b={coordsize:"10 10"};Ia(a)?b.d=a:T(a)&&s(b,a);return this.createElement("shape").attr(b)},circle:function(a,b,c){var d=this.symbol("circle");if(T(a))c=a.r,b=a.y,a=a.x;d.isCircle=
|
||||
!0;d.r=c;return d.attr({x:a,y:b})},g:function(a){var b;a&&(b={className:"highcharts-"+a,"class":"highcharts-"+a});return this.createElement(Ea).attr(b)},image:function(a,b,c,d,e){var f=this.createElement("img").attr({src:a});arguments.length>1&&f.attr({x:b,y:c,width:d,height:e});return f},rect:function(a,b,c,d,e,f){var g=this.symbol("rect");g.r=T(a)?a.r:e;return g.attr(T(a)?a:g.crisp(f,a,b,r(c,0),r(d,0)))},invertChild:function(a,b){var c=b.style;I(a,{flip:"x",left:y(c.width)-1,top:y(c.height)-1,rotation:-90})},
|
||||
symbols:{arc:function(a,b,c,d,e){var f=e.start,g=e.end,h=e.r||c||d,c=e.innerR,d=V(f),i=ba(f),j=V(g),k=ba(g);if(g-f===0)return["x"];f=["wa",a-h,b-h,a+h,b+h,a+h*d,b+h*i,a+h*j,b+h*k];e.open&&!c&&f.push("e","M",a,b);f.push("at",a-c,b-c,a+c,b+c,a+c*j,b+c*k,a+c*d,b+c*i,"x","e");f.isArc=!0;return f},circle:function(a,b,c,d,e){e&&(c=d=2*e.r);e&&e.isCircle&&(a-=c/2,b-=d/2);return["wa",a,b,a+c,b+d,a+c,b+d/2,a+c,b+d/2,"e"]},rect:function(a,b,c,d,e){var f=a+c,g=b+d,h;!u(e)||!e.r?f=za.prototype.symbols.square.apply(0,
|
||||
arguments):(h=J(e.r,c,d),f=["M",a+h,b,"L",f-h,b,"wa",f-2*h,b,f,b+2*h,f-h,b,f,b+h,"L",f,g-h,"wa",f-2*h,g-2*h,f,g,f,g-h,f-h,g,"L",a+h,g,"wa",a,g-2*h,a+2*h,g,a+h,g,a,g-h,"L",a,b+h,"wa",a,b,a+2*h,b+2*h,a,b+h,a+h,b,"x","e"]);return f}}};Highcharts.VMLRenderer=F=function(){this.init.apply(this,arguments)};F.prototype=x(za.prototype,la);Va=F}za.prototype.measureSpanWidth=function(a,b){var c=z.createElement("span"),d=z.createTextNode(a);c.appendChild(d);I(c,b);this.box.appendChild(c);return c.offsetWidth};
|
||||
var Tb;if(ca)Highcharts.CanVGRenderer=F=function(){ya="http://www.w3.org/1999/xhtml"},F.prototype.symbols={},Tb=function(){function a(){var a=b.length,d;for(d=0;d<a;d++)b[d]();b=[]}var b=[];return{push:function(c,d){b.length===0&&Vb(d,a);b.push(c)}}}(),Va=F;Ma.prototype={addLabel:function(){var a=this.axis,b=a.options,c=a.chart,d=a.horiz,e=a.categories,f=a.names,g=this.pos,h=b.labels,i=a.tickPositions,d=d&&e&&!h.step&&!h.staggerLines&&!h.rotation&&c.plotWidth/i.length||!d&&(c.margin[3]||c.chartWidth*
|
||||
0.33),j=g===i[0],k=g===i[i.length-1],l,f=e?o(e[g],f[g],g):g,e=this.label,m=i.info;a.isDatetimeAxis&&m&&(l=b.dateTimeLabelFormats[m.higherRanks[g]||m.unitName]);this.isFirst=j;this.isLast=k;b=a.labelFormatter.call({axis:a,chart:c,isFirst:j,isLast:k,dateTimeLabelFormat:l,value:a.isLog?ia(fa(f)):f});g=d&&{width:r(1,t(d-2*(h.padding||10)))+"px"};g=s(g,h.style);if(u(e))e&&e.attr({text:b}).css(g);else{l={align:a.labelAlign};if(ra(h.rotation))l.rotation=h.rotation;if(d&&h.ellipsis)l._clipHeight=a.len/i.length;
|
||||
this.label=u(b)&&h.enabled?c.renderer.text(b,0,0,h.useHTML).attr(l).css(g).add(a.labelGroup):null}},getLabelSize:function(){var a=this.label,b=this.axis;return a?(this.labelBBox=a.getBBox())[b.horiz?"height":"width"]:0},getLabelSides:function(){var a=this.axis,b=this.labelBBox.width,a=b*{left:0,center:0.5,right:1}[a.labelAlign]-a.options.labels.x;return[-a,b-a]},handleOverflow:function(a,b){var c=!0,d=this.axis,e=d.chart,f=this.isFirst,g=this.isLast,h=b.x,i=d.reversed,j=d.tickPositions;if(f||g){var k=
|
||||
this.getLabelSides(),l=k[0],k=k[1],e=e.plotLeft,m=e+d.len,j=(d=d.ticks[j[a+(f?1:-1)]])&&d.label.xy&&d.label.xy.x+d.getLabelSides()[f?0:1];f&&!i||g&&i?h+l<e&&(h=e-l,d&&h+k>j&&(c=!1)):h+k>m&&(h=m-k,d&&h+l<j&&(c=!1));b.x=h}return c},getPosition:function(a,b,c,d){var e=this.axis,f=e.chart,g=d&&f.oldChartHeight||f.chartHeight;return{x:a?e.translate(b+c,null,null,d)+e.transB:e.left+e.offset+(e.opposite?(d&&f.oldChartWidth||f.chartWidth)-e.right-e.left:0),y:a?g-e.bottom+e.offset-(e.opposite?e.height:0):
|
||||
g-e.translate(b+c,null,null,d)-e.transB}},getLabelPosition:function(a,b,c,d,e,f,g,h){var i=this.axis,j=i.transA,k=i.reversed,l=i.staggerLines,m=i.chart.renderer.fontMetrics(e.style.fontSize).b,p=e.rotation,a=a+e.x-(f&&d?f*j*(k?-1:1):0),b=b+e.y-(f&&!d?f*j*(k?1:-1):0);p&&i.side===2&&(b-=m-m*V(p*Ua));!u(e.y)&&!p&&(b+=m-c.getBBox().height/2);l&&(b+=g/(h||1)%l*(i.labelOffset/l));return{x:a,y:b}},getMarkPath:function(a,b,c,d,e,f){return f.crispLine(["M",a,b,"L",a+(e?0:-c),b+(e?c:0)],d)},render:function(a,
|
||||
b,c){var d=this.axis,e=d.options,f=d.chart.renderer,g=d.horiz,h=this.type,i=this.label,j=this.pos,k=e.labels,l=this.gridLine,m=h?h+"Grid":"grid",p=h?h+"Tick":"tick",q=e[m+"LineWidth"],n=e[m+"LineColor"],B=e[m+"LineDashStyle"],r=e[p+"Length"],m=e[p+"Width"]||0,u=e[p+"Color"],t=e[p+"Position"],p=this.mark,s=k.step,w=!0,x=d.tickmarkOffset,E=this.getPosition(g,j,x,b),H=E.x,E=E.y,C=g&&H===d.pos+d.len||!g&&E===d.pos?-1:1,y=d.staggerLines;this.isActive=!0;if(q){j=d.getPlotLinePath(j+x,q*C,b,!0);if(l===v){l=
|
||||
{stroke:n,"stroke-width":q};if(B)l.dashstyle=B;if(!h)l.zIndex=1;if(b)l.opacity=0;this.gridLine=l=q?f.path(j).attr(l).add(d.gridGroup):null}if(!b&&l&&j)l[this.isNew?"attr":"animate"]({d:j,opacity:c})}if(m&&r)t==="inside"&&(r=-r),d.opposite&&(r=-r),b=this.getMarkPath(H,E,r,m*C,g,f),p?p.animate({d:b,opacity:c}):this.mark=f.path(b).attr({stroke:u,"stroke-width":m,opacity:c}).add(d.axisGroup);if(i&&!isNaN(H))i.xy=E=this.getLabelPosition(H,E,i,g,k,x,a,s),this.isFirst&&!this.isLast&&!o(e.showFirstLabel,
|
||||
1)||this.isLast&&!this.isFirst&&!o(e.showLastLabel,1)?w=!1:!y&&g&&k.overflow==="justify"&&!this.handleOverflow(a,E)&&(w=!1),s&&a%s&&(w=!1),w&&!isNaN(E.y)?(E.opacity=c,i[this.isNew?"attr":"animate"](E),this.isNew=!1):i.attr("y",-9999)},destroy:function(){Ka(this,this.axis)}};vb.prototype={render:function(){var a=this,b=a.axis,c=b.horiz,d=(b.pointRange||0)/2,e=a.options,f=e.label,g=a.label,h=e.width,i=e.to,j=e.from,k=u(j)&&u(i),l=e.value,m=e.dashStyle,p=a.svgElem,q=[],n,B=e.color,O=e.zIndex,t=e.events,
|
||||
v=b.chart.renderer;b.isLog&&(j=ma(j),i=ma(i),l=ma(l));if(h){if(q=b.getPlotLinePath(l,h),d={stroke:B,"stroke-width":h},m)d.dashstyle=m}else if(k){if(j=r(j,b.min-d),i=J(i,b.max+d),q=b.getPlotBandPath(j,i,e),d={fill:B},e.borderWidth)d.stroke=e.borderColor,d["stroke-width"]=e.borderWidth}else return;if(u(O))d.zIndex=O;if(p)if(q)p.animate({d:q},null,p.onGetPath);else{if(p.hide(),p.onGetPath=function(){p.show()},g)a.label=g=g.destroy()}else if(q&&q.length&&(a.svgElem=p=v.path(q).attr(d).add(),t))for(n in e=
|
||||
function(b){p.on(b,function(c){t[b].apply(a,[c])})},t)e(n);if(f&&u(f.text)&&q&&q.length&&b.width>0&&b.height>0){f=x({align:c&&k&&"center",x:c?!k&&4:10,verticalAlign:!c&&k&&"middle",y:c?k?16:10:k?6:-4,rotation:c&&!k&&90},f);if(!g)a.label=g=v.text(f.text,0,0,f.useHTML).attr({align:f.textAlign||f.align,rotation:f.rotation,zIndex:O}).css(f.style).add();b=[q[1],q[4],o(q[6],q[1])];q=[q[2],q[5],o(q[7],q[2])];c=Ja(b);k=Ja(q);g.align(f,!1,{x:c,y:k,width:ua(b)-c,height:ua(q)-k});g.show()}else g&&g.hide();return a},
|
||||
destroy:function(){ga(this.axis.plotLinesAndBands,this);delete this.axis;Ka(this)}};Mb.prototype={destroy:function(){Ka(this,this.axis)},render:function(a){var b=this.options,c=b.format,c=c?Ca(c,this):b.formatter.call(this);this.label?this.label.attr({text:c,visibility:"hidden"}):this.label=this.axis.chart.renderer.text(c,0,0,b.useHTML).css(b.style).attr({align:this.textAlign,rotation:b.rotation,visibility:"hidden"}).add(a)},setOffset:function(a,b){var c=this.axis,d=c.chart,e=d.inverted,f=this.isNegative,
|
||||
g=c.translate(this.percent?100:this.total,0,0,0,1),c=c.translate(0),c=M(g-c),h=d.xAxis[0].translate(this.x)+a,i=d.plotHeight,f={x:e?f?g:g-c:h,y:e?i-h-b:f?i-g-c:i-g,width:e?c:b,height:e?b:c};if(e=this.label)e.align(this.alignOptions,null,f),f=e.alignAttr,e.attr({visibility:this.options.crop===!1||d.isInsidePlot(f.x,f.y)?W?"inherit":"visible":"hidden"})}};eb.prototype={defaultOptions:{dateTimeLabelFormats:{millisecond:"%H:%M:%S.%L",second:"%H:%M:%S",minute:"%H:%M",hour:"%H:%M",day:"%e. %b",week:"%e. %b",
|
||||
month:"%b '%y",year:"%Y"},endOnTick:!1,gridLineColor:"#C0C0C0",labels:G,lineColor:"#C0D0E0",lineWidth:1,minPadding:0.01,maxPadding:0.01,minorGridLineColor:"#E0E0E0",minorGridLineWidth:1,minorTickColor:"#A0A0A0",minorTickLength:2,minorTickPosition:"outside",startOfWeek:1,startOnTick:!1,tickColor:"#C0D0E0",tickLength:5,tickmarkPlacement:"between",tickPixelInterval:100,tickPosition:"outside",tickWidth:1,title:{align:"middle",style:{color:"#4d759e",fontWeight:"bold"}},type:"linear"},defaultYAxisOptions:{endOnTick:!0,
|
||||
gridLineWidth:1,tickPixelInterval:72,showLastLabel:!0,labels:{x:-8,y:3},lineWidth:0,maxPadding:0.05,minPadding:0.05,startOnTick:!0,tickWidth:0,title:{rotation:270,text:"Values"},stackLabels:{enabled:!1,formatter:function(){return Aa(this.total,-1)},style:G.style}},defaultLeftAxisOptions:{labels:{x:-8,y:null},title:{rotation:270}},defaultRightAxisOptions:{labels:{x:8,y:null},title:{rotation:90}},defaultBottomAxisOptions:{labels:{x:0,y:14},title:{rotation:0}},defaultTopAxisOptions:{labels:{x:0,y:-5},
|
||||
title:{rotation:0}},init:function(a,b){var c=b.isX;this.horiz=a.inverted?!c:c;this.xOrY=(this.isXAxis=c)?"x":"y";this.opposite=b.opposite;this.side=this.horiz?this.opposite?0:2:this.opposite?1:3;this.setOptions(b);var d=this.options,e=d.type;this.labelFormatter=d.labels.formatter||this.defaultLabelFormatter;this.userOptions=b;this.minPixelPadding=0;this.chart=a;this.reversed=d.reversed;this.zoomEnabled=d.zoomEnabled!==!1;this.categories=d.categories||e==="category";this.names=[];this.isLog=e==="logarithmic";
|
||||
this.isDatetimeAxis=e==="datetime";this.isLinked=u(d.linkedTo);this.tickmarkOffset=this.categories&&d.tickmarkPlacement==="between"?0.5:0;this.ticks={};this.minorTicks={};this.plotLinesAndBands=[];this.alternateBands={};this.len=0;this.minRange=this.userMinRange=d.minRange||d.maxZoom;this.range=d.range;this.offset=d.offset||0;this.stacks={};this.oldStacks={};this.stackExtremes={};this.min=this.max=null;var f,d=this.options.events;pa(this,a.axes)===-1&&(a.axes.push(this),a[c?"xAxis":"yAxis"].push(this));
|
||||
this.series=this.series||[];if(a.inverted&&c&&this.reversed===v)this.reversed=!0;this.removePlotLine=this.removePlotBand=this.removePlotBandOrLine;for(f in d)K(this,f,d[f]);if(this.isLog)this.val2lin=ma,this.lin2val=fa},setOptions:function(a){this.options=x(this.defaultOptions,this.isXAxis?{}:this.defaultYAxisOptions,[this.defaultTopAxisOptions,this.defaultRightAxisOptions,this.defaultBottomAxisOptions,this.defaultLeftAxisOptions][this.side],x(L[this.isXAxis?"xAxis":"yAxis"],a))},update:function(a,
|
||||
b){var c=this.chart,a=c.options[this.xOrY+"Axis"][this.options.index]=x(this.userOptions,a);this.destroy(!0);this._addedPlotLB=this.userMin=this.userMax=v;this.init(c,s(a,{events:v}));c.isDirtyBox=!0;o(b,!0)&&c.redraw()},remove:function(a){var b=this.chart,c=this.xOrY+"Axis";n(this.series,function(a){a.remove(!1)});ga(b.axes,this);ga(b[c],this);b.options[c].splice(this.options.index,1);n(b[c],function(a,b){a.options.index=b});this.destroy();b.isDirtyBox=!0;o(a,!0)&&b.redraw()},defaultLabelFormatter:function(){var a=
|
||||
this.axis,b=this.value,c=a.categories,d=this.dateTimeLabelFormat,e=L.lang.numericSymbols,f=e&&e.length,g,h=a.options.labels.format,a=a.isLog?b:a.tickInterval;if(h)g=Ca(h,this);else if(c)g=b;else if(d)g=Ya(d,b);else if(f&&a>=1E3)for(;f--&&g===v;)c=Math.pow(1E3,f+1),a>=c&&e[f]!==null&&(g=Aa(b/c,-1)+e[f]);g===v&&(g=b>=1E3?Aa(b,0):Aa(b,-1));return g},getSeriesExtremes:function(){var a=this,b=a.chart;a.hasVisibleSeries=!1;a.dataMin=a.dataMax=null;a.stackExtremes={};a.buildStacks();n(a.series,function(c){if(c.visible||
|
||||
!b.options.chart.ignoreHiddenSeries){var d;d=c.options.threshold;var e;a.hasVisibleSeries=!0;a.isLog&&d<=0&&(d=null);if(a.isXAxis){if(d=c.xData,d.length)a.dataMin=J(o(a.dataMin,d[0]),Ja(d)),a.dataMax=r(o(a.dataMax,d[0]),ua(d))}else{c.getExtremes();e=c.dataMax;c=c.dataMin;if(u(c)&&u(e))a.dataMin=J(o(a.dataMin,c),c),a.dataMax=r(o(a.dataMax,e),e);if(u(d))if(a.dataMin>=d)a.dataMin=d,a.ignoreMinPadding=!0;else if(a.dataMax<d)a.dataMax=d,a.ignoreMaxPadding=!0}}})},translate:function(a,b,c,d,e,f){var g=
|
||||
this.len,h=1,i=0,j=d?this.oldTransA:this.transA,d=d?this.oldMin:this.min,k=this.minPixelPadding,e=(this.options.ordinal||this.isLog&&e)&&this.lin2val;if(!j)j=this.transA;c&&(h*=-1,i=g);this.reversed&&(h*=-1,i-=h*g);b?(a=a*h+i,a-=k,a=a/j+d,e&&(a=this.lin2val(a))):(e&&(a=this.val2lin(a)),f==="between"&&(f=0.5),a=h*(a-d)*j+i+h*k+(ra(f)?j*f*this.pointRange:0));return a},toPixels:function(a,b){return this.translate(a,!1,!this.horiz,null,!0)+(b?0:this.pos)},toValue:function(a,b){return this.translate(a-
|
||||
(b?0:this.pos),!0,!this.horiz,null,!0)},getPlotLinePath:function(a,b,c,d){var e=this.chart,f=this.left,g=this.top,h,i,j,a=this.translate(a,null,null,c),k=c&&e.oldChartHeight||e.chartHeight,l=c&&e.oldChartWidth||e.chartWidth,m;h=this.transB;c=i=t(a+h);h=j=t(k-a-h);if(isNaN(a))m=!0;else if(this.horiz){if(h=g,j=k-this.bottom,c<f||c>f+this.width)m=!0}else if(c=f,i=l-this.right,h<g||h>g+this.height)m=!0;return m&&!d?null:e.renderer.crispLine(["M",c,h,"L",i,j],b||0)},getPlotBandPath:function(a,b){var c=
|
||||
this.getPlotLinePath(b),d=this.getPlotLinePath(a);d&&c?d.push(c[4],c[5],c[1],c[2]):d=null;return d},getLinearTickPositions:function(a,b,c){for(var d,b=ia(P(b/a)*a),c=ia(wa(c/a)*a),e=[];b<=c;){e.push(b);b=ia(b+a);if(b===d)break;d=b}return e},getLogTickPositions:function(a,b,c,d){var e=this.options,f=this.len,g=[];if(!d)this._minorAutoInterval=null;if(a>=0.5)a=t(a),g=this.getLinearTickPositions(a,b,c);else if(a>=0.08)for(var f=P(b),h,i,j,k,l,e=a>0.3?[1,2,4]:a>0.15?[1,2,4,6,8]:[1,2,3,4,5,6,7,8,9];f<
|
||||
c+1&&!l;f++){i=e.length;for(h=0;h<i&&!l;h++)j=ma(fa(f)*e[h]),j>b&&(!d||k<=c)&&g.push(k),k>c&&(l=!0),k=j}else if(b=fa(b),c=fa(c),a=e[d?"minorTickInterval":"tickInterval"],a=o(a==="auto"?null:a,this._minorAutoInterval,(c-b)*(e.tickPixelInterval/(d?5:1))/((d?f/this.tickPositions.length:f)||1)),a=ob(a,null,nb(a)),g=Na(this.getLinearTickPositions(a,b,c),ma),!d)this._minorAutoInterval=a/5;if(!d)this.tickInterval=a;return g},getMinorTickPositions:function(){var a=this.options,b=this.tickPositions,c=this.minorTickInterval,
|
||||
d=[],e;if(this.isLog){e=b.length;for(a=1;a<e;a++)d=d.concat(this.getLogTickPositions(c,b[a-1],b[a],!0))}else if(this.isDatetimeAxis&&a.minorTickInterval==="auto")d=d.concat(Eb(Cb(c),this.min,this.max,a.startOfWeek)),d[0]<this.min&&d.shift();else for(b=this.min+(b[0]-this.min)%c;b<=this.max;b+=c)d.push(b);return d},adjustForMinRange:function(){var a=this.options,b=this.min,c=this.max,d,e=this.dataMax-this.dataMin>=this.minRange,f,g,h,i,j;if(this.isXAxis&&this.minRange===v&&!this.isLog)u(a.min)||u(a.max)?
|
||||
this.minRange=null:(n(this.series,function(a){i=a.xData;for(g=j=a.xIncrement?1:i.length-1;g>0;g--)if(h=i[g]-i[g-1],f===v||h<f)f=h}),this.minRange=J(f*5,this.dataMax-this.dataMin));if(c-b<this.minRange){var k=this.minRange;d=(k-c+b)/2;d=[b-d,o(a.min,b-d)];if(e)d[2]=this.dataMin;b=ua(d);c=[b+k,o(a.max,b+k)];if(e)c[2]=this.dataMax;c=Ja(c);c-b<k&&(d[0]=c-k,d[1]=o(a.min,c-k),b=ua(d))}this.min=b;this.max=c},setAxisTranslation:function(a){var b=this.max-this.min,c=0,d,e=0,f=0,g=this.linkedParent,h=this.transA;
|
||||
if(this.isXAxis)g?(e=g.minPointOffset,f=g.pointRangePadding):n(this.series,function(a){var g=a.pointRange,h=a.options.pointPlacement,l=a.closestPointRange;g>b&&(g=0);c=r(c,g);e=r(e,ea(h)?0:g/2);f=r(f,h==="on"?0:g);!a.noSharedTooltip&&u(l)&&(d=u(d)?J(d,l):l)}),g=this.ordinalSlope&&d?this.ordinalSlope/d:1,this.minPointOffset=e*=g,this.pointRangePadding=f*=g,this.pointRange=J(c,b),this.closestPointRange=d;if(a)this.oldTransA=h;this.translationSlope=this.transA=h=this.len/(b+f||1);this.transB=this.horiz?
|
||||
this.left:this.bottom;this.minPixelPadding=h*e},setTickPositions:function(a){var b=this,c=b.chart,d=b.options,e=b.isLog,f=b.isDatetimeAxis,g=b.isXAxis,h=b.isLinked,i=b.options.tickPositioner,j=d.maxPadding,k=d.minPadding,l=d.tickInterval,m=d.minTickInterval,p=d.tickPixelInterval,q,aa=b.categories;h?(b.linkedParent=c[g?"xAxis":"yAxis"][d.linkedTo],c=b.linkedParent.getExtremes(),b.min=o(c.min,c.dataMin),b.max=o(c.max,c.dataMax),d.type!==b.linkedParent.options.type&&ka(11,1)):(b.min=o(b.userMin,d.min,
|
||||
b.dataMin),b.max=o(b.userMax,d.max,b.dataMax));if(e)!a&&J(b.min,o(b.dataMin,b.min))<=0&&ka(10,1),b.min=ia(ma(b.min)),b.max=ia(ma(b.max));if(b.range&&(b.userMin=b.min=r(b.min,b.max-b.range),b.userMax=b.max,a))b.range=null;b.beforePadding&&b.beforePadding();b.adjustForMinRange();if(!aa&&!b.usePercentage&&!h&&u(b.min)&&u(b.max)&&(c=b.max-b.min)){if(!u(d.min)&&!u(b.userMin)&&k&&(b.dataMin<0||!b.ignoreMinPadding))b.min-=c*k;if(!u(d.max)&&!u(b.userMax)&&j&&(b.dataMax>0||!b.ignoreMaxPadding))b.max+=c*j}b.min===
|
||||
b.max||b.min===void 0||b.max===void 0?b.tickInterval=1:h&&!l&&p===b.linkedParent.options.tickPixelInterval?b.tickInterval=b.linkedParent.tickInterval:(b.tickInterval=o(l,aa?1:(b.max-b.min)*p/r(b.len,p)),!u(l)&&b.len<p&&!this.isRadial&&(q=!0,b.tickInterval/=4));g&&!a&&n(b.series,function(a){a.processData(b.min!==b.oldMin||b.max!==b.oldMax)});b.setAxisTranslation(!0);b.beforeSetTickPositions&&b.beforeSetTickPositions();if(b.postProcessTickInterval)b.tickInterval=b.postProcessTickInterval(b.tickInterval);
|
||||
if(b.pointRange)b.tickInterval=r(b.pointRange,b.tickInterval);if(!l&&b.tickInterval<m)b.tickInterval=m;if(!f&&!e&&!l)b.tickInterval=ob(b.tickInterval,null,nb(b.tickInterval),d);b.minorTickInterval=d.minorTickInterval==="auto"&&b.tickInterval?b.tickInterval/5:d.minorTickInterval;b.tickPositions=a=d.tickPositions?[].concat(d.tickPositions):i&&i.apply(b,[b.min,b.max]);if(!a)!b.ordinalPositions&&(b.max-b.min)/b.tickInterval>r(2*b.len,200)&&ka(19,!0),a=f?(b.getNonLinearTimeTicks||Eb)(Cb(b.tickInterval,
|
||||
d.units),b.min,b.max,d.startOfWeek,b.ordinalPositions,b.closestPointRange,!0):e?b.getLogTickPositions(b.tickInterval,b.min,b.max):b.getLinearTickPositions(b.tickInterval,b.min,b.max),q&&a.splice(1,a.length-2),b.tickPositions=a;if(!h)e=a[0],f=a[a.length-1],h=b.minPointOffset||0,d.startOnTick?b.min=e:b.min-h>e&&a.shift(),d.endOnTick?b.max=f:b.max+h<f&&a.pop(),a.length===1&&(b.min-=0.001,b.max+=0.001)},setMaxTicks:function(){var a=this.chart,b=a.maxTicks||{},c=this.tickPositions,d=this._maxTicksKey=
|
||||
[this.xOrY,this.pos,this.len].join("-");if(!this.isLinked&&!this.isDatetimeAxis&&c&&c.length>(b[d]||0)&&this.options.alignTicks!==!1)b[d]=c.length;a.maxTicks=b},adjustTickAmount:function(){var a=this._maxTicksKey,b=this.tickPositions,c=this.chart.maxTicks;if(c&&c[a]&&!this.isDatetimeAxis&&!this.categories&&!this.isLinked&&this.options.alignTicks!==!1){var d=this.tickAmount,e=b.length;this.tickAmount=a=c[a];if(e<a){for(;b.length<a;)b.push(ia(b[b.length-1]+this.tickInterval));this.transA*=(e-1)/(a-
|
||||
1);this.max=b[b.length-1]}if(u(d)&&a!==d)this.isDirty=!0}},setScale:function(){var a=this.stacks,b,c,d,e;this.oldMin=this.min;this.oldMax=this.max;this.oldAxisLength=this.len;this.setAxisSize();e=this.len!==this.oldAxisLength;n(this.series,function(a){if(a.isDirtyData||a.isDirty||a.xAxis.isDirty)d=!0});if(e||d||this.isLinked||this.forceRedraw||this.userMin!==this.oldUserMin||this.userMax!==this.oldUserMax){if(!this.isXAxis)for(b in a)for(c in a[b])a[b][c].total=null,a[b][c].cum=0;this.forceRedraw=
|
||||
!1;this.getSeriesExtremes();this.setTickPositions();this.oldUserMin=this.userMin;this.oldUserMax=this.userMax;if(!this.isDirty)this.isDirty=e||this.min!==this.oldMin||this.max!==this.oldMax}else if(!this.isXAxis){if(this.oldStacks)a=this.stacks=this.oldStacks;for(b in a)for(c in a[b])a[b][c].cum=a[b][c].total}this.setMaxTicks()},setExtremes:function(a,b,c,d,e){var f=this,g=f.chart,c=o(c,!0),e=s(e,{min:a,max:b});A(f,"setExtremes",e,function(){f.userMin=a;f.userMax=b;f.eventArgs=e;f.isDirtyExtremes=
|
||||
!0;c&&g.redraw(d)})},zoom:function(a,b){this.allowZoomOutside||(u(this.dataMin)&&a<=this.dataMin&&(a=v),u(this.dataMax)&&b>=this.dataMax&&(b=v));this.displayBtn=a!==v||b!==v;this.setExtremes(a,b,!1,v,{trigger:"zoom"});return!0},setAxisSize:function(){var a=this.chart,b=this.options,c=b.offsetLeft||0,d=b.offsetRight||0,e=this.horiz,f,g;this.left=g=o(b.left,a.plotLeft+c);this.top=f=o(b.top,a.plotTop);this.width=c=o(b.width,a.plotWidth-c+d);this.height=b=o(b.height,a.plotHeight);this.bottom=a.chartHeight-
|
||||
b-f;this.right=a.chartWidth-c-g;this.len=r(e?c:b,0);this.pos=e?g:f},getExtremes:function(){var a=this.isLog;return{min:a?ia(fa(this.min)):this.min,max:a?ia(fa(this.max)):this.max,dataMin:this.dataMin,dataMax:this.dataMax,userMin:this.userMin,userMax:this.userMax}},getThreshold:function(a){var b=this.isLog,c=b?fa(this.min):this.min,b=b?fa(this.max):this.max;c>a||a===null?a=c:b<a&&(a=b);return this.translate(a,0,1,0,1)},addPlotBand:function(a){this.addPlotBandOrLine(a,"plotBands")},addPlotLine:function(a){this.addPlotBandOrLine(a,
|
||||
"plotLines")},addPlotBandOrLine:function(a,b){var c=(new vb(this,a)).render(),d=this.userOptions;c&&(b&&(d[b]=d[b]||[],d[b].push(a)),this.plotLinesAndBands.push(c));return c},autoLabelAlign:function(a){a=(o(a,0)-this.side*90+720)%360;return a>15&&a<165?"right":a>195&&a<345?"left":"center"},getOffset:function(){var a=this,b=a.chart,c=b.renderer,d=a.options,e=a.tickPositions,f=a.ticks,g=a.horiz,h=a.side,i=b.inverted?[1,0,3,2][h]:h,j,k=0,l,m=0,p=d.title,q=d.labels,aa=0,B=b.axisOffset,t=b.clipOffset,
|
||||
s=[-1,1,1,-1][h],w,x=1,y=o(q.maxStaggerLines,5),Ha,E,H,C;a.hasData=j=a.hasVisibleSeries||u(a.min)&&u(a.max)&&!!e;a.showAxis=b=j||o(d.showEmpty,!0);a.staggerLines=a.horiz&&q.staggerLines;if(!a.axisGroup)a.gridGroup=c.g("grid").attr({zIndex:d.gridZIndex||1}).add(),a.axisGroup=c.g("axis").attr({zIndex:d.zIndex||2}).add(),a.labelGroup=c.g("axis-labels").attr({zIndex:q.zIndex||7}).add();if(j||a.isLinked){a.labelAlign=o(q.align||a.autoLabelAlign(q.rotation));n(e,function(b){f[b]?f[b].addLabel():f[b]=new Ma(a,
|
||||
b)});if(a.horiz&&!a.staggerLines&&y&&!q.rotation){for(w=a.reversed?[].concat(e).reverse():e;x<y;){j=[];Ha=!1;for(q=0;q<w.length;q++)E=w[q],H=(H=f[E].label&&f[E].label.getBBox())?H.width:0,C=q%x,H&&(E=a.translate(E),j[C]!==v&&E<j[C]&&(Ha=!0),j[C]=E+H);if(Ha)x++;else break}if(x>1)a.staggerLines=x}n(e,function(b){if(h===0||h===2||{1:"left",3:"right"}[h]===a.labelAlign)aa=r(f[b].getLabelSize(),aa)});if(a.staggerLines)aa*=a.staggerLines,a.labelOffset=aa}else for(w in f)f[w].destroy(),delete f[w];if(p&&
|
||||
p.text&&p.enabled!==!1){if(!a.axisTitle)a.axisTitle=c.text(p.text,0,0,p.useHTML).attr({zIndex:7,rotation:p.rotation||0,align:p.textAlign||{low:"left",middle:"center",high:"right"}[p.align]}).css(p.style).add(a.axisGroup),a.axisTitle.isNew=!0;if(b)k=a.axisTitle.getBBox()[g?"height":"width"],m=o(p.margin,g?5:10),l=p.offset;a.axisTitle[b?"show":"hide"]()}a.offset=s*o(d.offset,B[h]);a.axisTitleMargin=o(l,aa+m+(h!==2&&aa&&s*d.labels[g?"y":"x"]));B[h]=r(B[h],a.axisTitleMargin+k+s*a.offset);t[i]=r(t[i],
|
||||
P(d.lineWidth/2)*2)},getLinePath:function(a){var b=this.chart,c=this.opposite,d=this.offset,e=this.horiz,f=this.left+(c?this.width:0)+d,d=b.chartHeight-this.bottom-(c?this.height:0)+d;c&&(a*=-1);return b.renderer.crispLine(["M",e?this.left:f,e?d:this.top,"L",e?b.chartWidth-this.right:f,e?d:b.chartHeight-this.bottom],a)},getTitlePosition:function(){var a=this.horiz,b=this.left,c=this.top,d=this.len,e=this.options.title,f=a?b:c,g=this.opposite,h=this.offset,i=y(e.style.fontSize||12),d={low:f+(a?0:d),
|
||||
middle:f+d/2,high:f+(a?d:0)}[e.align],b=(a?c+this.height:b)+(a?1:-1)*(g?-1:1)*this.axisTitleMargin+(this.side===2?i:0);return{x:a?d:b+(g?this.width:0)+h+(e.x||0),y:a?b-(g?this.height:0)+h:d+(e.y||0)}},render:function(){var a=this,b=a.chart,c=b.renderer,d=a.options,e=a.isLog,f=a.isLinked,g=a.tickPositions,h=a.axisTitle,i=a.stacks,j=a.ticks,k=a.minorTicks,l=a.alternateBands,m=d.stackLabels,p=d.alternateGridColor,q=a.tickmarkOffset,o=d.lineWidth,B,r=b.hasRendered&&u(a.oldMin)&&!isNaN(a.oldMin);B=a.hasData;
|
||||
var t=a.showAxis,s,w;n([j,k,l],function(a){for(var b in a)a[b].isActive=!1});if(B||f)if(a.minorTickInterval&&!a.categories&&n(a.getMinorTickPositions(),function(b){k[b]||(k[b]=new Ma(a,b,"minor"));r&&k[b].isNew&&k[b].render(null,!0);k[b].render(null,!1,1)}),g.length&&(n(g.slice(1).concat([g[0]]),function(b,c){c=c===g.length-1?0:c+1;if(!f||b>=a.min&&b<=a.max)j[b]||(j[b]=new Ma(a,b)),r&&j[b].isNew&&j[b].render(c,!0),j[b].render(c,!1,1)}),q&&a.min===0&&(j[-1]||(j[-1]=new Ma(a,-1,null,!0)),j[-1].render(-1))),
|
||||
p&&n(g,function(b,c){if(c%2===0&&b<a.max)l[b]||(l[b]=new vb(a)),s=b+q,w=g[c+1]!==v?g[c+1]+q:a.max,l[b].options={from:e?fa(s):s,to:e?fa(w):w,color:p},l[b].render(),l[b].isActive=!0}),!a._addedPlotLB)n((d.plotLines||[]).concat(d.plotBands||[]),function(b){a.addPlotBandOrLine(b)}),a._addedPlotLB=!0;n([j,k,l],function(a){var c,d,e=[],f=Fa?Fa.duration||500:0,g=function(){for(d=e.length;d--;)a[e[d]]&&!a[e[d]].isActive&&(a[e[d]].destroy(),delete a[e[d]])};for(c in a)if(!a[c].isActive)a[c].render(c,!1,0),
|
||||
a[c].isActive=!1,e.push(c);a===l||!b.hasRendered||!f?g():f&&setTimeout(g,f)});if(o)B=a.getLinePath(o),a.axisLine?a.axisLine.animate({d:B}):a.axisLine=c.path(B).attr({stroke:d.lineColor,"stroke-width":o,zIndex:7}).add(a.axisGroup),a.axisLine[t?"show":"hide"]();if(h&&t)h[h.isNew?"attr":"animate"](a.getTitlePosition()),h.isNew=!1;if(m&&m.enabled){var x,y,d=a.stackTotalGroup;if(!d)a.stackTotalGroup=d=c.g("stack-labels").attr({visibility:"visible",zIndex:6}).add();d.translate(b.plotLeft,b.plotTop);for(x in i)for(y in c=
|
||||
i[x],c)c[y].render(d)}a.isDirty=!1},removePlotBandOrLine:function(a){for(var b=this.plotLinesAndBands,c=this.options,d=this.userOptions,e=b.length;e--;)b[e].id===a&&b[e].destroy();n([c.plotLines||[],d.plotLines||[],c.plotBands||[],d.plotBands||[]],function(b){for(e=b.length;e--;)b[e].id===a&&ga(b,b[e])})},setTitle:function(a,b){this.update({title:a},b)},redraw:function(){var a=this.chart.pointer;a.reset&&a.reset(!0);this.render();n(this.plotLinesAndBands,function(a){a.render()});n(this.series,function(a){a.isDirty=
|
||||
!0})},buildStacks:function(){var a=this.series,b=a.length;if(!this.isXAxis){for(;b--;)a[b].setStackedPoints();if(this.usePercentage)for(b=0;b<a.length;b++)a[b].setPercentStacks()}},setCategories:function(a,b){this.update({categories:a},b)},destroy:function(a){var b=this,c=b.stacks,d,e=b.plotLinesAndBands;a||$(b);for(d in c)Ka(c[d]),c[d]=null;n([b.ticks,b.minorTicks,b.alternateBands],function(a){Ka(a)});for(a=e.length;a--;)e[a].destroy();n("stackTotalGroup,axisLine,axisGroup,gridGroup,labelGroup,axisTitle".split(","),
|
||||
function(a){b[a]&&(b[a]=b[a].destroy())})}};wb.prototype={init:function(a,b){var c=b.borderWidth,d=b.style,e=y(d.padding);this.chart=a;this.options=b;this.crosshairs=[];this.now={x:0,y:0};this.isHidden=!0;this.label=a.renderer.label("",0,0,b.shape,null,null,b.useHTML,null,"tooltip").attr({padding:e,fill:b.backgroundColor,"stroke-width":c,r:b.borderRadius,zIndex:8}).css(d).css({padding:0}).add().attr({y:-999});ca||this.label.shadow(b.shadow);this.shared=b.shared},destroy:function(){n(this.crosshairs,
|
||||
function(a){a&&a.destroy()});if(this.label)this.label=this.label.destroy();clearTimeout(this.hideTimer);clearTimeout(this.tooltipTimeout)},move:function(a,b,c,d){var e=this,f=e.now,g=e.options.animation!==!1&&!e.isHidden;s(f,{x:g?(2*f.x+a)/3:a,y:g?(f.y+b)/2:b,anchorX:g?(2*f.anchorX+c)/3:c,anchorY:g?(f.anchorY+d)/2:d});e.label.attr(f);if(g&&(M(a-f.x)>1||M(b-f.y)>1))clearTimeout(this.tooltipTimeout),this.tooltipTimeout=setTimeout(function(){e&&e.move(a,b,c,d)},32)},hide:function(){var a=this,b;clearTimeout(this.hideTimer);
|
||||
if(!this.isHidden)b=this.chart.hoverPoints,this.hideTimer=setTimeout(function(){a.label.fadeOut();a.isHidden=!0},o(this.options.hideDelay,500)),b&&n(b,function(a){a.setState()}),this.chart.hoverPoints=null},hideCrosshairs:function(){n(this.crosshairs,function(a){a&&a.hide()})},getAnchor:function(a,b){var c,d=this.chart,e=d.inverted,f=d.plotTop,g=0,h=0,i,a=ja(a);c=a[0].tooltipPos;this.followPointer&&b&&(b.chartX===v&&(b=d.pointer.normalize(b)),c=[b.chartX-d.plotLeft,b.chartY-f]);c||(n(a,function(a){i=
|
||||
a.series.yAxis;g+=a.plotX;h+=(a.plotLow?(a.plotLow+a.plotHigh)/2:a.plotY)+(!e&&i?i.top-f:0)}),g/=a.length,h/=a.length,c=[e?d.plotWidth-h:g,this.shared&&!e&&a.length>1&&b?b.chartY-f:e?d.plotHeight-g:h]);return Na(c,t)},getPosition:function(a,b,c){var d=this.chart,e=d.plotLeft,f=d.plotTop,g=d.plotWidth,h=d.plotHeight,i=o(this.options.distance,12),j=c.plotX,c=c.plotY,d=j+e+(d.inverted?i:-a-i),k=c-b+f+15,l;d<7&&(d=e+r(j,0)+i);d+a>e+g&&(d-=d+a-(e+g),k=c-b+f-i,l=!0);k<f+5&&(k=f+5,l&&c>=k&&c<=k+b&&(k=c+
|
||||
f+i));k+b>f+h&&(k=r(f,f+h-b-i));return{x:d,y:k}},defaultFormatter:function(a){var b=this.points||ja(this),c=b[0].series,d;d=[c.tooltipHeaderFormatter(b[0])];n(b,function(a){c=a.series;d.push(c.tooltipFormatter&&c.tooltipFormatter(a)||a.point.tooltipFormatter(c.tooltipOptions.pointFormat))});d.push(a.options.footerFormat||"");return d.join("")},refresh:function(a,b){var c=this.chart,d=this.label,e=this.options,f,g,h={},i,j=[];i=e.formatter||this.defaultFormatter;var h=c.hoverPoints,k,l=e.crosshairs,
|
||||
m=this.shared;clearTimeout(this.hideTimer);this.followPointer=ja(a)[0].series.tooltipOptions.followPointer;g=this.getAnchor(a,b);f=g[0];g=g[1];m&&(!a.series||!a.series.noSharedTooltip)?(c.hoverPoints=a,h&&n(h,function(a){a.setState()}),n(a,function(a){a.setState("hover");j.push(a.getLabelConfig())}),h={x:a[0].category,y:a[0].y},h.points=j,a=a[0]):h=a.getLabelConfig();i=i.call(h,this);h=a.series;i===!1?this.hide():(this.isHidden&&(Wa(d),d.attr("opacity",1).show()),d.attr({text:i}),k=e.borderColor||
|
||||
a.color||h.color||"#606060",d.attr({stroke:k}),this.updatePosition({plotX:f,plotY:g}),this.isHidden=!1);if(l){l=ja(l);for(d=l.length;d--;)if(m=a.series,e=m[d?"yAxis":"xAxis"],l[d]&&e)if(h=d?o(a.stackY,a.y):a.x,e.isLog&&(h=ma(h)),d===1&&m.modifyValue&&(h=m.modifyValue(h)),e=e.getPlotLinePath(h,1),this.crosshairs[d])this.crosshairs[d].attr({d:e,visibility:"visible"});else{h={"stroke-width":l[d].width||1,stroke:l[d].color||"#C0C0C0",zIndex:l[d].zIndex||2};if(l[d].dashStyle)h.dashstyle=l[d].dashStyle;
|
||||
this.crosshairs[d]=c.renderer.path(e).attr(h).add()}}A(c,"tooltipRefresh",{text:i,x:f+c.plotLeft,y:g+c.plotTop,borderColor:k})},updatePosition:function(a){var b=this.chart,c=this.label,c=(this.options.positioner||this.getPosition).call(this,c.width,c.height,a);this.move(t(c.x),t(c.y),a.plotX+b.plotLeft,a.plotY+b.plotTop)}};xb.prototype={init:function(a,b){var c=b.chart,d=c.events,e=ca?"":c.zoomType,c=a.inverted,f;this.options=b;this.chart=a;this.zoomX=f=/x/.test(e);this.zoomY=e=/y/.test(e);this.zoomHor=
|
||||
f&&!c||e&&c;this.zoomVert=e&&!c||f&&c;this.runChartClick=d&&!!d.click;this.pinchDown=[];this.lastValidTouch={};if(b.tooltip.enabled)a.tooltip=new wb(a,b.tooltip);this.setDOMEvents()},normalize:function(a,b){var c,d,a=a||N.event;if(!a.target)a.target=a.srcElement;a=Xb(a);d=a.touches?a.touches.item(0):a;if(!b)this.chartPosition=b=Wb(this.chart.container);d.pageX===v?(c=r(a.x,a.clientX-b.left),d=a.y):(c=d.pageX-b.left,d=d.pageY-b.top);return s(a,{chartX:t(c),chartY:t(d)})},getCoordinates:function(a){var b=
|
||||
{xAxis:[],yAxis:[]};n(this.chart.axes,function(c){b[c.isXAxis?"xAxis":"yAxis"].push({axis:c,value:c.toValue(a[c.horiz?"chartX":"chartY"])})});return b},getIndex:function(a){var b=this.chart;return b.inverted?b.plotHeight+b.plotTop-a.chartY:a.chartX-b.plotLeft},runPointActions:function(a){var b=this.chart,c=b.series,d=b.tooltip,e,f=b.hoverPoint,g=b.hoverSeries,h,i,j=b.chartWidth,k=this.getIndex(a);if(d&&this.options.tooltip.shared&&(!g||!g.noSharedTooltip)){e=[];h=c.length;for(i=0;i<h;i++)if(c[i].visible&&
|
||||
c[i].options.enableMouseTracking!==!1&&!c[i].noSharedTooltip&&c[i].tooltipPoints.length&&(b=c[i].tooltipPoints[k])&&b.series)b._dist=M(k-b.clientX),j=J(j,b._dist),e.push(b);for(h=e.length;h--;)e[h]._dist>j&&e.splice(h,1);if(e.length&&e[0].clientX!==this.hoverX)d.refresh(e,a),this.hoverX=e[0].clientX}if(g&&g.tracker){if((b=g.tooltipPoints[k])&&b!==f)b.onMouseOver(a)}else d&&d.followPointer&&!d.isHidden&&(a=d.getAnchor([{}],a),d.updatePosition({plotX:a[0],plotY:a[1]}))},reset:function(a){var b=this.chart,
|
||||
c=b.hoverSeries,d=b.hoverPoint,e=b.tooltip,b=e&&e.shared?b.hoverPoints:d;(a=a&&e&&b)&&ja(b)[0].plotX===v&&(a=!1);if(a)e.refresh(b);else{if(d)d.onMouseOut();if(c)c.onMouseOut();e&&(e.hide(),e.hideCrosshairs());this.hoverX=null}},scaleGroups:function(a,b){var c=this.chart,d;n(c.series,function(e){d=a||e.getPlotBox();e.xAxis&&e.xAxis.zoomEnabled&&(e.group.attr(d),e.markerGroup&&(e.markerGroup.attr(d),e.markerGroup.clip(b?c.clipRect:null)),e.dataLabelsGroup&&e.dataLabelsGroup.attr(d))});c.clipRect.attr(b||
|
||||
c.clipBox)},pinchTranslate:function(a,b,c,d,e,f,g,h){a&&this.pinchTranslateDirection(!0,c,d,e,f,g,h);b&&this.pinchTranslateDirection(!1,c,d,e,f,g,h)},pinchTranslateDirection:function(a,b,c,d,e,f,g,h){var i=this.chart,j=a?"x":"y",k=a?"X":"Y",l="chart"+k,m=a?"width":"height",p=i["plot"+(a?"Left":"Top")],q,o,n=h||1,r=i.inverted,t=i.bounds[a?"h":"v"],u=b.length===1,s=b[0][l],v=c[0][l],w=!u&&b[1][l],x=!u&&c[1][l],y,c=function(){!u&&M(s-w)>20&&(n=h||M(v-x)/M(s-w));o=(p-v)/n+s;q=i["plot"+(a?"Width":"Height")]/
|
||||
n};c();b=o;b<t.min?(b=t.min,y=!0):b+q>t.max&&(b=t.max-q,y=!0);y?(v-=0.8*(v-g[j][0]),u||(x-=0.8*(x-g[j][1])),c()):g[j]=[v,x];r||(f[j]=o-p,f[m]=q);f=r?1/n:n;e[m]=q;e[j]=b;d[r?a?"scaleY":"scaleX":"scale"+k]=n;d["translate"+k]=f*p+(v-f*s)},pinch:function(a){var b=this,c=b.chart,d=b.pinchDown,e=c.tooltip&&c.tooltip.options.followTouchMove,f=a.touches,g=f.length,h=b.lastValidTouch,i=b.zoomHor||b.pinchHor,j=b.zoomVert||b.pinchVert,k=i||j,l=b.selectionMarker,m={},p=g===1&&(b.inClass(a.target,"highcharts-tracker")&&
|
||||
c.runTrackerClick||c.runChartClick),q={};(k||e)&&!p&&a.preventDefault();Na(f,function(a){return b.normalize(a)});if(a.type==="touchstart")n(f,function(a,b){d[b]={chartX:a.chartX,chartY:a.chartY}}),h.x=[d[0].chartX,d[1]&&d[1].chartX],h.y=[d[0].chartY,d[1]&&d[1].chartY],n(c.axes,function(a){if(a.zoomEnabled){var b=c.bounds[a.horiz?"h":"v"],d=a.minPixelPadding,e=a.toPixels(a.dataMin),f=a.toPixels(a.dataMax),g=J(e,f),e=r(e,f);b.min=J(a.pos,g-d);b.max=r(a.pos+a.len,e+d)}});else if(d.length){if(!l)b.selectionMarker=
|
||||
l=s({destroy:oa},c.plotBox);b.pinchTranslate(i,j,d,f,m,l,q,h);b.hasPinched=k;b.scaleGroups(m,q);!k&&e&&g===1&&this.runPointActions(b.normalize(a))}},dragStart:function(a){var b=this.chart;b.mouseIsDown=a.type;b.cancelClick=!1;b.mouseDownX=this.mouseDownX=a.chartX;b.mouseDownY=this.mouseDownY=a.chartY},drag:function(a){var b=this.chart,c=b.options.chart,d=a.chartX,e=a.chartY,f=this.zoomHor,g=this.zoomVert,h=b.plotLeft,i=b.plotTop,j=b.plotWidth,k=b.plotHeight,l,m=this.mouseDownX,p=this.mouseDownY;d<
|
||||
h?d=h:d>h+j&&(d=h+j);e<i?e=i:e>i+k&&(e=i+k);this.hasDragged=Math.sqrt(Math.pow(m-d,2)+Math.pow(p-e,2));if(this.hasDragged>10){l=b.isInsidePlot(m-h,p-i);if(b.hasCartesianSeries&&(this.zoomX||this.zoomY)&&l&&!this.selectionMarker)this.selectionMarker=b.renderer.rect(h,i,f?1:j,g?1:k,0).attr({fill:c.selectionMarkerFill||"rgba(69,114,167,0.25)",zIndex:7}).add();this.selectionMarker&&f&&(d-=m,this.selectionMarker.attr({width:M(d),x:(d>0?0:d)+m}));this.selectionMarker&&g&&(d=e-p,this.selectionMarker.attr({height:M(d),
|
||||
y:(d>0?0:d)+p}));l&&!this.selectionMarker&&c.panning&&b.pan(a,c.panning)}},drop:function(a){var b=this.chart,c=this.hasPinched;if(this.selectionMarker){var d={xAxis:[],yAxis:[],originalEvent:a.originalEvent||a},e=this.selectionMarker,f=e.x,g=e.y,h;if(this.hasDragged||c)n(b.axes,function(a){if(a.zoomEnabled){var b=a.horiz,c=a.toValue(b?f:g),b=a.toValue(b?f+e.width:g+e.height);!isNaN(c)&&!isNaN(b)&&(d[a.xOrY+"Axis"].push({axis:a,min:J(c,b),max:r(c,b)}),h=!0)}}),h&&A(b,"selection",d,function(a){b.zoom(s(a,
|
||||
c?{animation:!1}:null))});this.selectionMarker=this.selectionMarker.destroy();c&&this.scaleGroups()}if(b)I(b.container,{cursor:b._cursor}),b.cancelClick=this.hasDragged>10,b.mouseIsDown=this.hasDragged=this.hasPinched=!1,this.pinchDown=[]},onContainerMouseDown:function(a){a=this.normalize(a);a.preventDefault&&a.preventDefault();this.dragStart(a)},onDocumentMouseUp:function(a){this.drop(a)},onDocumentMouseMove:function(a){var b=this.chart,c=this.chartPosition,d=b.hoverSeries,a=this.normalize(a,c);
|
||||
c&&d&&!this.inClass(a.target,"highcharts-tracker")&&!b.isInsidePlot(a.chartX-b.plotLeft,a.chartY-b.plotTop)&&this.reset()},onContainerMouseLeave:function(){this.reset();this.chartPosition=null},onContainerMouseMove:function(a){var b=this.chart,a=this.normalize(a);a.returnValue=!1;b.mouseIsDown==="mousedown"&&this.drag(a);(this.inClass(a.target,"highcharts-tracker")||b.isInsidePlot(a.chartX-b.plotLeft,a.chartY-b.plotTop))&&!b.openMenu&&this.runPointActions(a)},inClass:function(a,b){for(var c;a;){if(c=
|
||||
w(a,"class"))if(c.indexOf(b)!==-1)return!0;else if(c.indexOf("highcharts-container")!==-1)return!1;a=a.parentNode}},onTrackerMouseOut:function(a){var b=this.chart.hoverSeries;if(b&&!b.options.stickyTracking&&!this.inClass(a.toElement||a.relatedTarget,"highcharts-tooltip"))b.onMouseOut()},onContainerClick:function(a){var b=this.chart,c=b.hoverPoint,d=b.plotLeft,e=b.plotTop,f=b.inverted,g,h,i,a=this.normalize(a);a.cancelBubble=!0;if(!b.cancelClick)c&&this.inClass(a.target,"highcharts-tracker")?(g=this.chartPosition,
|
||||
h=c.plotX,i=c.plotY,s(c,{pageX:g.left+d+(f?b.plotWidth-i:h),pageY:g.top+e+(f?b.plotHeight-h:i)}),A(c.series,"click",s(a,{point:c})),b.hoverPoint&&c.firePointEvent("click",a)):(s(a,this.getCoordinates(a)),b.isInsidePlot(a.chartX-d,a.chartY-e)&&A(b,"click",a))},onContainerTouchStart:function(a){var b=this.chart;a.touches.length===1?(a=this.normalize(a),b.isInsidePlot(a.chartX-b.plotLeft,a.chartY-b.plotTop)?(this.runPointActions(a),this.pinch(a)):this.reset()):a.touches.length===2&&this.pinch(a)},onContainerTouchMove:function(a){(a.touches.length===
|
||||
1||a.touches.length===2)&&this.pinch(a)},onDocumentTouchEnd:function(a){this.drop(a)},setDOMEvents:function(){var a=this,b=a.chart.container,c;this._events=c=[[b,"onmousedown","onContainerMouseDown"],[b,"onmousemove","onContainerMouseMove"],[b,"onclick","onContainerClick"],[b,"mouseleave","onContainerMouseLeave"],[z,"mousemove","onDocumentMouseMove"],[z,"mouseup","onDocumentMouseUp"]];jb&&c.push([b,"ontouchstart","onContainerTouchStart"],[b,"ontouchmove","onContainerTouchMove"],[z,"touchend","onDocumentTouchEnd"]);
|
||||
n(c,function(b){a["_"+b[2]]=function(c){a[b[2]](c)};b[1].indexOf("on")===0?b[0][b[1]]=a["_"+b[2]]:K(b[0],b[1],a["_"+b[2]])})},destroy:function(){var a=this;n(a._events,function(b){b[1].indexOf("on")===0?b[0][b[1]]=null:$(b[0],b[1],a["_"+b[2]])});delete a._events;clearInterval(a.tooltipTimeout)}};fb.prototype={init:function(a,b){var c=this,d=b.itemStyle,e=o(b.padding,8),f=b.itemMarginTop||0;this.options=b;if(b.enabled)c.baseline=y(d.fontSize)+3+f,c.itemStyle=d,c.itemHiddenStyle=x(d,b.itemHiddenStyle),
|
||||
c.itemMarginTop=f,c.padding=e,c.initialItemX=e,c.initialItemY=e-5,c.maxItemWidth=0,c.chart=a,c.itemHeight=0,c.lastLineHeight=0,c.render(),K(c.chart,"endResize",function(){c.positionCheckboxes()})},colorizeItem:function(a,b){var c=this.options,d=a.legendItem,e=a.legendLine,f=a.legendSymbol,g=this.itemHiddenStyle.color,c=b?c.itemStyle.color:g,h=b?a.color:g,g=a.options&&a.options.marker,i={stroke:h,fill:h},j;d&&d.css({fill:c,color:c});e&&e.attr({stroke:h});if(f){if(g&&f.isMarker)for(j in g=a.convertAttribs(g),
|
||||
g)d=g[j],d!==v&&(i[j]=d);f.attr(i)}},positionItem:function(a){var b=this.options,c=b.symbolPadding,b=!b.rtl,d=a._legendItemPos,e=d[0],d=d[1],f=a.checkbox;a.legendGroup&&a.legendGroup.translate(b?e:this.legendWidth-e-2*c-4,d);if(f)f.x=e,f.y=d},destroyItem:function(a){var b=a.checkbox;n(["legendItem","legendLine","legendSymbol","legendGroup"],function(b){a[b]&&(a[b]=a[b].destroy())});b&&Ta(a.checkbox)},destroy:function(){var a=this.group,b=this.box;if(b)this.box=b.destroy();if(a)this.group=a.destroy()},
|
||||
positionCheckboxes:function(a){var b=this.group.alignAttr,c,d=this.clipHeight||this.legendHeight;if(b)c=b.translateY,n(this.allItems,function(e){var f=e.checkbox,g;f&&(g=c+f.y+(a||0)+3,I(f,{left:b.translateX+e.legendItemWidth+f.x-20+"px",top:g+"px",display:g>c-6&&g<c+d-6?"":S}))})},renderTitle:function(){var a=this.padding,b=this.options.title,c=0;if(b.text){if(!this.title)this.title=this.chart.renderer.label(b.text,a-3,a-4,null,null,null,null,null,"legend-title").attr({zIndex:1}).css(b.style).add(this.group);
|
||||
a=this.title.getBBox();c=a.height;this.offsetWidth=a.width;this.contentGroup.attr({translateY:c})}this.titleHeight=c},renderItem:function(a){var C;var b=this,c=b.chart,d=c.renderer,e=b.options,f=e.layout==="horizontal",g=e.symbolWidth,h=e.symbolPadding,i=b.itemStyle,j=b.itemHiddenStyle,k=b.padding,l=f?o(e.itemDistance,8):0,m=!e.rtl,p=e.width,q=e.itemMarginBottom||0,n=b.itemMarginTop,B=b.initialItemX,t=a.legendItem,u=a.series||a,s=u.options,v=s.showCheckbox,w=e.useHTML;if(!t&&(a.legendGroup=d.g("legend-item").attr({zIndex:1}).add(b.scrollGroup),
|
||||
u.drawLegendSymbol(b,a),a.legendItem=t=d.text(e.labelFormat?Ca(e.labelFormat,a):e.labelFormatter.call(a),m?g+h:-h,b.baseline,w).css(x(a.visible?i:j)).attr({align:m?"left":"right",zIndex:2}).add(a.legendGroup),(w?t:a.legendGroup).on("mouseover",function(){a.setState("hover");t.css(b.options.itemHoverStyle)}).on("mouseout",function(){t.css(a.visible?i:j);a.setState()}).on("click",function(b){var c=function(){a.setVisible()},b={browserEvent:b};a.firePointEvent?a.firePointEvent("legendItemClick",b,c):
|
||||
A(a,"legendItemClick",b,c)}),b.colorizeItem(a,a.visible),s&&v))a.checkbox=U("input",{type:"checkbox",checked:a.selected,defaultChecked:a.selected},e.itemCheckboxStyle,c.container),K(a.checkbox,"click",function(b){A(a,"checkboxClick",{checked:b.target.checked},function(){a.select()})});d=t.getBBox();C=a.legendItemWidth=e.itemWidth||g+h+d.width+l+(v?20:0),e=C;b.itemHeight=g=d.height;if(f&&b.itemX-B+e>(p||c.chartWidth-2*k-B))b.itemX=B,b.itemY+=n+b.lastLineHeight+q,b.lastLineHeight=0;b.maxItemWidth=r(b.maxItemWidth,
|
||||
e);b.lastItemY=n+b.itemY+q;b.lastLineHeight=r(g,b.lastLineHeight);a._legendItemPos=[b.itemX,b.itemY];f?b.itemX+=e:(b.itemY+=n+g+q,b.lastLineHeight=g);b.offsetWidth=p||r((f?b.itemX-B-l:e)+k,b.offsetWidth)},render:function(){var a=this,b=a.chart,c=b.renderer,d=a.group,e,f,g,h,i=a.box,j=a.options,k=a.padding,l=j.borderWidth,m=j.backgroundColor;a.itemX=a.initialItemX;a.itemY=a.initialItemY;a.offsetWidth=0;a.lastItemY=0;if(!d)a.group=d=c.g("legend").attr({zIndex:7}).add(),a.contentGroup=c.g().attr({zIndex:1}).add(d),
|
||||
a.scrollGroup=c.g().add(a.contentGroup);a.renderTitle();e=[];n(b.series,function(a){var b=a.options;if(o(b.showInLegend,b.linkedTo===v?v:!1,!0))e=e.concat(a.legendItems||(b.legendType==="point"?a.data:a))});Kb(e,function(a,b){return(a.options&&a.options.legendIndex||0)-(b.options&&b.options.legendIndex||0)});j.reversed&&e.reverse();a.allItems=e;a.display=f=!!e.length;n(e,function(b){a.renderItem(b)});g=j.width||a.offsetWidth;h=a.lastItemY+a.lastLineHeight+a.titleHeight;h=a.handleOverflow(h);if(l||
|
||||
m){g+=k;h+=k;if(i){if(g>0&&h>0)i[i.isNew?"attr":"animate"](i.crisp(null,null,null,g,h)),i.isNew=!1}else a.box=i=c.rect(0,0,g,h,j.borderRadius,l||0).attr({stroke:j.borderColor,"stroke-width":l||0,fill:m||S}).add(d).shadow(j.shadow),i.isNew=!0;i[f?"show":"hide"]()}a.legendWidth=g;a.legendHeight=h;n(e,function(b){a.positionItem(b)});f&&d.align(s({width:g,height:h},j),!0,"spacingBox");b.isResizing||this.positionCheckboxes()},handleOverflow:function(a){var b=this,c=this.chart,d=c.renderer,e=this.options,
|
||||
f=e.y,f=c.spacingBox.height+(e.verticalAlign==="top"?-f:f)-this.padding,g=e.maxHeight,h=this.clipRect,i=e.navigation,j=o(i.animation,!0),k=i.arrowSize||12,l=this.nav;e.layout==="horizontal"&&(f/=2);g&&(f=J(f,g));if(a>f&&!e.useHTML){this.clipHeight=c=f-20-this.titleHeight;this.pageCount=wa(a/c);this.currentPage=o(this.currentPage,1);this.fullHeight=a;if(!h)h=b.clipRect=d.clipRect(0,0,9999,0),b.contentGroup.clip(h);h.attr({height:c});if(!l)this.nav=l=d.g().attr({zIndex:1}).add(this.group),this.up=d.symbol("triangle",
|
||||
0,0,k,k).on("click",function(){b.scroll(-1,j)}).add(l),this.pager=d.text("",15,10).css(i.style).add(l),this.down=d.symbol("triangle-down",0,0,k,k).on("click",function(){b.scroll(1,j)}).add(l);b.scroll(0);a=f}else if(l)h.attr({height:c.chartHeight}),l.hide(),this.scrollGroup.attr({translateY:1}),this.clipHeight=0;return a},scroll:function(a,b){var c=this.pageCount,d=this.currentPage+a,e=this.clipHeight,f=this.options.navigation,g=f.activeColor,h=f.inactiveColor,f=this.pager,i=this.padding;d>c&&(d=
|
||||
c);if(d>0)b!==v&&La(b,this.chart),this.nav.attr({translateX:i,translateY:e+7+this.titleHeight,visibility:"visible"}),this.up.attr({fill:d===1?h:g}).css({cursor:d===1?"default":"pointer"}),f.attr({text:d+"/"+this.pageCount}),this.down.attr({x:18+this.pager.getBBox().width,fill:d===c?h:g}).css({cursor:d===c?"default":"pointer"}),e=-J(e*(d-1),this.fullHeight-e+i)+1,this.scrollGroup.animate({translateY:e}),f.attr({text:d+"/"+c}),this.currentPage=d,this.positionCheckboxes(e)}};/Trident\/7\.0/.test(na)&&
|
||||
mb(fb.prototype,"positionItem",function(a,b){var c=this,d=function(){a.call(c,b)};c.chart.renderer.forExport?d():setTimeout(d)});yb.prototype={init:function(a,b){var c,d=a.series;a.series=null;c=x(L,a);c.series=a.series=d;d=c.chart;this.margin=this.splashArray("margin",d);this.spacing=this.splashArray("spacing",d);var e=d.events;this.bounds={h:{},v:{}};this.callback=b;this.isResizing=0;this.options=c;this.axes=[];this.series=[];this.hasCartesianSeries=d.showAxes;var f=this,g;f.index=Ga.length;Ga.push(f);
|
||||
d.reflow!==!1&&K(f,"load",function(){f.initReflow()});if(e)for(g in e)K(f,g,e[g]);f.xAxis=[];f.yAxis=[];f.animation=ca?!1:o(d.animation,!0);f.pointCount=0;f.counters=new Jb;f.firstRender()},initSeries:function(a){var b=this.options.chart;(b=X[a.type||b.type||b.defaultSeriesType])||ka(17,!0);b=new b;b.init(this,a);return b},addSeries:function(a,b,c){var d,e=this;a&&(b=o(b,!0),A(e,"addSeries",{options:a},function(){d=e.initSeries(a);e.isDirtyLegend=!0;e.linkSeries();b&&e.redraw(c)}));return d},addAxis:function(a,
|
||||
b,c,d){var e=b?"xAxis":"yAxis",f=this.options;new eb(this,x(a,{index:this[e].length,isX:b}));f[e]=ja(f[e]||{});f[e].push(a);o(c,!0)&&this.redraw(d)},isInsidePlot:function(a,b,c){var d=c?b:a,a=c?a:b;return d>=0&&d<=this.plotWidth&&a>=0&&a<=this.plotHeight},adjustTickAmounts:function(){this.options.chart.alignTicks!==!1&&n(this.axes,function(a){a.adjustTickAmount()});this.maxTicks=null},redraw:function(a){var b=this.axes,c=this.series,d=this.pointer,e=this.legend,f=this.isDirtyLegend,g,h,i=this.isDirtyBox,
|
||||
j=c.length,k=j,l=this.renderer,m=l.isHidden(),p=[];La(a,this);m&&this.cloneRenderTo();for(this.layOutTitles();k--;)if(a=c[k],a.options.stacking&&(g=!0,a.isDirty)){h=!0;break}if(h)for(k=j;k--;)if(a=c[k],a.options.stacking)a.isDirty=!0;n(c,function(a){a.isDirty&&a.options.legendType==="point"&&(f=!0)});if(f&&e.options.enabled)e.render(),this.isDirtyLegend=!1;g&&this.getStacks();if(this.hasCartesianSeries){if(!this.isResizing)this.maxTicks=null,n(b,function(a){a.setScale()});this.adjustTickAmounts();
|
||||
this.getMargins();n(b,function(a){a.isDirty&&(i=!0)});n(b,function(a){if(a.isDirtyExtremes)a.isDirtyExtremes=!1,p.push(function(){A(a,"afterSetExtremes",s(a.eventArgs,a.getExtremes()));delete a.eventArgs});(i||g)&&a.redraw()})}i&&this.drawChartBox();n(c,function(a){a.isDirty&&a.visible&&(!a.isCartesian||a.xAxis)&&a.redraw()});d&&d.reset&&d.reset(!0);l.draw();A(this,"redraw");m&&this.cloneRenderTo(!0);n(p,function(a){a.call()})},showLoading:function(a){var b=this.options,c=this.loadingDiv,d=b.loading;
|
||||
if(!c)this.loadingDiv=c=U(Ea,{className:"highcharts-loading"},s(d.style,{zIndex:10,display:S}),this.container),this.loadingSpan=U("span",null,d.labelStyle,c);this.loadingSpan.innerHTML=a||b.lang.loading;if(!this.loadingShown)I(c,{opacity:0,display:"",left:this.plotLeft+"px",top:this.plotTop+"px",width:this.plotWidth+"px",height:this.plotHeight+"px"}),Bb(c,{opacity:d.style.opacity},{duration:d.showDuration||0}),this.loadingShown=!0},hideLoading:function(){var a=this.options,b=this.loadingDiv;b&&Bb(b,
|
||||
{opacity:0},{duration:a.loading.hideDuration||100,complete:function(){I(b,{display:S})}});this.loadingShown=!1},get:function(a){var b=this.axes,c=this.series,d,e;for(d=0;d<b.length;d++)if(b[d].options.id===a)return b[d];for(d=0;d<c.length;d++)if(c[d].options.id===a)return c[d];for(d=0;d<c.length;d++){e=c[d].points||[];for(b=0;b<e.length;b++)if(e[b].id===a)return e[b]}return null},getAxes:function(){var a=this,b=this.options,c=b.xAxis=ja(b.xAxis||{}),b=b.yAxis=ja(b.yAxis||{});n(c,function(a,b){a.index=
|
||||
b;a.isX=!0});n(b,function(a,b){a.index=b});c=c.concat(b);n(c,function(b){new eb(a,b)});a.adjustTickAmounts()},getSelectedPoints:function(){var a=[];n(this.series,function(b){a=a.concat(ub(b.points||[],function(a){return a.selected}))});return a},getSelectedSeries:function(){return ub(this.series,function(a){return a.selected})},getStacks:function(){var a=this;n(a.yAxis,function(a){if(a.stacks&&a.hasVisibleSeries)a.oldStacks=a.stacks});n(a.series,function(b){if(b.options.stacking&&(b.visible===!0||
|
||||
a.options.chart.ignoreHiddenSeries===!1))b.stackKey=b.type+o(b.options.stack,"")})},showResetZoom:function(){var a=this,b=L.lang,c=a.options.chart.resetZoomButton,d=c.theme,e=d.states,f=c.relativeTo==="chart"?null:"plotBox";this.resetZoomButton=a.renderer.button(b.resetZoom,null,null,function(){a.zoomOut()},d,e&&e.hover).attr({align:c.position.align,title:b.resetZoomTitle}).add().align(c.position,!1,f)},zoomOut:function(){var a=this;A(a,"selection",{resetSelection:!0},function(){a.zoom()})},zoom:function(a){var b,
|
||||
c=this.pointer,d=!1,e;!a||a.resetSelection?n(this.axes,function(a){b=a.zoom()}):n(a.xAxis.concat(a.yAxis),function(a){var e=a.axis,h=e.isXAxis;if(c[h?"zoomX":"zoomY"]||c[h?"pinchX":"pinchY"])b=e.zoom(a.min,a.max),e.displayBtn&&(d=!0)});e=this.resetZoomButton;if(d&&!e)this.showResetZoom();else if(!d&&T(e))this.resetZoomButton=e.destroy();b&&this.redraw(o(this.options.chart.animation,a&&a.animation,this.pointCount<100))},pan:function(a,b){var c=this,d=c.hoverPoints,e;d&&n(d,function(a){a.setState()});
|
||||
n(b==="xy"?[1,0]:[1],function(b){var d=a[b?"chartX":"chartY"],h=c[b?"xAxis":"yAxis"][0],i=c[b?"mouseDownX":"mouseDownY"],j=(h.pointRange||0)/2,k=h.getExtremes(),l=h.toValue(i-d,!0)+j,i=h.toValue(i+c[b?"plotWidth":"plotHeight"]-d,!0)-j;h.series.length&&l>J(k.dataMin,k.min)&&i<r(k.dataMax,k.max)&&(h.setExtremes(l,i,!1,!1,{trigger:"pan"}),e=!0);c[b?"mouseDownX":"mouseDownY"]=d});e&&c.redraw(!1);I(c.container,{cursor:"move"})},setTitle:function(a,b){var f;var c=this,d=c.options,e;e=d.title=x(d.title,
|
||||
a);f=d.subtitle=x(d.subtitle,b),d=f;n([["title",a,e],["subtitle",b,d]],function(a){var b=a[0],d=c[b],e=a[1],a=a[2];d&&e&&(c[b]=d=d.destroy());a&&a.text&&!d&&(c[b]=c.renderer.text(a.text,0,0,a.useHTML).attr({align:a.align,"class":"highcharts-"+b,zIndex:a.zIndex||4}).css(a.style).add())});c.layOutTitles()},layOutTitles:function(){var a=0,b=this.title,c=this.subtitle,d=this.options,e=d.title,d=d.subtitle,f=this.spacingBox.width-44;if(b&&(b.css({width:(e.width||f)+"px"}).align(s({y:15},e),!1,"spacingBox"),
|
||||
!e.floating&&!e.verticalAlign))a=b.getBBox().height,a>=18&&a<=25&&(a=15);c&&(c.css({width:(d.width||f)+"px"}).align(s({y:a+e.margin},d),!1,"spacingBox"),!d.floating&&!d.verticalAlign&&(a=wa(a+c.getBBox().height)));this.titleOffset=a},getChartSize:function(){var a=this.options.chart,b=this.renderToClone||this.renderTo;this.containerWidth=kb(b,"width");this.containerHeight=kb(b,"height");this.chartWidth=r(0,a.width||this.containerWidth||600);this.chartHeight=r(0,o(a.height,this.containerHeight>19?this.containerHeight:
|
||||
400))},cloneRenderTo:function(a){var b=this.renderToClone,c=this.container;a?b&&(this.renderTo.appendChild(c),Ta(b),delete this.renderToClone):(c&&c.parentNode===this.renderTo&&this.renderTo.removeChild(c),this.renderToClone=b=this.renderTo.cloneNode(0),I(b,{position:"absolute",top:"-9999px",display:"block"}),z.body.appendChild(b),c&&b.appendChild(c))},getContainer:function(){var a,b=this.options.chart,c,d,e;this.renderTo=a=b.renderTo;e="highcharts-"+zb++;if(ea(a))this.renderTo=a=z.getElementById(a);
|
||||
a||ka(13,!0);c=y(w(a,"data-highcharts-chart"));!isNaN(c)&&Ga[c]&&Ga[c].destroy();w(a,"data-highcharts-chart",this.index);a.innerHTML="";a.offsetWidth||this.cloneRenderTo();this.getChartSize();c=this.chartWidth;d=this.chartHeight;this.container=a=U(Ea,{className:"highcharts-container"+(b.className?" "+b.className:""),id:e},s({position:"relative",overflow:"hidden",width:c+"px",height:d+"px",textAlign:"left",lineHeight:"normal",zIndex:0,"-webkit-tap-highlight-color":"rgba(0,0,0,0)"},b.style),this.renderToClone||
|
||||
a);this._cursor=a.style.cursor;this.renderer=b.forExport?new za(a,c,d,!0):new Va(a,c,d);ca&&this.renderer.create(this,a,c,d)},getMargins:function(){var a=this.spacing,b,c=this.legend,d=this.margin,e=this.options.legend,f=o(e.margin,10),g=e.x,h=e.y,i=e.align,j=e.verticalAlign,k=this.titleOffset;this.resetMargins();b=this.axisOffset;if(k&&!u(d[0]))this.plotTop=r(this.plotTop,k+this.options.title.margin+a[0]);if(c.display&&!e.floating)if(i==="right"){if(!u(d[1]))this.marginRight=r(this.marginRight,c.legendWidth-
|
||||
g+f+a[1])}else if(i==="left"){if(!u(d[3]))this.plotLeft=r(this.plotLeft,c.legendWidth+g+f+a[3])}else if(j==="top"){if(!u(d[0]))this.plotTop=r(this.plotTop,c.legendHeight+h+f+a[0])}else if(j==="bottom"&&!u(d[2]))this.marginBottom=r(this.marginBottom,c.legendHeight-h+f+a[2]);this.extraBottomMargin&&(this.marginBottom+=this.extraBottomMargin);this.extraTopMargin&&(this.plotTop+=this.extraTopMargin);this.hasCartesianSeries&&n(this.axes,function(a){a.getOffset()});u(d[3])||(this.plotLeft+=b[3]);u(d[0])||
|
||||
(this.plotTop+=b[0]);u(d[2])||(this.marginBottom+=b[2]);u(d[1])||(this.marginRight+=b[1]);this.setChartSize()},initReflow:function(){function a(a){var g=c.width||kb(d,"width"),h=c.height||kb(d,"height"),a=a?a.target:N;if(!b.hasUserSize&&g&&h&&(a===N||a===z)){if(g!==b.containerWidth||h!==b.containerHeight)clearTimeout(e),b.reflowTimeout=e=setTimeout(function(){if(b.container)b.setSize(g,h,!1),b.hasUserSize=null},100);b.containerWidth=g;b.containerHeight=h}}var b=this,c=b.options.chart,d=b.renderTo,
|
||||
e;b.reflow=a;K(N,"resize",a);K(b,"destroy",function(){$(N,"resize",a)})},setSize:function(a,b,c){var d=this,e,f,g;d.isResizing+=1;g=function(){d&&A(d,"endResize",null,function(){d.isResizing-=1})};La(c,d);d.oldChartHeight=d.chartHeight;d.oldChartWidth=d.chartWidth;if(u(a))d.chartWidth=e=r(0,t(a)),d.hasUserSize=!!e;if(u(b))d.chartHeight=f=r(0,t(b));I(d.container,{width:e+"px",height:f+"px"});d.setChartSize(!0);d.renderer.setSize(e,f,c);d.maxTicks=null;n(d.axes,function(a){a.isDirty=!0;a.setScale()});
|
||||
n(d.series,function(a){a.isDirty=!0});d.isDirtyLegend=!0;d.isDirtyBox=!0;d.getMargins();d.redraw(c);d.oldChartHeight=null;A(d,"resize");Fa===!1?g():setTimeout(g,Fa&&Fa.duration||500)},setChartSize:function(a){var b=this.inverted,c=this.renderer,d=this.chartWidth,e=this.chartHeight,f=this.options.chart,g=this.spacing,h=this.clipOffset,i,j,k,l;this.plotLeft=i=t(this.plotLeft);this.plotTop=j=t(this.plotTop);this.plotWidth=k=r(0,t(d-i-this.marginRight));this.plotHeight=l=r(0,t(e-j-this.marginBottom));
|
||||
this.plotSizeX=b?l:k;this.plotSizeY=b?k:l;this.plotBorderWidth=f.plotBorderWidth||0;this.spacingBox=c.spacingBox={x:g[3],y:g[0],width:d-g[3]-g[1],height:e-g[0]-g[2]};this.plotBox=c.plotBox={x:i,y:j,width:k,height:l};d=2*P(this.plotBorderWidth/2);b=wa(r(d,h[3])/2);c=wa(r(d,h[0])/2);this.clipBox={x:b,y:c,width:P(this.plotSizeX-r(d,h[1])/2-b),height:P(this.plotSizeY-r(d,h[2])/2-c)};a||n(this.axes,function(a){a.setAxisSize();a.setAxisTranslation()})},resetMargins:function(){var a=this.spacing,b=this.margin;
|
||||
this.plotTop=o(b[0],a[0]);this.marginRight=o(b[1],a[1]);this.marginBottom=o(b[2],a[2]);this.plotLeft=o(b[3],a[3]);this.axisOffset=[0,0,0,0];this.clipOffset=[0,0,0,0]},drawChartBox:function(){var a=this.options.chart,b=this.renderer,c=this.chartWidth,d=this.chartHeight,e=this.chartBackground,f=this.plotBackground,g=this.plotBorder,h=this.plotBGImage,i=a.borderWidth||0,j=a.backgroundColor,k=a.plotBackgroundColor,l=a.plotBackgroundImage,m=a.plotBorderWidth||0,p,q=this.plotLeft,o=this.plotTop,n=this.plotWidth,
|
||||
r=this.plotHeight,t=this.plotBox,u=this.clipRect,s=this.clipBox;p=i+(a.shadow?8:0);if(i||j)if(e)e.animate(e.crisp(null,null,null,c-p,d-p));else{e={fill:j||S};if(i)e.stroke=a.borderColor,e["stroke-width"]=i;this.chartBackground=b.rect(p/2,p/2,c-p,d-p,a.borderRadius,i).attr(e).add().shadow(a.shadow)}if(k)f?f.animate(t):this.plotBackground=b.rect(q,o,n,r,0).attr({fill:k}).add().shadow(a.plotShadow);if(l)h?h.animate(t):this.plotBGImage=b.image(l,q,o,n,r).add();u?u.animate({width:s.width,height:s.height}):
|
||||
this.clipRect=b.clipRect(s);if(m)g?g.animate(g.crisp(null,q,o,n,r)):this.plotBorder=b.rect(q,o,n,r,0,-m).attr({stroke:a.plotBorderColor,"stroke-width":m,zIndex:1}).add();this.isDirtyBox=!1},propFromSeries:function(){var a=this,b=a.options.chart,c,d=a.options.series,e,f;n(["inverted","angular","polar"],function(g){c=X[b.type||b.defaultSeriesType];f=a[g]||b[g]||c&&c.prototype[g];for(e=d&&d.length;!f&&e--;)(c=X[d[e].type])&&c.prototype[g]&&(f=!0);a[g]=f})},linkSeries:function(){var a=this,b=a.series;
|
||||
n(b,function(a){a.linkedSeries.length=0});n(b,function(b){var d=b.options.linkedTo;if(ea(d)&&(d=d===":previous"?a.series[b.index-1]:a.get(d)))d.linkedSeries.push(b),b.linkedParent=d})},render:function(){var a=this,b=a.axes,c=a.renderer,d=a.options,e=d.labels,f=d.credits,g;a.setTitle();a.legend=new fb(a,d.legend);a.getStacks();n(b,function(a){a.setScale()});a.getMargins();a.maxTicks=null;n(b,function(a){a.setTickPositions(!0);a.setMaxTicks()});a.adjustTickAmounts();a.getMargins();a.drawChartBox();
|
||||
a.hasCartesianSeries&&n(b,function(a){a.render()});if(!a.seriesGroup)a.seriesGroup=c.g("series-group").attr({zIndex:3}).add();n(a.series,function(a){a.translate();a.setTooltipPoints();a.render()});e.items&&n(e.items,function(b){var d=s(e.style,b.style),f=y(d.left)+a.plotLeft,g=y(d.top)+a.plotTop+12;delete d.left;delete d.top;c.text(b.html,f,g).attr({zIndex:2}).css(d).add()});if(f.enabled&&!a.credits)g=f.href,a.credits=c.text(f.text,0,0).on("click",function(){if(g)location.href=g}).attr({align:f.position.align,
|
||||
zIndex:8}).css(f.style).add().align(f.position);a.hasRendered=!0},destroy:function(){var a=this,b=a.axes,c=a.series,d=a.container,e,f=d&&d.parentNode;A(a,"destroy");Ga[a.index]=v;a.renderTo.removeAttribute("data-highcharts-chart");$(a);for(e=b.length;e--;)b[e]=b[e].destroy();for(e=c.length;e--;)c[e]=c[e].destroy();n("title,subtitle,chartBackground,plotBackground,plotBGImage,plotBorder,seriesGroup,clipRect,credits,pointer,scroller,rangeSelector,legend,resetZoomButton,tooltip,renderer".split(","),function(b){var c=
|
||||
a[b];c&&c.destroy&&(a[b]=c.destroy())});if(d)d.innerHTML="",$(d),f&&Ta(d);for(e in a)delete a[e]},isReadyToRender:function(){var a=this;return!W&&N==N.top&&z.readyState!=="complete"||ca&&!N.canvg?(ca?Tb.push(function(){a.firstRender()},a.options.global.canvasToolsURL):z.attachEvent("onreadystatechange",function(){z.detachEvent("onreadystatechange",a.firstRender);z.readyState==="complete"&&a.firstRender()}),!1):!0},firstRender:function(){var a=this,b=a.options,c=a.callback;if(a.isReadyToRender())a.getContainer(),
|
||||
A(a,"init"),a.resetMargins(),a.setChartSize(),a.propFromSeries(),a.getAxes(),n(b.series||[],function(b){a.initSeries(b)}),a.linkSeries(),A(a,"beforeRender"),a.pointer=new xb(a,b),a.render(),a.renderer.draw(),c&&c.apply(a,[a]),n(a.callbacks,function(b){b.apply(a,[a])}),a.cloneRenderTo(!0),A(a,"load")},splashArray:function(a,b){var c=b[a],c=T(c)?c:[c,c,c,c];return[o(b[a+"Top"],c[0]),o(b[a+"Right"],c[1]),o(b[a+"Bottom"],c[2]),o(b[a+"Left"],c[3])]}};yb.prototype.callbacks=[];var Pa=function(){};Pa.prototype=
|
||||
{init:function(a,b,c){this.series=a;this.applyOptions(b,c);this.pointAttr={};if(a.options.colorByPoint&&(b=a.options.colors||a.chart.options.colors,this.color=this.color||b[a.colorCounter++],a.colorCounter===b.length))a.colorCounter=0;a.chart.pointCount++;return this},applyOptions:function(a,b){var c=this.series,d=c.pointValKey,a=Pa.prototype.optionsToObject.call(this,a);s(this,a);this.options=this.options?s(this.options,a):a;if(d)this.y=this[d];if(this.x===v&&c)this.x=b===v?c.autoIncrement():b;return this},
|
||||
optionsToObject:function(a){var b={},c=this.series,d=c.pointArrayMap||["y"],e=d.length,f=0,g=0;if(typeof a==="number"||a===null)b[d[0]]=a;else if(Ia(a)){if(a.length>e){c=typeof a[0];if(c==="string")b.name=a[0];else if(c==="number")b.x=a[0];f++}for(;g<e;)b[d[g++]]=a[f++]}else if(typeof a==="object"){b=a;if(a.dataLabels)c._hasPointLabels=!0;if(a.marker)c._hasPointMarkers=!0}return b},destroy:function(){var a=this.series.chart,b=a.hoverPoints,c;a.pointCount--;if(b&&(this.setState(),ga(b,this),!b.length))a.hoverPoints=
|
||||
null;if(this===a.hoverPoint)this.onMouseOut();if(this.graphic||this.dataLabel)$(this),this.destroyElements();this.legendItem&&a.legend.destroyItem(this);for(c in this)this[c]=null},destroyElements:function(){for(var a="graphic,dataLabel,dataLabelUpper,group,connector,shadowGroup".split(","),b,c=6;c--;)b=a[c],this[b]&&(this[b]=this[b].destroy())},getLabelConfig:function(){return{x:this.category,y:this.y,key:this.name||this.category,series:this.series,point:this,percentage:this.percentage,total:this.total||
|
||||
this.stackTotal}},select:function(a,b){var c=this,d=c.series,e=d.chart,a=o(a,!c.selected);c.firePointEvent(a?"select":"unselect",{accumulate:b},function(){c.selected=c.options.selected=a;d.options.data[pa(c,d.data)]=c.options;c.setState(a&&"select");b||n(e.getSelectedPoints(),function(a){if(a.selected&&a!==c)a.selected=a.options.selected=!1,d.options.data[pa(a,d.data)]=a.options,a.setState(""),a.firePointEvent("unselect")})})},onMouseOver:function(a){var b=this.series,c=b.chart,d=c.tooltip,e=c.hoverPoint;
|
||||
if(e&&e!==this)e.onMouseOut();this.firePointEvent("mouseOver");d&&(!d.shared||b.noSharedTooltip)&&d.refresh(this,a);this.setState("hover");c.hoverPoint=this},onMouseOut:function(){var a=this.series.chart,b=a.hoverPoints;if(!b||pa(this,b)===-1)this.firePointEvent("mouseOut"),this.setState(),a.hoverPoint=null},tooltipFormatter:function(a){var b=this.series,c=b.tooltipOptions,d=o(c.valueDecimals,""),e=c.valuePrefix||"",f=c.valueSuffix||"";n(b.pointArrayMap||["y"],function(b){b="{point."+b;if(e||f)a=
|
||||
a.replace(b+"}",e+b+"}"+f);a=a.replace(b+"}",b+":,."+d+"f}")});return Ca(a,{point:this,series:this.series})},update:function(a,b,c){var d=this,e=d.series,f=d.graphic,g,h=e.data,i=e.chart,j=e.options,b=o(b,!0);d.firePointEvent("update",{options:a},function(){d.applyOptions(a);if(T(a)&&(e.getAttribs(),f))a&&a.marker&&a.marker.symbol?d.graphic=f.destroy():f.attr(d.pointAttr[d.state||""]);g=pa(d,h);e.xData[g]=d.x;e.yData[g]=e.toYData?e.toYData(d):d.y;e.zData[g]=d.z;j.data[g]=d.options;e.isDirty=e.isDirtyData=
|
||||
!0;if(!e.fixedBox&&e.hasCartesianSeries)i.isDirtyBox=!0;j.legendType==="point"&&i.legend.destroyItem(d);b&&i.redraw(c)})},remove:function(a,b){var c=this,d=c.series,e=d.points,f=d.chart,g,h=d.data;La(b,f);a=o(a,!0);c.firePointEvent("remove",null,function(){g=pa(c,h);h.length===e.length&&e.splice(g,1);h.splice(g,1);d.options.data.splice(g,1);d.xData.splice(g,1);d.yData.splice(g,1);d.zData.splice(g,1);c.destroy();d.isDirty=!0;d.isDirtyData=!0;a&&f.redraw()})},firePointEvent:function(a,b,c){var d=this,
|
||||
e=this.series.options;(e.point.events[a]||d.options&&d.options.events&&d.options.events[a])&&this.importEvents();a==="click"&&e.allowPointSelect&&(c=function(a){d.select(null,a.ctrlKey||a.metaKey||a.shiftKey)});A(this,a,b,c)},importEvents:function(){if(!this.hasImportedEvents){var a=x(this.series.options.point,this.options).events,b;this.events=a;for(b in a)K(this,b,a[b]);this.hasImportedEvents=!0}},setState:function(a){var b=this.plotX,c=this.plotY,d=this.series,e=d.options.states,f=Z[d.type].marker&&
|
||||
d.options.marker,g=f&&!f.enabled,h=f&&f.states[a],i=h&&h.enabled===!1,j=d.stateMarkerGraphic,k=this.marker||{},l=d.chart,m=this.pointAttr,a=a||"";if(!(a===this.state||this.selected&&a!=="select"||e[a]&&e[a].enabled===!1||a&&(i||g&&!h.enabled)||a&&k.states&&k.states[a]&&k.states[a].enabled===!1)){if(this.graphic)e=f&&this.graphic.symbolName&&m[a].r,this.graphic.attr(x(m[a],e?{x:b-e,y:c-e,width:2*e,height:2*e}:{}));else{if(a&&h)e=h.radius,k=k.symbol||d.symbol,j&&j.currentSymbol!==k&&(j=j.destroy()),
|
||||
j?j.attr({x:b-e,y:c-e}):(d.stateMarkerGraphic=j=l.renderer.symbol(k,b-e,c-e,2*e,2*e).attr(m[a]).add(d.markerGroup),j.currentSymbol=k);if(j)j[a&&l.isInsidePlot(b,c)?"show":"hide"]()}this.state=a}}};var Q=function(){};Q.prototype={isCartesian:!0,type:"line",pointClass:Pa,sorted:!0,requireSorting:!0,pointAttrToOptions:{stroke:"lineColor","stroke-width":"lineWidth",fill:"fillColor",r:"radius"},colorCounter:0,init:function(a,b){var c,d,e=a.series;this.chart=a;this.options=b=this.setOptions(b);this.linkedSeries=
|
||||
[];this.bindAxes();s(this,{name:b.name,state:"",pointAttr:{},visible:b.visible!==!1,selected:b.selected===!0});if(ca)b.animation=!1;d=b.events;for(c in d)K(this,c,d[c]);if(d&&d.click||b.point&&b.point.events&&b.point.events.click||b.allowPointSelect)a.runTrackerClick=!0;this.getColor();this.getSymbol();this.setData(b.data,!1);if(this.isCartesian)a.hasCartesianSeries=!0;e.push(this);this._i=e.length-1;Kb(e,function(a,b){return o(a.options.index,a._i)-o(b.options.index,a._i)});n(e,function(a,b){a.index=
|
||||
b;a.name=a.name||"Series "+(b+1)})},bindAxes:function(){var a=this,b=a.options,c=a.chart,d;a.isCartesian&&n(["xAxis","yAxis"],function(e){n(c[e],function(c){d=c.options;if(b[e]===d.index||b[e]!==v&&b[e]===d.id||b[e]===v&&d.index===0)c.series.push(a),a[e]=c,c.isDirty=!0});a[e]||ka(18,!0)})},autoIncrement:function(){var a=this.options,b=this.xIncrement,b=o(b,a.pointStart,0);this.pointInterval=o(this.pointInterval,a.pointInterval,1);this.xIncrement=b+this.pointInterval;return b},getSegments:function(){var a=
|
||||
-1,b=[],c,d=this.points,e=d.length;if(e)if(this.options.connectNulls){for(c=e;c--;)d[c].y===null&&d.splice(c,1);d.length&&(b=[d])}else n(d,function(c,g){c.y===null?(g>a+1&&b.push(d.slice(a+1,g)),a=g):g===e-1&&b.push(d.slice(a+1,g+1))});this.segments=b},setOptions:function(a){var b=this.chart.options,c=b.plotOptions,d=c[this.type];this.userOptions=a;a=x(d,c.series,a);this.tooltipOptions=x(b.tooltip,a.tooltip);d.marker===null&&delete a.marker;return a},getColor:function(){var a=this.options,b=this.userOptions,
|
||||
c=this.chart.options.colors,d=this.chart.counters,e;e=a.color||Z[this.type].color;if(!e&&!a.colorByPoint)u(b._colorIndex)?a=b._colorIndex:(b._colorIndex=d.color,a=d.color++),e=c[a];this.color=e;d.wrapColor(c.length)},getSymbol:function(){var a=this.userOptions,b=this.options.marker,c=this.chart,d=c.options.symbols,c=c.counters;this.symbol=b.symbol;if(!this.symbol)u(a._symbolIndex)?a=a._symbolIndex:(a._symbolIndex=c.symbol,a=c.symbol++),this.symbol=d[a];if(/^url/.test(this.symbol))b.radius=0;c.wrapSymbol(d.length)},
|
||||
drawLegendSymbol:function(a){var b=this.options,c=b.marker,d=a.options,e;e=d.symbolWidth;var f=this.chart.renderer,g=this.legendGroup,a=a.baseline-t(f.fontMetrics(d.itemStyle.fontSize).b*0.3);if(b.lineWidth){d={"stroke-width":b.lineWidth};if(b.dashStyle)d.dashstyle=b.dashStyle;this.legendLine=f.path(["M",0,a,"L",e,a]).attr(d).add(g)}if(c&&c.enabled)b=c.radius,this.legendSymbol=e=f.symbol(this.symbol,e/2-b,a-b,2*b,2*b).add(g),e.isMarker=!0},addPoint:function(a,b,c,d){var e=this.options,f=this.data,
|
||||
g=this.graph,h=this.area,i=this.chart,j=this.xData,k=this.yData,l=this.zData,m=this.xAxis&&this.xAxis.names,p=g&&g.shift||0,q=e.data,r;La(d,i);c&&n([g,h,this.graphNeg,this.areaNeg],function(a){if(a)a.shift=p+1});if(h)h.isArea=!0;b=o(b,!0);d={series:this};this.pointClass.prototype.applyOptions.apply(d,[a]);g=d.x;h=j.length;if(this.requireSorting&&g<j[h-1])for(r=!0;h&&j[h-1]>g;)h--;j.splice(h,0,g);k.splice(h,0,this.toYData?this.toYData(d):d.y);l.splice(h,0,d.z);if(m)m[g]=d.name;q.splice(h,0,a);r&&(this.data.splice(h,
|
||||
0,null),this.processData());e.legendType==="point"&&this.generatePoints();c&&(f[0]&&f[0].remove?f[0].remove(!1):(f.shift(),j.shift(),k.shift(),l.shift(),q.shift()));this.isDirtyData=this.isDirty=!0;b&&(this.getAttribs(),i.redraw())},setData:function(a,b){var c=this.points,d=this.options,e=this.chart,f=null,g=this.xAxis,h=g&&g.names,i;this.xIncrement=null;this.pointRange=g&&g.categories?1:d.pointRange;this.colorCounter=0;var j=[],k=[],l=[],m=a?a.length:[];i=o(d.turboThreshold,1E3);var p=this.pointArrayMap,
|
||||
p=p&&p.length,q=!!this.toYData;if(i&&m>i){for(i=0;f===null&&i<m;)f=a[i],i++;if(ra(f)){h=o(d.pointStart,0);d=o(d.pointInterval,1);for(i=0;i<m;i++)j[i]=h,k[i]=a[i],h+=d;this.xIncrement=h}else if(Ia(f))if(p)for(i=0;i<m;i++)d=a[i],j[i]=d[0],k[i]=d.slice(1,p+1);else for(i=0;i<m;i++)d=a[i],j[i]=d[0],k[i]=d[1];else ka(12)}else for(i=0;i<m;i++)if(a[i]!==v&&(d={series:this},this.pointClass.prototype.applyOptions.apply(d,[a[i]]),j[i]=d.x,k[i]=q?this.toYData(d):d.y,l[i]=d.z,h&&d.name))h[d.x]=d.name;ea(k[0])&&
|
||||
ka(14,!0);this.data=[];this.options.data=a;this.xData=j;this.yData=k;this.zData=l;for(i=c&&c.length||0;i--;)c[i]&&c[i].destroy&&c[i].destroy();if(g)g.minRange=g.userMinRange;this.isDirty=this.isDirtyData=e.isDirtyBox=!0;o(b,!0)&&e.redraw(!1)},remove:function(a,b){var c=this,d=c.chart,a=o(a,!0);if(!c.isRemoving)c.isRemoving=!0,A(c,"remove",null,function(){c.destroy();d.isDirtyLegend=d.isDirtyBox=!0;d.linkSeries();a&&d.redraw(b)});c.isRemoving=!1},processData:function(a){var b=this.xData,c=this.yData,
|
||||
d=b.length,e;e=0;var f,g,h=this.xAxis,i=this.options,j=i.cropThreshold,k=this.isCartesian;if(k&&!this.isDirty&&!h.isDirty&&!this.yAxis.isDirty&&!a)return!1;if(k&&this.sorted&&(!j||d>j||this.forceCrop))if(a=h.min,h=h.max,b[d-1]<a||b[0]>h)b=[],c=[];else if(b[0]<a||b[d-1]>h)e=this.cropData(this.xData,this.yData,a,h),b=e.xData,c=e.yData,e=e.start,f=!0;for(h=b.length-1;h>=0;h--)d=b[h]-b[h-1],d>0&&(g===v||d<g)?g=d:d<0&&this.requireSorting&&ka(15);this.cropped=f;this.cropStart=e;this.processedXData=b;this.processedYData=
|
||||
c;if(i.pointRange===null)this.pointRange=g||1;this.closestPointRange=g},cropData:function(a,b,c,d){var e=a.length,f=0,g=e,h=o(this.cropShoulder,1),i;for(i=0;i<e;i++)if(a[i]>=c){f=r(0,i-h);break}for(;i<e;i++)if(a[i]>d){g=i+h;break}return{xData:a.slice(f,g),yData:b.slice(f,g),start:f,end:g}},generatePoints:function(){var a=this.options.data,b=this.data,c,d=this.processedXData,e=this.processedYData,f=this.pointClass,g=d.length,h=this.cropStart||0,i,j=this.hasGroupedData,k,l=[],m;if(!b&&!j)b=[],b.length=
|
||||
a.length,b=this.data=b;for(m=0;m<g;m++)i=h+m,j?l[m]=(new f).init(this,[d[m]].concat(ja(e[m]))):(b[i]?k=b[i]:a[i]!==v&&(b[i]=k=(new f).init(this,a[i],d[m])),l[m]=k);if(b&&(g!==(c=b.length)||j))for(m=0;m<c;m++)if(m===h&&!j&&(m+=g),b[m])b[m].destroyElements(),b[m].plotX=v;this.data=b;this.points=l},setStackedPoints:function(){if(this.options.stacking&&!(this.visible!==!0&&this.chart.options.chart.ignoreHiddenSeries!==!1)){var a=this.processedXData,b=this.processedYData,c=[],d=b.length,e=this.options,
|
||||
f=e.threshold,g=e.stack,e=e.stacking,h=this.stackKey,i="-"+h,j=this.negStacks,k=this.yAxis,l=k.stacks,m=k.oldStacks,p,q,o,n,t;for(o=0;o<d;o++){n=a[o];t=b[o];q=(p=j&&t<f)?i:h;l[q]||(l[q]={});if(!l[q][n])m[q]&&m[q][n]?(l[q][n]=m[q][n],l[q][n].total=null):l[q][n]=new Mb(k,k.options.stackLabels,p,n,g,e);q=l[q][n];q.points[this.index]=[q.cum||0];e==="percent"?(p=p?h:i,j&&l[p]&&l[p][n]?(p=l[p][n],q.total=p.total=r(p.total,q.total)+M(t)||0):q.total+=M(t)||0):q.total+=t||0;q.cum=(q.cum||0)+(t||0);q.points[this.index].push(q.cum);
|
||||
c[o]=q.cum}if(e==="percent")k.usePercentage=!0;this.stackedYData=c;k.oldStacks={}}},setPercentStacks:function(){var a=this,b=a.stackKey,c=a.yAxis.stacks;n([b,"-"+b],function(b){var d;for(var e=a.xData.length,f,g;e--;)if(f=a.xData[e],d=(g=c[b]&&c[b][f])&&g.points[a.index],f=d)g=g.total?100/g.total:0,f[0]=ia(f[0]*g),f[1]=ia(f[1]*g),a.stackedYData[e]=f[1]})},getExtremes:function(){var a=this.yAxis,b=this.processedXData,c=this.stackedYData||this.processedYData,d=c.length,e=[],f=0,g=this.xAxis.getExtremes(),
|
||||
h=g.min,g=g.max,i,j,k,l;for(l=0;l<d;l++)if(j=b[l],k=c[l],i=k!==null&&k!==v&&(!a.isLog||k.length||k>0),j=this.getExtremesFromAll||this.cropped||(b[l+1]||j)>=h&&(b[l-1]||j)<=g,i&&j)if(i=k.length)for(;i--;)k[i]!==null&&(e[f++]=k[i]);else e[f++]=k;this.dataMin=o(void 0,Ja(e));this.dataMax=o(void 0,ua(e))},translate:function(){this.processedXData||this.processData();this.generatePoints();for(var a=this.options,b=a.stacking,c=this.xAxis,d=c.categories,e=this.yAxis,f=this.points,g=f.length,h=!!this.modifyValue,
|
||||
i=a.pointPlacement,j=i==="between"||ra(i),k=a.threshold,a=0;a<g;a++){var l=f[a],m=l.x,p=l.y,q=l.low,n=e.stacks[(this.negStacks&&p<k?"-":"")+this.stackKey];if(e.isLog&&p<=0)l.y=p=null;l.plotX=c.translate(m,0,0,0,1,i,this.type==="flags");if(b&&this.visible&&n&&n[m])n=n[m],p=n.points[this.index],q=p[0],p=p[1],q===0&&(q=o(k,e.min)),e.isLog&&q<=0&&(q=null),l.total=l.stackTotal=n.total,l.percentage=b==="percent"&&l.y/n.total*100,l.stackY=p,n.setOffset(this.pointXOffset||0,this.barW||0);l.yBottom=u(q)?e.translate(q,
|
||||
0,1,0,1):null;h&&(p=this.modifyValue(p,l));l.plotY=typeof p==="number"&&p!==Infinity?e.translate(p,0,1,0,1):v;l.clientX=j?c.translate(m,0,0,0,1):l.plotX;l.negative=l.y<(k||0);l.category=d&&d[l.x]!==v?d[l.x]:l.x}this.getSegments()},setTooltipPoints:function(a){var b=[],c,d,e=this.xAxis,f=e&&e.getExtremes(),g=e?e.tooltipLen||e.len:this.chart.plotSizeX,h,i,j=[];if(this.options.enableMouseTracking!==!1){if(a)this.tooltipPoints=null;n(this.segments||this.points,function(a){b=b.concat(a)});e&&e.reversed&&
|
||||
(b=b.reverse());this.orderTooltipPoints&&this.orderTooltipPoints(b);a=b.length;for(i=0;i<a;i++)if(e=b[i],c=e.x,c>=f.min&&c<=f.max){h=b[i+1];c=d===v?0:d+1;for(d=b[i+1]?J(r(0,P((e.clientX+(h?h.wrappedClientX||h.clientX:g))/2)),g):g;c>=0&&c<=d;)j[c++]=e}this.tooltipPoints=j}},tooltipHeaderFormatter:function(a){var b=this.tooltipOptions,c=b.xDateFormat,d=b.dateTimeLabelFormats,e=this.xAxis,f=e&&e.options.type==="datetime",b=b.headerFormat,e=e&&e.closestPointRange,g;if(f&&!c)if(e)for(g in D){if(D[g]>=
|
||||
e){c=d[g];break}}else c=d.day;f&&c&&ra(a.key)&&(b=b.replace("{point.key}","{point.key:"+c+"}"));return Ca(b,{point:a,series:this})},onMouseOver:function(){var a=this.chart,b=a.hoverSeries;if(b&&b!==this)b.onMouseOut();this.options.events.mouseOver&&A(this,"mouseOver");this.setState("hover");a.hoverSeries=this},onMouseOut:function(){var a=this.options,b=this.chart,c=b.tooltip,d=b.hoverPoint;if(d)d.onMouseOut();this&&a.events.mouseOut&&A(this,"mouseOut");c&&!a.stickyTracking&&(!c.shared||this.noSharedTooltip)&&
|
||||
c.hide();this.setState();b.hoverSeries=null},animate:function(a){var b=this,c=b.chart,d=c.renderer,e;e=b.options.animation;var f=c.clipBox,g=c.inverted,h;if(e&&!T(e))e=Z[b.type].animation;h="_sharedClip"+e.duration+e.easing;if(a)a=c[h],e=c[h+"m"],a||(c[h]=a=d.clipRect(s(f,{width:0})),c[h+"m"]=e=d.clipRect(-99,g?-c.plotLeft:-c.plotTop,99,g?c.chartWidth:c.chartHeight)),b.group.clip(a),b.markerGroup.clip(e),b.sharedClipKey=h;else{if(a=c[h])a.animate({width:c.plotSizeX},e),c[h+"m"].animate({width:c.plotSizeX+
|
||||
99},e);b.animate=null;b.animationTimeout=setTimeout(function(){b.afterAnimate()},e.duration)}},afterAnimate:function(){var a=this.chart,b=this.sharedClipKey,c=this.group;c&&this.options.clip!==!1&&(c.clip(a.clipRect),this.markerGroup.clip());setTimeout(function(){b&&a[b]&&(a[b]=a[b].destroy(),a[b+"m"]=a[b+"m"].destroy())},100)},drawPoints:function(){var a,b=this.points,c=this.chart,d,e,f,g,h,i,j,k,l=this.options.marker,m,n=this.markerGroup;if(l.enabled||this._hasPointMarkers)for(f=b.length;f--;)if(g=
|
||||
b[f],d=P(g.plotX),e=g.plotY,k=g.graphic,i=g.marker||{},a=l.enabled&&i.enabled===v||i.enabled,m=c.isInsidePlot(t(d),e,c.inverted),a&&e!==v&&!isNaN(e)&&g.y!==null)if(a=g.pointAttr[g.selected?"select":""],h=a.r,i=o(i.symbol,this.symbol),j=i.indexOf("url")===0,k)k.attr({visibility:m?W?"inherit":"visible":"hidden"}).animate(s({x:d-h,y:e-h},k.symbolName?{width:2*h,height:2*h}:{}));else{if(m&&(h>0||j))g.graphic=c.renderer.symbol(i,d-h,e-h,2*h,2*h).attr(a).add(n)}else if(k)g.graphic=k.destroy()},convertAttribs:function(a,
|
||||
b,c,d){var e=this.pointAttrToOptions,f,g,h={},a=a||{},b=b||{},c=c||{},d=d||{};for(f in e)g=e[f],h[f]=o(a[g],b[f],c[f],d[f]);return h},getAttribs:function(){var a=this,b=a.options,c=Z[a.type].marker?b.marker:b,d=c.states,e=d.hover,f,g=a.color,h={stroke:g,fill:g},i=a.points||[],j=[],k,l=a.pointAttrToOptions,m=b.negativeColor,p=c.lineColor,q;b.marker?(e.radius=e.radius||c.radius+2,e.lineWidth=e.lineWidth||c.lineWidth+1):e.color=e.color||qa(e.color||g).brighten(e.brightness).get();j[""]=a.convertAttribs(c,
|
||||
h);n(["hover","select"],function(b){j[b]=a.convertAttribs(d[b],j[""])});a.pointAttr=j;for(g=i.length;g--;){h=i[g];if((c=h.options&&h.options.marker||h.options)&&c.enabled===!1)c.radius=0;if(h.negative&&m)h.color=h.fillColor=m;f=b.colorByPoint||h.color;if(h.options)for(q in l)u(c[l[q]])&&(f=!0);if(f){c=c||{};k=[];d=c.states||{};f=d.hover=d.hover||{};if(!b.marker)f.color=qa(f.color||h.color).brighten(f.brightness||e.brightness).get();k[""]=a.convertAttribs(s({color:h.color,fillColor:h.color,lineColor:p===
|
||||
null?h.color:v},c),j[""]);k.hover=a.convertAttribs(d.hover,j.hover,k[""]);k.select=a.convertAttribs(d.select,j.select,k[""])}else k=j;h.pointAttr=k}},update:function(a,b){var c=this.chart,d=this.type,e=X[d].prototype,f,a=x(this.userOptions,{animation:!1,index:this.index,pointStart:this.xData[0]},{data:this.options.data},a);this.remove(!1);for(f in e)e.hasOwnProperty(f)&&(this[f]=v);s(this,X[a.type||d].prototype);this.init(c,a);o(b,!0)&&c.redraw(!1)},destroy:function(){var a=this,b=a.chart,c=/AppleWebKit\/533/.test(na),
|
||||
d,e,f=a.data||[],g,h,i;A(a,"destroy");$(a);n(["xAxis","yAxis"],function(b){if(i=a[b])ga(i.series,a),i.isDirty=i.forceRedraw=!0,i.stacks={}});a.legendItem&&a.chart.legend.destroyItem(a);for(e=f.length;e--;)(g=f[e])&&g.destroy&&g.destroy();a.points=null;clearTimeout(a.animationTimeout);n("area,graph,dataLabelsGroup,group,markerGroup,tracker,graphNeg,areaNeg,posClip,negClip".split(","),function(b){a[b]&&(d=c&&b==="group"?"hide":"destroy",a[b][d]())});if(b.hoverSeries===a)b.hoverSeries=null;ga(b.series,
|
||||
a);for(h in a)delete a[h]},drawDataLabels:function(){var a=this,b=a.options,c=b.cursor,d=b.dataLabels,b=a.points,e,f,g,h;if(d.enabled||a._hasPointLabels)a.dlProcessOptions&&a.dlProcessOptions(d),h=a.plotGroup("dataLabelsGroup","data-labels",a.visible?"visible":"hidden",d.zIndex||6),f=d,n(b,function(b){var j,k=b.dataLabel,l,m,n=b.connector,q=!0;e=b.options&&b.options.dataLabels;j=o(e&&e.enabled,f.enabled);if(k&&!j)b.dataLabel=k.destroy();else if(j){d=x(f,e);j=d.rotation;l=b.getLabelConfig();g=d.format?
|
||||
Ca(d.format,l):d.formatter.call(l,d);d.style.color=o(d.color,d.style.color,a.color,"black");if(k)if(u(g))k.attr({text:g}),q=!1;else{if(b.dataLabel=k=k.destroy(),n)b.connector=n.destroy()}else if(u(g)){k={fill:d.backgroundColor,stroke:d.borderColor,"stroke-width":d.borderWidth,r:d.borderRadius||0,rotation:j,padding:d.padding,zIndex:1};for(m in k)k[m]===v&&delete k[m];k=b.dataLabel=a.chart.renderer[j?"text":"label"](g,0,-999,null,null,null,d.useHTML).attr(k).css(s(d.style,c&&{cursor:c})).add(h).shadow(d.shadow)}k&&
|
||||
a.alignDataLabel(b,k,d,null,q)}})},alignDataLabel:function(a,b,c,d,e){var f=this.chart,g=f.inverted,h=o(a.plotX,-999),i=o(a.plotY,-999),j=b.getBBox();if(a=this.visible&&f.isInsidePlot(a.plotX,a.plotY,g))d=s({x:g?f.plotWidth-i:h,y:t(g?f.plotHeight-h:i),width:0,height:0},d),s(c,{width:j.width,height:j.height}),c.rotation?(g={align:c.align,x:d.x+c.x+d.width/2,y:d.y+c.y+d.height/2},b[e?"attr":"animate"](g)):(b.align(c,null,d),g=b.alignAttr,o(c.overflow,"justify")==="justify"?this.justifyDataLabel(b,c,
|
||||
g,j,d,e):o(c.crop,!0)&&(a=f.isInsidePlot(g.x,g.y)&&f.isInsidePlot(g.x+j.width,g.y+j.height)));a||b.attr({y:-999})},justifyDataLabel:function(a,b,c,d,e,f){var g=this.chart,h=b.align,i=b.verticalAlign,j,k;j=c.x;if(j<0)h==="right"?b.align="left":b.x=-j,k=!0;j=c.x+d.width;if(j>g.plotWidth)h==="left"?b.align="right":b.x=g.plotWidth-j,k=!0;j=c.y;if(j<0)i==="bottom"?b.verticalAlign="top":b.y=-j,k=!0;j=c.y+d.height;if(j>g.plotHeight)i==="top"?b.verticalAlign="bottom":b.y=g.plotHeight-j,k=!0;if(k)a.placed=
|
||||
!f,a.align(b,null,e)},getSegmentPath:function(a){var b=this,c=[],d=b.options.step;n(a,function(e,f){var g=e.plotX,h=e.plotY,i;b.getPointSpline?c.push.apply(c,b.getPointSpline(a,e,f)):(c.push(f?"L":"M"),d&&f&&(i=a[f-1],d==="right"?c.push(i.plotX,h):d==="center"?c.push((i.plotX+g)/2,i.plotY,(i.plotX+g)/2,h):c.push(g,i.plotY)),c.push(e.plotX,e.plotY))});return c},getGraphPath:function(){var a=this,b=[],c,d=[];n(a.segments,function(e){c=a.getSegmentPath(e);e.length>1?b=b.concat(c):d.push(e[0])});a.singlePoints=
|
||||
d;return a.graphPath=b},drawGraph:function(){var a=this,b=this.options,c=[["graph",b.lineColor||this.color]],d=b.lineWidth,e=b.dashStyle,f=b.linecap!=="square",g=this.getGraphPath(),h=b.negativeColor;h&&c.push(["graphNeg",h]);n(c,function(c,h){var k=c[0],l=a[k];if(l)Wa(l),l.animate({d:g});else if(d&&g.length)l={stroke:c[1],"stroke-width":d,zIndex:1},e?l.dashstyle=e:f&&(l["stroke-linecap"]=l["stroke-linejoin"]="round"),a[k]=a.chart.renderer.path(g).attr(l).add(a.group).shadow(!h&&b.shadow)})},clipNeg:function(){var a=
|
||||
this.options,b=this.chart,c=b.renderer,d=a.negativeColor||a.negativeFillColor,e,f=this.graph,g=this.area,h=this.posClip,i=this.negClip;e=b.chartWidth;var j=b.chartHeight,k=r(e,j),l=this.yAxis;if(d&&(f||g)){d=t(l.toPixels(a.threshold||0,!0));a={x:0,y:0,width:k,height:d};k={x:0,y:d,width:k,height:k};if(b.inverted)a.height=k.y=b.plotWidth-d,c.isVML&&(a={x:b.plotWidth-d-b.plotLeft,y:0,width:e,height:j},k={x:d+b.plotLeft-e,y:0,width:b.plotLeft+d,height:e});l.reversed?(b=k,e=a):(b=a,e=k);h?(h.animate(b),
|
||||
i.animate(e)):(this.posClip=h=c.clipRect(b),this.negClip=i=c.clipRect(e),f&&this.graphNeg&&(f.clip(h),this.graphNeg.clip(i)),g&&(g.clip(h),this.areaNeg.clip(i)))}},invertGroups:function(){function a(){var a={width:b.yAxis.len,height:b.xAxis.len};n(["group","markerGroup"],function(c){b[c]&&b[c].attr(a).invert()})}var b=this,c=b.chart;if(b.xAxis)K(c,"resize",a),K(b,"destroy",function(){$(c,"resize",a)}),a(),b.invertGroups=a},plotGroup:function(a,b,c,d,e){var f=this[a],g=!f;g&&(this[a]=f=this.chart.renderer.g(b).attr({visibility:c,
|
||||
zIndex:d||0.1}).add(e));f[g?"attr":"animate"](this.getPlotBox());return f},getPlotBox:function(){return{translateX:this.xAxis?this.xAxis.left:this.chart.plotLeft,translateY:this.yAxis?this.yAxis.top:this.chart.plotTop,scaleX:1,scaleY:1}},render:function(){var a=this.chart,b,c=this.options,d=c.animation&&!!this.animate&&a.renderer.isSVG,e=this.visible?"visible":"hidden",f=c.zIndex,g=this.hasRendered,h=a.seriesGroup;b=this.plotGroup("group","series",e,f,h);this.markerGroup=this.plotGroup("markerGroup",
|
||||
"markers",e,f,h);d&&this.animate(!0);this.getAttribs();b.inverted=this.isCartesian?a.inverted:!1;this.drawGraph&&(this.drawGraph(),this.clipNeg());this.drawDataLabels();this.drawPoints();this.options.enableMouseTracking!==!1&&this.drawTracker();a.inverted&&this.invertGroups();c.clip!==!1&&!this.sharedClipKey&&!g&&b.clip(a.clipRect);d?this.animate():g||this.afterAnimate();this.isDirty=this.isDirtyData=!1;this.hasRendered=!0},redraw:function(){var a=this.chart,b=this.isDirtyData,c=this.group,d=this.xAxis,
|
||||
e=this.yAxis;c&&(a.inverted&&c.attr({width:a.plotWidth,height:a.plotHeight}),c.animate({translateX:o(d&&d.left,a.plotLeft),translateY:o(e&&e.top,a.plotTop)}));this.translate();this.setTooltipPoints(!0);this.render();b&&A(this,"updatedData")},setState:function(a){var b=this.options,c=this.graph,d=this.graphNeg,e=b.states,b=b.lineWidth,a=a||"";if(this.state!==a)this.state=a,e[a]&&e[a].enabled===!1||(a&&(b=e[a].lineWidth||b+1),c&&!c.dashstyle&&(a={"stroke-width":b},c.attr(a),d&&d.attr(a)))},setVisible:function(a,
|
||||
b){var c=this,d=c.chart,e=c.legendItem,f,g=d.options.chart.ignoreHiddenSeries,h=c.visible;f=(c.visible=a=c.userOptions.visible=a===v?!h:a)?"show":"hide";n(["group","dataLabelsGroup","markerGroup","tracker"],function(a){if(c[a])c[a][f]()});if(d.hoverSeries===c)c.onMouseOut();e&&d.legend.colorizeItem(c,a);c.isDirty=!0;c.options.stacking&&n(d.series,function(a){if(a.options.stacking&&a.visible)a.isDirty=!0});n(c.linkedSeries,function(b){b.setVisible(a,!1)});if(g)d.isDirtyBox=!0;b!==!1&&d.redraw();A(c,
|
||||
f)},show:function(){this.setVisible(!0)},hide:function(){this.setVisible(!1)},select:function(a){this.selected=a=a===v?!this.selected:a;if(this.checkbox)this.checkbox.checked=a;A(this,a?"select":"unselect")},drawTracker:function(){var a=this,b=a.options,c=b.trackByArea,d=[].concat(c?a.areaPath:a.graphPath),e=d.length,f=a.chart,g=f.pointer,h=f.renderer,i=f.options.tooltip.snap,j=a.tracker,k=b.cursor,l=k&&{cursor:k},k=a.singlePoints,m,p=function(){if(f.hoverSeries!==a)a.onMouseOver()};if(e&&!c)for(m=
|
||||
e+1;m--;)d[m]==="M"&&d.splice(m+1,0,d[m+1]-i,d[m+2],"L"),(m&&d[m]==="M"||m===e)&&d.splice(m,0,"L",d[m-2]+i,d[m-1]);for(m=0;m<k.length;m++)e=k[m],d.push("M",e.plotX-i,e.plotY,"L",e.plotX+i,e.plotY);j?j.attr({d:d}):(a.tracker=h.path(d).attr({"stroke-linejoin":"round",visibility:a.visible?"visible":"hidden",stroke:Qb,fill:c?Qb:S,"stroke-width":b.lineWidth+(c?0:2*i),zIndex:2}).add(a.group),n([a.tracker,a.markerGroup],function(a){a.addClass("highcharts-tracker").on("mouseover",p).on("mouseout",function(a){g.onTrackerMouseOut(a)}).css(l);
|
||||
if(jb)a.on("touchstart",p)}))}};G=ha(Q);X.line=G;Z.area=x(Y,{threshold:0});G=ha(Q,{type:"area",getSegments:function(){var a=[],b=[],c=[],d=this.xAxis,e=this.yAxis,f=e.stacks[this.stackKey],g={},h,i,j=this.points,k=this.options.connectNulls,l,m,p;if(this.options.stacking&&!this.cropped){for(m=0;m<j.length;m++)g[j[m].x]=j[m];for(p in f)f[p].total!==null&&c.push(+p);c.sort(function(a,b){return a-b});n(c,function(a){if(!k||g[a]&&g[a].y!==null)g[a]?b.push(g[a]):(h=d.translate(a),l=f[a].percent?f[a].total?
|
||||
f[a].cum*100/f[a].total:0:f[a].cum,i=e.toPixels(l,!0),b.push({y:null,plotX:h,clientX:h,plotY:i,yBottom:i,onMouseOver:oa}))});b.length&&a.push(b)}else Q.prototype.getSegments.call(this),a=this.segments;this.segments=a},getSegmentPath:function(a){var b=Q.prototype.getSegmentPath.call(this,a),c=[].concat(b),d,e=this.options;d=b.length;var f=this.yAxis.getThreshold(e.threshold),g;d===3&&c.push("L",b[1],b[2]);if(e.stacking&&!this.closedStacks)for(d=a.length-1;d>=0;d--)g=o(a[d].yBottom,f),d<a.length-1&&
|
||||
e.step&&c.push(a[d+1].plotX,g),c.push(a[d].plotX,g);else this.closeSegment(c,a,f);this.areaPath=this.areaPath.concat(c);return b},closeSegment:function(a,b,c){a.push("L",b[b.length-1].plotX,c,"L",b[0].plotX,c)},drawGraph:function(){this.areaPath=[];Q.prototype.drawGraph.apply(this);var a=this,b=this.areaPath,c=this.options,d=c.negativeColor,e=c.negativeFillColor,f=[["area",this.color,c.fillColor]];(d||e)&&f.push(["areaNeg",d,e]);n(f,function(d){var e=d[0],f=a[e];f?f.animate({d:b}):a[e]=a.chart.renderer.path(b).attr({fill:o(d[2],
|
||||
qa(d[1]).setOpacity(o(c.fillOpacity,0.75)).get()),zIndex:0}).add(a.group)})},drawLegendSymbol:function(a,b){b.legendSymbol=this.chart.renderer.rect(0,a.baseline-11,a.options.symbolWidth,12,2).attr({zIndex:3}).add(b.legendGroup)}});X.area=G;Z.spline=x(Y);F=ha(Q,{type:"spline",getPointSpline:function(a,b,c){var d=b.plotX,e=b.plotY,f=a[c-1],g=a[c+1],h,i,j,k;if(f&&g){a=f.plotY;j=g.plotX;var g=g.plotY,l;h=(1.5*d+f.plotX)/2.5;i=(1.5*e+a)/2.5;j=(1.5*d+j)/2.5;k=(1.5*e+g)/2.5;l=(k-i)*(j-d)/(j-h)+e-k;i+=l;
|
||||
k+=l;i>a&&i>e?(i=r(a,e),k=2*e-i):i<a&&i<e&&(i=J(a,e),k=2*e-i);k>g&&k>e?(k=r(g,e),i=2*e-k):k<g&&k<e&&(k=J(g,e),i=2*e-k);b.rightContX=j;b.rightContY=k}c?(b=["C",f.rightContX||f.plotX,f.rightContY||f.plotY,h||d,i||e,d,e],f.rightContX=f.rightContY=null):b=["M",d,e];return b}});X.spline=F;Z.areaspline=x(Z.area);la=G.prototype;F=ha(F,{type:"areaspline",closedStacks:!0,getSegmentPath:la.getSegmentPath,closeSegment:la.closeSegment,drawGraph:la.drawGraph,drawLegendSymbol:la.drawLegendSymbol});X.areaspline=
|
||||
F;Z.column=x(Y,{borderColor:"#FFFFFF",borderWidth:1,borderRadius:0,groupPadding:0.2,marker:null,pointPadding:0.1,minPointLength:0,cropThreshold:50,pointRange:null,states:{hover:{brightness:0.1,shadow:!1},select:{color:"#C0C0C0",borderColor:"#000000",shadow:!1}},dataLabels:{align:null,verticalAlign:null,y:null},stickyTracking:!1,threshold:0});F=ha(Q,{type:"column",pointAttrToOptions:{stroke:"borderColor","stroke-width":"borderWidth",fill:"color",r:"borderRadius"},cropShoulder:0,trackerGroups:["group",
|
||||
"dataLabelsGroup"],negStacks:!0,init:function(){Q.prototype.init.apply(this,arguments);var a=this,b=a.chart;b.hasRendered&&n(b.series,function(b){if(b.type===a.type)b.isDirty=!0})},getColumnMetrics:function(){var a=this,b=a.options,c=a.xAxis,d=a.yAxis,e=c.reversed,f,g={},h,i=0;b.grouping===!1?i=1:n(a.chart.series,function(b){var c=b.options,e=b.yAxis;if(b.type===a.type&&b.visible&&d.len===e.len&&d.pos===e.pos)c.stacking?(f=b.stackKey,g[f]===v&&(g[f]=i++),h=g[f]):c.grouping!==!1&&(h=i++),b.columnIndex=
|
||||
h});var c=J(M(c.transA)*(c.ordinalSlope||b.pointRange||c.closestPointRange||1),c.len),j=c*b.groupPadding,k=(c-2*j)/i,l=b.pointWidth,b=u(l)?(k-l)/2:k*b.pointPadding,l=o(l,k-2*b);return a.columnMetrics={width:l,offset:b+(j+((e?i-(a.columnIndex||0):a.columnIndex)||0)*k-c/2)*(e?-1:1)}},translate:function(){var a=this.chart,b=this.options,c=b.borderWidth,d=this.yAxis,e=this.translatedThreshold=d.getThreshold(b.threshold),f=o(b.minPointLength,5),b=this.getColumnMetrics(),g=b.width,h=this.barW=wa(r(g,1+
|
||||
2*c)),i=this.pointXOffset=b.offset,j=-(c%2?0.5:0),k=c%2?0.5:1;a.renderer.isVML&&a.inverted&&(k+=1);Q.prototype.translate.apply(this);n(this.points,function(a){var b=o(a.yBottom,e),c=J(r(-999-b,a.plotY),d.len+999+b),n=a.plotX+i,u=h,s=J(c,b),v,c=r(c,b)-s;M(c)<f&&f&&(c=f,s=t(M(s-e)>f?b-f:e-(d.translate(a.y,0,1,0,1)<=e?f:0)));a.barX=n;a.pointWidth=g;b=M(n)<0.5;u=t(n+u)+j;n=t(n)+j;u-=n;v=M(s)<0.5;c=t(s+c)+k;s=t(s)+k;c-=s;b&&(n+=1,u-=1);v&&(s-=1,c+=1);a.shapeType="rect";a.shapeArgs={x:n,y:s,width:u,height:c}})},
|
||||
getSymbol:oa,drawLegendSymbol:G.prototype.drawLegendSymbol,drawGraph:oa,drawPoints:function(){var a=this,b=a.options,c=a.chart.renderer,d;n(a.points,function(e){var f=e.plotY,g=e.graphic;if(f!==v&&!isNaN(f)&&e.y!==null)d=e.shapeArgs,g?(Wa(g),g.animate(x(d))):e.graphic=c[e.shapeType](d).attr(e.pointAttr[e.selected?"select":""]).add(a.group).shadow(b.shadow,null,b.stacking&&!b.borderRadius);else if(g)e.graphic=g.destroy()})},drawTracker:function(){var a=this,b=a.chart,c=b.pointer,d=a.options.cursor,
|
||||
e=d&&{cursor:d},f=function(c){var d=c.target,e;if(b.hoverSeries!==a)a.onMouseOver();for(;d&&!e;)e=d.point,d=d.parentNode;if(e!==v&&e!==b.hoverPoint)e.onMouseOver(c)};n(a.points,function(a){if(a.graphic)a.graphic.element.point=a;if(a.dataLabel)a.dataLabel.element.point=a});if(!a._hasTracking)n(a.trackerGroups,function(b){if(a[b]&&(a[b].addClass("highcharts-tracker").on("mouseover",f).on("mouseout",function(a){c.onTrackerMouseOut(a)}).css(e),jb))a[b].on("touchstart",f)}),a._hasTracking=!0},alignDataLabel:function(a,
|
||||
b,c,d,e){var f=this.chart,g=f.inverted,h=a.dlBox||a.shapeArgs,i=a.below||a.plotY>o(this.translatedThreshold,f.plotSizeY),j=o(c.inside,!!this.options.stacking);if(h&&(d=x(h),g&&(d={x:f.plotWidth-d.y-d.height,y:f.plotHeight-d.x-d.width,width:d.height,height:d.width}),!j))g?(d.x+=i?0:d.width,d.width=0):(d.y+=i?d.height:0,d.height=0);c.align=o(c.align,!g||j?"center":i?"right":"left");c.verticalAlign=o(c.verticalAlign,g||j?"middle":i?"top":"bottom");Q.prototype.alignDataLabel.call(this,a,b,c,d,e)},animate:function(a){var b=
|
||||
this.yAxis,c=this.options,d=this.chart.inverted,e={};if(W)a?(e.scaleY=0.001,a=J(b.pos+b.len,r(b.pos,b.toPixels(c.threshold))),d?e.translateX=a-b.len:e.translateY=a,this.group.attr(e)):(e.scaleY=1,e[d?"translateX":"translateY"]=b.pos,this.group.animate(e,this.options.animation),this.animate=null)},remove:function(){var a=this,b=a.chart;b.hasRendered&&n(b.series,function(b){if(b.type===a.type)b.isDirty=!0});Q.prototype.remove.apply(a,arguments)}});X.column=F;Z.bar=x(Z.column);la=ha(F,{type:"bar",inverted:!0});
|
||||
X.bar=la;Z.scatter=x(Y,{lineWidth:0,tooltip:{headerFormat:'<span style="font-size: 10px; color:{series.color}">{series.name}</span><br/>',pointFormat:"x: <b>{point.x}</b><br/>y: <b>{point.y}</b><br/>",followPointer:!0},stickyTracking:!1});la=ha(Q,{type:"scatter",sorted:!1,requireSorting:!1,noSharedTooltip:!0,trackerGroups:["markerGroup"],takeOrdinalPosition:!1,drawTracker:F.prototype.drawTracker,setTooltipPoints:oa});X.scatter=la;Z.pie=x(Y,{borderColor:"#FFFFFF",borderWidth:1,center:[null,null],clip:!1,
|
||||
colorByPoint:!0,dataLabels:{distance:30,enabled:!0,formatter:function(){return this.point.name}},ignoreHiddenPoint:!0,legendType:"point",marker:null,size:null,showInLegend:!1,slicedOffset:10,states:{hover:{brightness:0.1,shadow:!1}},stickyTracking:!1,tooltip:{followPointer:!0}});Y={type:"pie",isCartesian:!1,pointClass:ha(Pa,{init:function(){Pa.prototype.init.apply(this,arguments);var a=this,b;if(a.y<0)a.y=null;s(a,{visible:a.visible!==!1,name:o(a.name,"Slice")});b=function(b){a.slice(b.type==="select")};
|
||||
K(a,"select",b);K(a,"unselect",b);return a},setVisible:function(a){var b=this,c=b.series,d=c.chart,e;b.visible=b.options.visible=a=a===v?!b.visible:a;c.options.data[pa(b,c.data)]=b.options;e=a?"show":"hide";n(["graphic","dataLabel","connector","shadowGroup"],function(a){if(b[a])b[a][e]()});b.legendItem&&d.legend.colorizeItem(b,a);if(!c.isDirty&&c.options.ignoreHiddenPoint)c.isDirty=!0,d.redraw()},slice:function(a,b,c){var d=this.series;La(c,d.chart);o(b,!0);this.sliced=this.options.sliced=a=u(a)?
|
||||
a:!this.sliced;d.options.data[pa(this,d.data)]=this.options;a=a?this.slicedTranslation:{translateX:0,translateY:0};this.graphic.animate(a);this.shadowGroup&&this.shadowGroup.animate(a)}}),requireSorting:!1,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],pointAttrToOptions:{stroke:"borderColor","stroke-width":"borderWidth",fill:"color"},getColor:oa,animate:function(a){var b=this,c=b.points,d=b.startAngleRad;if(!a)n(c,function(a){var c=a.graphic,a=a.shapeArgs;c&&(c.attr({r:b.center[3]/
|
||||
2,start:d,end:d}),c.animate({r:a.r,start:a.start,end:a.end},b.options.animation))}),b.animate=null},setData:function(a,b){Q.prototype.setData.call(this,a,!1);this.processData();this.generatePoints();o(b,!0)&&this.chart.redraw()},generatePoints:function(){var a,b=0,c,d,e,f=this.options.ignoreHiddenPoint;Q.prototype.generatePoints.call(this);c=this.points;d=c.length;for(a=0;a<d;a++)e=c[a],b+=f&&!e.visible?0:e.y;this.total=b;for(a=0;a<d;a++)e=c[a],e.percentage=b>0?e.y/b*100:0,e.total=b},getCenter:function(){var a=
|
||||
this.options,b=this.chart,c=2*(a.slicedOffset||0),d,e=b.plotWidth-2*c,f=b.plotHeight-2*c,b=a.center,a=[o(b[0],"50%"),o(b[1],"50%"),a.size||"100%",a.innerSize||0],g=J(e,f),h;return Na(a,function(a,b){h=/%$/.test(a);d=b<2||b===2&&h;return(h?[e,f,g,g][b]*y(a)/100:a)+(d?c:0)})},translate:function(a){this.generatePoints();var b=0,c=this.options,d=c.slicedOffset,e=d+c.borderWidth,f,g,h,i=c.startAngle||0,j=this.startAngleRad=xa/180*(i-90),i=(this.endAngleRad=xa/180*((c.endAngle||i+360)-90))-j,k=this.points,
|
||||
l=c.dataLabels.distance,c=c.ignoreHiddenPoint,m,n=k.length,o;if(!a)this.center=a=this.getCenter();this.getX=function(b,c){h=R.asin((b-a[1])/(a[2]/2+l));return a[0]+(c?-1:1)*V(h)*(a[2]/2+l)};for(m=0;m<n;m++){o=k[m];f=j+b*i;if(!c||o.visible)b+=o.percentage/100;g=j+b*i;o.shapeType="arc";o.shapeArgs={x:a[0],y:a[1],r:a[2]/2,innerR:a[3]/2,start:t(f*1E3)/1E3,end:t(g*1E3)/1E3};h=(g+f)/2;h>0.75*i&&(h-=2*xa);o.slicedTranslation={translateX:t(V(h)*d),translateY:t(ba(h)*d)};f=V(h)*a[2]/2;g=ba(h)*a[2]/2;o.tooltipPos=
|
||||
[a[0]+f*0.7,a[1]+g*0.7];o.half=h<-xa/2||h>xa/2?1:0;o.angle=h;e=J(e,l/2);o.labelPos=[a[0]+f+V(h)*l,a[1]+g+ba(h)*l,a[0]+f+V(h)*e,a[1]+g+ba(h)*e,a[0]+f,a[1]+g,l<0?"center":o.half?"right":"left",h]}},setTooltipPoints:oa,drawGraph:null,drawPoints:function(){var a=this,b=a.chart.renderer,c,d,e=a.options.shadow,f,g;if(e&&!a.shadowGroup)a.shadowGroup=b.g("shadow").add(a.group);n(a.points,function(h){d=h.graphic;g=h.shapeArgs;f=h.shadowGroup;if(e&&!f)f=h.shadowGroup=b.g("shadow").add(a.shadowGroup);c=h.sliced?
|
||||
h.slicedTranslation:{translateX:0,translateY:0};f&&f.attr(c);d?d.animate(s(g,c)):h.graphic=d=b.arc(g).setRadialReference(a.center).attr(h.pointAttr[h.selected?"select":""]).attr({"stroke-linejoin":"round"}).attr(c).add(a.group).shadow(e,f);h.visible===!1&&h.setVisible(!1)})},sortByAngle:function(a,b){a.sort(function(a,d){return a.angle!==void 0&&(d.angle-a.angle)*b})},drawDataLabels:function(){var a=this,b=a.data,c,d=a.chart,e=a.options.dataLabels,f=o(e.connectorPadding,10),g=o(e.connectorWidth,1),
|
||||
h=d.plotWidth,d=d.plotHeight,i,j,k=o(e.softConnector,!0),l=e.distance,m=a.center,p=m[2]/2,q=m[1],u=l>0,s,v,w,x,y=[[],[]],z,A,E,H,C,D=[0,0,0,0],J=function(a,b){return b.y-a.y};if(a.visible&&(e.enabled||a._hasPointLabels)){Q.prototype.drawDataLabels.apply(a);n(b,function(a){a.dataLabel&&y[a.half].push(a)});for(H=0;!x&&b[H];)x=b[H]&&b[H].dataLabel&&(b[H].dataLabel.getBBox().height||21),H++;for(H=2;H--;){var b=[],I=[],G=y[H],K=G.length,F;a.sortByAngle(G,H-0.5);if(l>0){for(C=q-p-l;C<=q+p+l;C+=x)b.push(C);
|
||||
v=b.length;if(K>v){c=[].concat(G);c.sort(J);for(C=K;C--;)c[C].rank=C;for(C=K;C--;)G[C].rank>=v&&G.splice(C,1);K=G.length}for(C=0;C<K;C++){c=G[C];w=c.labelPos;c=9999;var N,L;for(L=0;L<v;L++)N=M(b[L]-w[1]),N<c&&(c=N,F=L);if(F<C&&b[C]!==null)F=C;else for(v<K-C+F&&b[C]!==null&&(F=v-K+C);b[F]===null;)F++;I.push({i:F,y:b[F]});b[F]=null}I.sort(J)}for(C=0;C<K;C++){c=G[C];w=c.labelPos;s=c.dataLabel;E=c.visible===!1?"hidden":"visible";c=w[1];if(l>0){if(v=I.pop(),F=v.i,A=v.y,c>A&&b[F+1]!==null||c<A&&b[F-1]!==
|
||||
null)A=c}else A=c;z=e.justify?m[0]+(H?-1:1)*(p+l):a.getX(F===0||F===b.length-1?c:A,H);s._attr={visibility:E,align:w[6]};s._pos={x:z+e.x+({left:f,right:-f}[w[6]]||0),y:A+e.y-10};s.connX=z;s.connY=A;if(this.options.size===null)v=s.width,z-v<f?D[3]=r(t(v-z+f),D[3]):z+v>h-f&&(D[1]=r(t(z+v-h+f),D[1])),A-x/2<0?D[0]=r(t(-A+x/2),D[0]):A+x/2>d&&(D[2]=r(t(A+x/2-d),D[2]))}}if(ua(D)===0||this.verifyDataLabelOverflow(D))this.placeDataLabels(),u&&g&&n(this.points,function(b){i=b.connector;w=b.labelPos;if((s=b.dataLabel)&&
|
||||
s._pos)E=s._attr.visibility,z=s.connX,A=s.connY,j=k?["M",z+(w[6]==="left"?5:-5),A,"C",z,A,2*w[2]-w[4],2*w[3]-w[5],w[2],w[3],"L",w[4],w[5]]:["M",z+(w[6]==="left"?5:-5),A,"L",w[2],w[3],"L",w[4],w[5]],i?(i.animate({d:j}),i.attr("visibility",E)):b.connector=i=a.chart.renderer.path(j).attr({"stroke-width":g,stroke:e.connectorColor||b.color||"#606060",visibility:E}).add(a.group);else if(i)b.connector=i.destroy()})}},verifyDataLabelOverflow:function(a){var b=this.center,c=this.options,d=c.center,e=c=c.minSize||
|
||||
80,f;d[0]!==null?e=r(b[2]-r(a[1],a[3]),c):(e=r(b[2]-a[1]-a[3],c),b[0]+=(a[3]-a[1])/2);d[1]!==null?e=r(J(e,b[2]-r(a[0],a[2])),c):(e=r(J(e,b[2]-a[0]-a[2]),c),b[1]+=(a[0]-a[2])/2);e<b[2]?(b[2]=e,this.translate(b),n(this.points,function(a){if(a.dataLabel)a.dataLabel._pos=null}),this.drawDataLabels()):f=!0;return f},placeDataLabels:function(){n(this.points,function(a){var a=a.dataLabel,b;if(a)(b=a._pos)?(a.attr(a._attr),a[a.moved?"animate":"attr"](b),a.moved=!0):a&&a.attr({y:-999})})},alignDataLabel:oa,
|
||||
drawTracker:F.prototype.drawTracker,drawLegendSymbol:G.prototype.drawLegendSymbol,getSymbol:oa};Y=ha(Q,Y);X.pie=Y;s(Highcharts,{Axis:eb,Chart:yb,Color:qa,Legend:fb,Pointer:xb,Point:Pa,Tick:Ma,Tooltip:wb,Renderer:Va,Series:Q,SVGElement:va,SVGRenderer:za,arrayMin:Ja,arrayMax:ua,charts:Ga,dateFormat:Ya,format:Ca,pathAnim:Ab,getOptions:function(){return L},hasBidiBug:Ub,isTouchDevice:Ob,numberFormat:Aa,seriesTypes:X,setOptions:function(a){L=x(L,a);Lb();return L},addEvent:K,removeEvent:$,createElement:U,
|
||||
discardElement:Ta,css:I,each:n,extend:s,map:Na,merge:x,pick:o,splat:ja,extendClass:ha,pInt:y,wrap:mb,svg:W,canvas:ca,vml:!W&&!ca,product:"Highcharts",version:"3.0.7"})})();
|
||||
@@ -0,0 +1,137 @@
|
||||
/**
|
||||
* 颜色拾取器
|
||||
*
|
||||
* @author hawind
|
||||
* @url http://gdoo.net
|
||||
* @name jquery.colorpicker.js
|
||||
* @since 2020-11-16
|
||||
*/
|
||||
(function($) {
|
||||
var ColorHex = new Array('00','33','66','99','CC','FF');
|
||||
var SpColorHex = new Array('FF0000','00FF00','0000FF','FFFF00','00FFFF','FF00FF');
|
||||
$.fn.colorpicker = function(options) {
|
||||
var opts = jQuery.extend({}, jQuery.fn.colorpicker.defaults, options);
|
||||
initColor();
|
||||
return this.each(function() {
|
||||
var obj = $(this);
|
||||
obj.on(opts.event + '.colorpicker', function() {
|
||||
|
||||
var $panel = $("#color-panel");
|
||||
|
||||
// 定位
|
||||
var ttop = $(this).offset().top; // 控件的定位点高
|
||||
var thei = $(this).height(); //控件本身的高
|
||||
var tleft = $(this).offset().left; //控件的定位点宽
|
||||
$panel.css({
|
||||
top: ttop + thei + 15,
|
||||
left: tleft
|
||||
}).show();
|
||||
|
||||
var target = opts.target ? $(opts.target) : obj;
|
||||
if (target.data("color") == null) {
|
||||
target.data("color", target.css("color"));
|
||||
}
|
||||
if (target.data("value") == null) {
|
||||
target.data("value", target.val());
|
||||
}
|
||||
|
||||
$("#color-panel-reset").on("click.colorpicker", function() {
|
||||
target.css("color", target.data("color")).val(target.data("value"));
|
||||
var color = target.data("value");
|
||||
color = opts.ishex ? color : getRGBColor(color);
|
||||
|
||||
$panel.hide();
|
||||
opts.reset(obj, color);
|
||||
});
|
||||
|
||||
$("#color-panel-body").off("click.colorpicker").on('mouseover.colorpicker', 'tr td', function() {
|
||||
var color = $(this).css("background-color");
|
||||
$("#color-panel-color").css("background", color);
|
||||
$("#color-panel-hex-color").val($(this).attr("rel"));
|
||||
}).on('click.colorpicker', 'tr td', function() {
|
||||
var color = $(this).attr("rel");
|
||||
color = opts.ishex ? color : getRGBColor(color);
|
||||
if (opts.fillcolor) target.val(color);
|
||||
target.css("color", color);
|
||||
|
||||
$panel.hide();
|
||||
$("#color-panel-reset").off("click.colorpicker");
|
||||
opts.change(obj, color);
|
||||
});
|
||||
|
||||
setColor(target.val());
|
||||
});
|
||||
});
|
||||
|
||||
function setColor(color) {
|
||||
$("#color-panel-color").css("background", color);
|
||||
$("#color-panel-hex-color").val(color);
|
||||
}
|
||||
function initColor() {
|
||||
$("body").append('<style>.colorpicker-controller{background-color:#fff;border: 1px solid #bbb;width:18px;height:18px;}.colorpicker{margin:2px;outline:none;display:inline-block;cursor:pointer;width:12px;height:12px;}</style><div id="color-panel" style="background-color:#fff;border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,0.2);padding:5px;border:solid 1px #ccc;position:absolute;z-index:1051;display:none;"></div>');
|
||||
var colorTable = '';
|
||||
var colorValue = '';
|
||||
for(i = 0;i < 2; i++) {
|
||||
for(j = 0; j < 6; j++) {
|
||||
colorTable = colorTable + '<tr height="12">'
|
||||
colorValue = i == 0 ? ColorHex[j] + ColorHex[j] + ColorHex[j] : SpColorHex[j];
|
||||
colorTable = colorTable + '<td width="11" rel="#'+ colorValue +'" style="background-color:#'+ colorValue +'">'
|
||||
for (k=0; k < 3; k++) {
|
||||
for (l = 0; l < 6; l++) {
|
||||
colorValue = ColorHex[k + i * 3]+ColorHex[l] + ColorHex[j];
|
||||
colorTable = colorTable + '<td width="11" rel="#'+ colorValue +'" style="background-color:#'+ colorValue +'">'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
colorTable = '<table width="230" border="0" cellspacing="0" cellpadding="0">'
|
||||
+ '<tr height="30"><td colspan="21" bgcolor="#fff">'
|
||||
+ '<table cellpadding="0" cellspacing="1" border="0" style="border-collapse:collapse">'
|
||||
+ '<tr><td width="3"><td><input type="text" id="color-panel-color" size="6" disabled style="border:inset 1px #ccc;"></td>'
|
||||
+ '<td width="3"><td><input type="text" id="color-panel-hex-color" size="7" style="border:inset 1px #ccc; font-family:Arial;"><a href="javascript:;" id="color-panel-close" style="padding-left:15px;">关闭</a> <a href="javascript:;" style="padding-left:5px;" id="color-panel-reset">重置</a></td></tr></table></td></table>'
|
||||
+ '<table width="230" id="color-panel-body" border="0" cellspacing="0" cellpadding="0" style="border-collapse:collapse" style="cursor:pointer;">'
|
||||
+ colorTable + '</table>';
|
||||
|
||||
var $panel = $("#color-panel");
|
||||
|
||||
$panel.html(colorTable);
|
||||
|
||||
$(document).on('mousedown.colorpicker', function() {
|
||||
$panel.hide();
|
||||
});
|
||||
|
||||
$panel.on('mousedown.colorpicker', function(e) {
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
$("#color-panel-close").on('click.colorpicker', function() {
|
||||
$panel.hide();
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
function getRGBColor(color) {
|
||||
var result;
|
||||
if (color && color.constructor == Array && color.length == 3)
|
||||
color = color;
|
||||
if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
|
||||
color = [parseInt(result[1]), parseInt(result[2]), parseInt(result[3])];
|
||||
if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
|
||||
color =[parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55];
|
||||
if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
|
||||
color =[parseInt(result[1],16), parseInt(result[2],16), parseInt(result[3],16)];
|
||||
if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
|
||||
color =[parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16)];
|
||||
return "rgb("+color[0]+","+color[1]+","+color[2]+")";
|
||||
}
|
||||
};
|
||||
jQuery.fn.colorpicker.defaults = {
|
||||
ishex : true, // 是否使用16进制颜色值
|
||||
fillcolor: false, // 是否将颜色值填充至对象的val中
|
||||
target: null, // 目标对象
|
||||
event: 'click', // 颜色框显示的事件
|
||||
change: function() {}, // 回调函数
|
||||
reset: function() {}
|
||||
};
|
||||
})(jQuery);
|
||||
@@ -0,0 +1,92 @@
|
||||
/**
|
||||
* Cookie plugin
|
||||
*
|
||||
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
|
||||
* Dual licensed under the MIT and GPL licenses:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
* http://www.gnu.org/licenses/gpl.html
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Create a cookie with the given name and value and other optional parameters.
|
||||
*
|
||||
* @example $.cookie('the_cookie', 'the_value');
|
||||
* @desc Set the value of a cookie.
|
||||
* @example $.cookie('the_cookie', 'the_value', {expires: 7, path: '/', domain: 'jquery.com', secure: true});
|
||||
* @desc Create a cookie with all available options.
|
||||
* @example $.cookie('the_cookie', 'the_value');
|
||||
* @desc Create a session cookie.
|
||||
* @example $.cookie('the_cookie', null);
|
||||
* @desc Delete a cookie by passing null as value.
|
||||
*
|
||||
* @param String name The name of the cookie.
|
||||
* @param String value The value of the cookie.
|
||||
* @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
|
||||
* @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
|
||||
* If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
|
||||
* If set to null or omitted, the cookie will be a session cookie and will not be retained
|
||||
* when the the browser exits.
|
||||
* @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
|
||||
* @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
|
||||
* @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
|
||||
* require a secure protocol (like HTTPS).
|
||||
* @type undefined
|
||||
*
|
||||
* @name $.cookie
|
||||
* @cat Plugins/Cookie
|
||||
* @author Klaus Hartl/klaus.hartl@stilbuero.de
|
||||
*/
|
||||
|
||||
/**
|
||||
* Get the value of a cookie with the given name.
|
||||
*
|
||||
* @example $.cookie('the_cookie');
|
||||
* @desc Get the value of a cookie.
|
||||
*
|
||||
* @param String name The name of the cookie.
|
||||
* @return The value of the cookie.
|
||||
* @type String
|
||||
*
|
||||
* @name $.cookie
|
||||
* @cat Plugins/Cookie
|
||||
* @author Klaus Hartl/klaus.hartl@stilbuero.de
|
||||
*/
|
||||
jQuery.cookie = function(name, value, options) {
|
||||
if (typeof value != 'undefined') { // name and value given, set cookie
|
||||
options = options || {};
|
||||
if (value === null) {
|
||||
value = '';
|
||||
options.expires = -1;
|
||||
}
|
||||
var expires = '';
|
||||
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
|
||||
var date;
|
||||
if (typeof options.expires == 'number') {
|
||||
date = new Date();
|
||||
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
|
||||
} else {
|
||||
date = options.expires;
|
||||
}
|
||||
expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
|
||||
}
|
||||
var path = options.path ? '; path=' + options.path : '';
|
||||
var domain = options.domain ? '; domain=' + options.domain : '';
|
||||
var secure = options.secure ? '; secure' : '';
|
||||
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
|
||||
} else { // only name given, get cookie
|
||||
var cookieValue = null;
|
||||
if (document.cookie && document.cookie != '') {
|
||||
var cookies = document.cookie.split(';');
|
||||
for (var i = 0; i < cookies.length; i++) {
|
||||
var cookie = jQuery.trim(cookies[i]);
|
||||
// Does this cookie string begin with the name we want?
|
||||
if (cookie.substring(0, name.length + 1) == (name + '=')) {
|
||||
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return cookieValue;
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,200 @@
|
||||
/**
|
||||
* jQuery JSON plugin v2.5.1
|
||||
* https://github.com/Krinkle/jquery-json
|
||||
*
|
||||
* @author Brantley Harris, 2009-2011
|
||||
* @author Timo Tijhof, 2011-2014
|
||||
* @source This plugin is heavily influenced by MochiKit's serializeJSON, which is
|
||||
* copyrighted 2005 by Bob Ippolito.
|
||||
* @source Brantley Harris wrote this plugin. It is based somewhat on the JSON.org
|
||||
* website's http://www.json.org/json2.js, which proclaims:
|
||||
* "NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.", a sentiment that
|
||||
* I uphold.
|
||||
* @license MIT License <http://opensource.org/licenses/MIT>
|
||||
*/
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
var escape = /["\\\x00-\x1f\x7f-\x9f]/g,
|
||||
meta = {
|
||||
'\b': '\\b',
|
||||
'\t': '\\t',
|
||||
'\n': '\\n',
|
||||
'\f': '\\f',
|
||||
'\r': '\\r',
|
||||
'"': '\\"',
|
||||
'\\': '\\\\'
|
||||
},
|
||||
hasOwn = Object.prototype.hasOwnProperty;
|
||||
|
||||
/**
|
||||
* jQuery.toJSON
|
||||
* Converts the given argument into a JSON representation.
|
||||
*
|
||||
* @param o {Mixed} The json-serializable *thing* to be converted
|
||||
*
|
||||
* If an object has a toJSON prototype, that will be used to get the representation.
|
||||
* Non-integer/string keys are skipped in the object, as are keys that point to a
|
||||
* function.
|
||||
*
|
||||
*/
|
||||
$.toJSON = typeof JSON === 'object' && JSON.stringify ? JSON.stringify : function (o) {
|
||||
if (o === null) {
|
||||
return 'null';
|
||||
}
|
||||
|
||||
var pairs, k, name, val,
|
||||
type = $.type(o);
|
||||
|
||||
if (type === 'undefined') {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
// Also covers instantiated Number and Boolean objects,
|
||||
// which are typeof 'object' but thanks to $.type, we
|
||||
// catch them here. I don't know whether it is right
|
||||
// or wrong that instantiated primitives are not
|
||||
// exported to JSON as an {"object":..}.
|
||||
// We choose this path because that's what the browsers did.
|
||||
if (type === 'number' || type === 'boolean') {
|
||||
return String(o);
|
||||
}
|
||||
if (type === 'string') {
|
||||
return $.quoteString(o);
|
||||
}
|
||||
if (typeof o.toJSON === 'function') {
|
||||
return $.toJSON(o.toJSON());
|
||||
}
|
||||
if (type === 'date') {
|
||||
var month = o.getUTCMonth() + 1,
|
||||
day = o.getUTCDate(),
|
||||
year = o.getUTCFullYear(),
|
||||
hours = o.getUTCHours(),
|
||||
minutes = o.getUTCMinutes(),
|
||||
seconds = o.getUTCSeconds(),
|
||||
milli = o.getUTCMilliseconds();
|
||||
|
||||
if (month < 10) {
|
||||
month = '0' + month;
|
||||
}
|
||||
if (day < 10) {
|
||||
day = '0' + day;
|
||||
}
|
||||
if (hours < 10) {
|
||||
hours = '0' + hours;
|
||||
}
|
||||
if (minutes < 10) {
|
||||
minutes = '0' + minutes;
|
||||
}
|
||||
if (seconds < 10) {
|
||||
seconds = '0' + seconds;
|
||||
}
|
||||
if (milli < 100) {
|
||||
milli = '0' + milli;
|
||||
}
|
||||
if (milli < 10) {
|
||||
milli = '0' + milli;
|
||||
}
|
||||
return '"' + year + '-' + month + '-' + day + 'T' +
|
||||
hours + ':' + minutes + ':' + seconds +
|
||||
'.' + milli + 'Z"';
|
||||
}
|
||||
|
||||
pairs = [];
|
||||
|
||||
if ($.isArray(o)) {
|
||||
for (k = 0; k < o.length; k++) {
|
||||
pairs.push($.toJSON(o[k]) || 'null');
|
||||
}
|
||||
return '[' + pairs.join(',') + ']';
|
||||
}
|
||||
|
||||
// Any other object (plain object, RegExp, ..)
|
||||
// Need to do typeof instead of $.type, because we also
|
||||
// want to catch non-plain objects.
|
||||
if (typeof o === 'object') {
|
||||
for (k in o) {
|
||||
// Only include own properties,
|
||||
// Filter out inherited prototypes
|
||||
if (hasOwn.call(o, k)) {
|
||||
// Keys must be numerical or string. Skip others
|
||||
type = typeof k;
|
||||
if (type === 'number') {
|
||||
name = '"' + k + '"';
|
||||
} else if (type === 'string') {
|
||||
name = $.quoteString(k);
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
type = typeof o[k];
|
||||
|
||||
// Invalid values like these return undefined
|
||||
// from toJSON, however those object members
|
||||
// shouldn't be included in the JSON string at all.
|
||||
if (type !== 'function' && type !== 'undefined') {
|
||||
val = $.toJSON(o[k]);
|
||||
pairs.push(name + ':' + val);
|
||||
}
|
||||
}
|
||||
}
|
||||
return '{' + pairs.join(',') + '}';
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* jQuery.evalJSON
|
||||
* Evaluates a given json string.
|
||||
*
|
||||
* @param str {String}
|
||||
*/
|
||||
$.evalJSON = typeof JSON === 'object' && JSON.parse ? JSON.parse : function (str) {
|
||||
/*jshint evil: true */
|
||||
return eval('(' + str + ')');
|
||||
};
|
||||
|
||||
/**
|
||||
* jQuery.secureEvalJSON
|
||||
* Evals JSON in a way that is *more* secure.
|
||||
*
|
||||
* @param str {String}
|
||||
*/
|
||||
$.secureEvalJSON = typeof JSON === 'object' && JSON.parse ? JSON.parse : function (str) {
|
||||
var filtered =
|
||||
str
|
||||
.replace(/\\["\\\/bfnrtu]/g, '@')
|
||||
.replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']')
|
||||
.replace(/(?:^|:|,)(?:\s*\[)+/g, '');
|
||||
|
||||
if (/^[\],:{}\s]*$/.test(filtered)) {
|
||||
/*jshint evil: true */
|
||||
return eval('(' + str + ')');
|
||||
}
|
||||
throw new SyntaxError('Error parsing JSON, source is not valid.');
|
||||
};
|
||||
|
||||
/**
|
||||
* jQuery.quoteString
|
||||
* Returns a string-repr of a string, escaping quotes intelligently.
|
||||
* Mostly a support function for toJSON.
|
||||
* Examples:
|
||||
* >>> jQuery.quoteString('apple')
|
||||
* "apple"
|
||||
*
|
||||
* >>> jQuery.quoteString('"Where are we going?", she asked.')
|
||||
* "\"Where are we going?\", she asked."
|
||||
*/
|
||||
$.quoteString = function (str) {
|
||||
if (str.match(escape)) {
|
||||
return '"' + str.replace(escape, function (a) {
|
||||
var c = meta[a];
|
||||
if (typeof c === 'string') {
|
||||
return c;
|
||||
}
|
||||
c = a.charCodeAt();
|
||||
return '\\u00' + Math.floor(c / 16).toString(16) + (c % 16).toString(16);
|
||||
}) + '"';
|
||||
}
|
||||
return '"' + str + '"';
|
||||
};
|
||||
|
||||
}(jQuery));
|
||||
@@ -0,0 +1,175 @@
|
||||
(function() {
|
||||
$.fn.Paging = function(settings) {
|
||||
var arr = [];
|
||||
$(this).each(function() {
|
||||
var options = $.extend({
|
||||
target: $(this)
|
||||
}, settings);
|
||||
var lz = new Paging();
|
||||
lz.init(options);
|
||||
arr.push(lz);
|
||||
});
|
||||
return arr;
|
||||
};
|
||||
|
||||
function Paging() {
|
||||
var rnd = Math.random().toString().replace('.', '');
|
||||
this.id = 'paging_' + rnd;
|
||||
}
|
||||
Paging.prototype = {
|
||||
init: function(settings) {
|
||||
this.settings = $.extend({
|
||||
callback: null,
|
||||
pagesize: 10,
|
||||
current: 1,
|
||||
prevTpl: "上一页",
|
||||
nextTpl: "下一页",
|
||||
firstTpl: "首页",
|
||||
lastTpl: "末页",
|
||||
ellipseTpl: "...",
|
||||
toolbar: true,
|
||||
hash: false,
|
||||
pageSizeList: [5, 10, 15, 20]
|
||||
}, settings);
|
||||
this.target = $(this.settings.target);
|
||||
this.container = $('<div id="' + this.id + '" class="ui-paging-container" /><div class="clearfix"></div>');
|
||||
this.target.append(this.container);
|
||||
this.render(this.settings);
|
||||
this.format();
|
||||
this.bindEvent();
|
||||
},
|
||||
render: function(ops) {
|
||||
this.count = ops.count || this.settings.count;
|
||||
this.pagesize = ops.pagesize || this.settings.pagesize;
|
||||
this.current = ops.current || this.settings.current;
|
||||
this.pagecount = Math.ceil(this.count / this.pagesize);
|
||||
if (ops.count === 0) {
|
||||
this.count = 0;
|
||||
this.pagecount = 0;
|
||||
this.current = 0;
|
||||
}
|
||||
this.format();
|
||||
},
|
||||
bindEvent: function() {
|
||||
var me = this;
|
||||
this.container.on('click', 'li.js-page-action, li.ui-pager', function(e) {
|
||||
if ($(this).hasClass('ui-pager-disabled') || $(this).hasClass('focus')) {
|
||||
return false;
|
||||
}
|
||||
if ($(this).hasClass('js-page-action')) {
|
||||
if ($(this).hasClass('js-page-first')) {
|
||||
me.current = 1;
|
||||
}
|
||||
if ($(this).hasClass('js-page-prev')) {
|
||||
me.current = Math.max(1, me.current - 1);
|
||||
}
|
||||
if ($(this).hasClass('js-page-next')) {
|
||||
me.current = Math.min(me.pagecount, me.current + 1);
|
||||
}
|
||||
if ($(this).hasClass('js-page-last')) {
|
||||
me.current = me.pagecount;
|
||||
}
|
||||
} else if ($(this).data('page')) {
|
||||
me.current = parseInt($(this).data('page'));
|
||||
}
|
||||
me.go();
|
||||
});
|
||||
},
|
||||
go: function(p) {
|
||||
var me = this;
|
||||
this.current = p || this.current;
|
||||
this.current = Math.max(1, me.current);
|
||||
this.current = Math.min(this.current, me.pagecount);
|
||||
this.format();
|
||||
if(this.settings.hash) {
|
||||
Query.setHash({
|
||||
page:this.current
|
||||
});
|
||||
}
|
||||
this.settings.callback && this.settings.callback(this.current, this.pagesize, this.pagecount);
|
||||
},
|
||||
changePagesize: function(ps) {
|
||||
this.render({
|
||||
pagesize: ps
|
||||
});
|
||||
this.settings.callback && this.settings.callback(this.current, this.pagesize, this.pagecount);
|
||||
},
|
||||
format: function() {
|
||||
var html = '<ul>'
|
||||
html += '<li class="js-page-first js-page-action ui-pager">' + this.settings.firstTpl + '</li>';
|
||||
html += '<li class="js-page-prev js-page-action ui-pager">' + this.settings.prevTpl + '</li>';
|
||||
if (this.pagecount > 3) {
|
||||
// html += '<li data-page="1" class="ui-pager">1</li>';
|
||||
if (this.current <= 1) {
|
||||
html += '<li data-page="1" class="ui-pager">1</li>';
|
||||
html += '<li data-page="2" class="ui-pager">2</li>';
|
||||
html += '<li data-page="3" class="ui-pager">3</li>';
|
||||
// html += '<li class="ui-paging-ellipse">' + this.settings.ellipseTpl + '</li>';
|
||||
} else if (this.current > 1 && this.current <= this.pagecount - 1) {
|
||||
// html += '<li>' + this.settings.ellipseTpl + '</li>';
|
||||
html += '<li data-page="' + (this.current - 1) + '" class="ui-pager">' + (this.current - 1) + '</li>';
|
||||
html += '<li data-page="' + this.current + '" class="ui-pager">' + this.current + '</li>';
|
||||
html += '<li data-page="' + (this.current + 1) + '" class="ui-pager">' + (this.current + 1) + '</li>';
|
||||
// html += '<li class="ui-paging-ellipse" class="ui-pager">' + this.settings.ellipseTpl + '</li>';
|
||||
} else {
|
||||
//html += '<li class="ui-paging-ellipse" >' + this.settings.ellipseTpl + '</li>';
|
||||
for (var i = this.pagecount - 2; i < this.pagecount + 1; i++) {
|
||||
html += '<li data-page="' + i + '" class="ui-pager">' + i + '</li>'
|
||||
}
|
||||
}
|
||||
// html += '<li data-page="' + this.pagecount + '" class="ui-pager">' + this.pagecount + '</li>';
|
||||
} else {
|
||||
for (var i = 1; i <= this.pagecount; i++) {
|
||||
html += '<li data-page="' + i + '" class="ui-pager">' + i + '</li>'
|
||||
}
|
||||
}
|
||||
html += '<li class="js-page-next js-page-action ui-pager">' + this.settings.nextTpl + '</li>';
|
||||
html += '<li class="js-page-last js-page-action ui-pager">' + this.settings.lastTpl + '</li>';
|
||||
html += '</ul>';
|
||||
html += '<div class="js-page-total">共' + this.count + '条记录 '+ this.current +'/' + this.pagecount + '页</div>';
|
||||
|
||||
$(this.container[0]).html(html);
|
||||
if (this.current == 0 || this.current == 1) {
|
||||
$('.js-page-prev', this.container).addClass('ui-pager-disabled');
|
||||
$('.js-page-first', this.container).addClass('ui-pager-disabled');
|
||||
}
|
||||
if (this.current == this.pagecount) {
|
||||
$('.js-page-next', this.container).addClass('ui-pager-disabled');
|
||||
$('.js-page-last', this.container).addClass('ui-pager-disabled');
|
||||
}
|
||||
this.container.find('li[data-page="' + this.current + '"]').addClass('focus').siblings().removeClass('focus');
|
||||
if (this.settings.toolbar) {
|
||||
this.bindToolbar();
|
||||
}
|
||||
},
|
||||
bindToolbar: function() {
|
||||
var me = this;
|
||||
var html = $('<li class="ui-paging-toolbar"><select class="ui-select-pagesize form-control input-sm input-inline"></select><input type="text" class="form-control input-sm input-inline ui-paging-count"/><a href="javascript:;">跳转</a></li>');
|
||||
var sel = $('.ui-select-pagesize', html);
|
||||
var str = '';
|
||||
for (var i = 0, l = this.settings.pageSizeList.length; i < l; i++) {
|
||||
str += '<option value="' + this.settings.pageSizeList[i] + '">' + this.settings.pageSizeList[i] + '条/页</option>';
|
||||
}
|
||||
sel.html(str);
|
||||
sel.val(this.pagesize);
|
||||
$('input', html).val(this.current);
|
||||
$('input', html).click(function() {
|
||||
$(this).select();
|
||||
}).keydown(function(e) {
|
||||
if (e.keyCode == 13) {
|
||||
var current = parseInt($(this).val()) || 1;
|
||||
me.go(current);
|
||||
}
|
||||
});
|
||||
$('a', html).click(function() {
|
||||
var current = parseInt($(this).prev().val()) || 1;
|
||||
me.go(current);
|
||||
});
|
||||
sel.change(function() {
|
||||
me.changePagesize($(this).val());
|
||||
});
|
||||
this.container.children('ul').append(html);
|
||||
}
|
||||
}
|
||||
return Paging;
|
||||
})();
|
||||
@@ -0,0 +1,267 @@
|
||||
/*
|
||||
* jQuery table2excel - v1.1.2
|
||||
* jQuery plugin to export an .xls file in browser from an HTML table
|
||||
* https://github.com/rainabba/jquery-table2excel
|
||||
*
|
||||
* Made by rainabba
|
||||
* Under MIT License
|
||||
*/
|
||||
//table2excel.js
|
||||
(function ( $, window, document, undefined ) {
|
||||
var pluginName = "table2excel",
|
||||
|
||||
defaults = {
|
||||
exclude: ".noExl",
|
||||
name: "Table2Excel",
|
||||
filename: "table2excel",
|
||||
fileext: ".xls",
|
||||
exclude_img: true,
|
||||
exclude_links: true,
|
||||
exclude_inputs: true,
|
||||
preserveColors: false
|
||||
};
|
||||
|
||||
// The actual plugin constructor
|
||||
function Plugin ( element, options ) {
|
||||
this.element = element;
|
||||
// jQuery has an extend method which merges the contents of two or
|
||||
// more objects, storing the result in the first object. The first object
|
||||
// is generally empty as we don't want to alter the default options for
|
||||
// future instances of the plugin
|
||||
//
|
||||
this.settings = $.extend( {}, defaults, options );
|
||||
this._defaults = defaults;
|
||||
this._name = pluginName;
|
||||
this.init();
|
||||
}
|
||||
|
||||
Plugin.prototype = {
|
||||
init: function () {
|
||||
var e = this;
|
||||
|
||||
var utf8Heading = "<meta http-equiv=\"content-type\" content=\"application/vnd.ms-excel; charset=UTF-8\">";
|
||||
e.template = {
|
||||
head: "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:x=\"urn:schemas-microsoft-com:office:excel\" xmlns=\"http://www.w3.org/TR/REC-html40\">" + utf8Heading + "<head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets>",
|
||||
sheet: {
|
||||
head: "<x:ExcelWorksheet><x:Name>",
|
||||
tail: "</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet>"
|
||||
},
|
||||
mid: "</x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body>",
|
||||
table: {
|
||||
head: "<table>",
|
||||
tail: "</table>"
|
||||
},
|
||||
foot: "</body></html>"
|
||||
};
|
||||
|
||||
e.tableRows = [];
|
||||
|
||||
// Styling variables
|
||||
var additionalStyles = "";
|
||||
var compStyle = null;
|
||||
|
||||
// get contents of table except for exclude
|
||||
$(e.element).each( function(i,o) {
|
||||
var tempRows = "";
|
||||
$(o).find("tr").not(e.settings.exclude).each(function (i,p) {
|
||||
|
||||
// Reset for this row
|
||||
additionalStyles = "";
|
||||
|
||||
// Preserve background and text colors on the row
|
||||
if(e.settings.preserveColors){
|
||||
compStyle = getComputedStyle(p);
|
||||
additionalStyles += (compStyle && compStyle.backgroundColor ? "background-color: " + compStyle.backgroundColor + ";" : "");
|
||||
additionalStyles += (compStyle && compStyle.color ? "color: " + compStyle.color + ";" : "");
|
||||
}
|
||||
|
||||
// Create HTML for Row
|
||||
tempRows += "<tr style='" + additionalStyles + "'>";
|
||||
|
||||
// Loop through each TH and TD
|
||||
$(p).find("td,th").not(e.settings.exclude).each(function (i,q) { // p did not exist, I corrected
|
||||
|
||||
// Reset for this column
|
||||
additionalStyles = "";
|
||||
|
||||
// Preserve background and text colors on the row
|
||||
if(e.settings.preserveColors){
|
||||
compStyle = getComputedStyle(q);
|
||||
additionalStyles += (compStyle && compStyle.backgroundColor ? "background-color: " + compStyle.backgroundColor + ";" : "");
|
||||
additionalStyles += (compStyle && compStyle.color ? "color: " + compStyle.color + ";" : "");
|
||||
}
|
||||
|
||||
var rc = {
|
||||
rows: $(this).attr("rowspan"),
|
||||
cols: $(this).attr("colspan"),
|
||||
flag: $(q).find(e.settings.exclude)
|
||||
};
|
||||
|
||||
if( rc.flag.length > 0 ) {
|
||||
tempRows += "<td> </td>"; // exclude it!!
|
||||
} else {
|
||||
tempRows += "<td";
|
||||
if( rc.rows > 0) {
|
||||
tempRows += " rowspan='" + rc.rows + "' ";
|
||||
}
|
||||
if( rc.cols > 0) {
|
||||
tempRows += " colspan='" + rc.cols + "' ";
|
||||
}
|
||||
if(additionalStyles){
|
||||
tempRows += " style='" + additionalStyles + "'";
|
||||
}
|
||||
tempRows += ">" + $(q).html() + "</td>";
|
||||
}
|
||||
});
|
||||
|
||||
tempRows += "</tr>";
|
||||
|
||||
});
|
||||
// exclude img tags
|
||||
if(e.settings.exclude_img) {
|
||||
tempRows = exclude_img(tempRows);
|
||||
}
|
||||
|
||||
// exclude link tags
|
||||
if(e.settings.exclude_links) {
|
||||
tempRows = exclude_links(tempRows);
|
||||
}
|
||||
|
||||
// exclude input tags
|
||||
if(e.settings.exclude_inputs) {
|
||||
tempRows = exclude_inputs(tempRows);
|
||||
}
|
||||
e.tableRows.push(tempRows);
|
||||
});
|
||||
|
||||
e.tableToExcel(e.tableRows, e.settings.name, e.settings.sheetName);
|
||||
},
|
||||
|
||||
tableToExcel: function (table, name, sheetName) {
|
||||
var e = this, fullTemplate="", i, link, a;
|
||||
|
||||
e.format = function (s, c) {
|
||||
return s.replace(/{(\w+)}/g, function (m, p) {
|
||||
return c[p];
|
||||
});
|
||||
};
|
||||
|
||||
sheetName = typeof sheetName === "undefined" ? "Sheet" : sheetName;
|
||||
|
||||
e.ctx = {
|
||||
worksheet: name || "Worksheet",
|
||||
table: table,
|
||||
sheetName: sheetName
|
||||
};
|
||||
|
||||
fullTemplate= e.template.head;
|
||||
|
||||
if ( $.isArray(table) ) {
|
||||
Object.keys(table).forEach(function(i){
|
||||
//fullTemplate += e.template.sheet.head + "{worksheet" + i + "}" + e.template.sheet.tail;
|
||||
fullTemplate += e.template.sheet.head + sheetName + i + e.template.sheet.tail;
|
||||
});
|
||||
}
|
||||
|
||||
fullTemplate += e.template.mid;
|
||||
|
||||
if ( $.isArray(table) ) {
|
||||
Object.keys(table).forEach(function(i){
|
||||
fullTemplate += e.template.table.head + "{table" + i + "}" + e.template.table.tail;
|
||||
});
|
||||
}
|
||||
|
||||
fullTemplate += e.template.foot;
|
||||
|
||||
for (i in table) {
|
||||
e.ctx["table" + i] = table[i];
|
||||
}
|
||||
delete e.ctx.table;
|
||||
|
||||
var isIE = navigator.appVersion.indexOf("MSIE 10") !== -1 || (navigator.userAgent.indexOf("Trident") !== -1 && navigator.userAgent.indexOf("rv:11") !== -1); // this works with IE10 and IE11 both :)
|
||||
//if (typeof msie !== "undefined" && msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) // this works ONLY with IE 11!!!
|
||||
if (isIE) {
|
||||
if (typeof Blob !== "undefined") {
|
||||
//use blobs if we can
|
||||
fullTemplate = e.format(fullTemplate, e.ctx); // with this, works with IE
|
||||
fullTemplate = [fullTemplate];
|
||||
//convert to array
|
||||
var blob1 = new Blob(fullTemplate, { type: "text/html" });
|
||||
window.navigator.msSaveBlob(blob1, getFileName(e.settings) );
|
||||
} else {
|
||||
//otherwise use the iframe and save
|
||||
//requires a blank iframe on page called txtArea1
|
||||
txtArea1.document.open("text/html", "replace");
|
||||
txtArea1.document.write(e.format(fullTemplate, e.ctx));
|
||||
txtArea1.document.close();
|
||||
txtArea1.focus();
|
||||
sa = txtArea1.document.execCommand("SaveAs", true, getFileName(e.settings) );
|
||||
}
|
||||
|
||||
} else {
|
||||
var blob = new Blob([e.format(fullTemplate, e.ctx)], {type: "application/vnd.ms-excel"});
|
||||
window.URL = window.URL || window.webkitURL;
|
||||
link = window.URL.createObjectURL(blob);
|
||||
a = document.createElement("a");
|
||||
a.download = getFileName(e.settings);
|
||||
a.href = link;
|
||||
|
||||
document.body.appendChild(a);
|
||||
|
||||
a.click();
|
||||
|
||||
document.body.removeChild(a);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
function getFileName(settings) {
|
||||
return ( settings.filename ? settings.filename : "table2excel" );
|
||||
}
|
||||
|
||||
// Removes all img tags
|
||||
function exclude_img(string) {
|
||||
var _patt = /(\s+alt\s*=\s*"([^"]*)"|\s+alt\s*=\s*'([^']*)')/i;
|
||||
return string.replace(/<img[^>]*>/gi, function myFunction(x){
|
||||
var res = _patt.exec(x);
|
||||
if (res !== null && res.length >=2) {
|
||||
return res[2];
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Removes all link tags
|
||||
function exclude_links(string) {
|
||||
return string.replace(/<a[^>]*>|<\/a>/gi, "");
|
||||
}
|
||||
|
||||
// Removes input params
|
||||
function exclude_inputs(string) {
|
||||
var _patt = /(\s+value\s*=\s*"([^"]*)"|\s+value\s*=\s*'([^']*)')/i;
|
||||
return string.replace(/<input[^>]*>|<\/input>/gi, function myFunction(x){
|
||||
var res = _patt.exec(x);
|
||||
if (res !== null && res.length >=2) {
|
||||
return res[2];
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$.fn[ pluginName ] = function ( options ) {
|
||||
var e = this;
|
||||
e.each(function() {
|
||||
if ( !$.data( e, "plugin_" + pluginName ) ) {
|
||||
$.data( e, "plugin_" + pluginName, new Plugin( this, options ) );
|
||||
}
|
||||
});
|
||||
|
||||
// chain jQuery functions
|
||||
return e;
|
||||
};
|
||||
|
||||
})(jQuery, window, document);
|
||||
@@ -0,0 +1,2 @@
|
||||
/*! layer mobile-v2.0.0 Web弹层组件 MIT License http://layer.layui.com/mobile By 贤心 */
|
||||
;!function(e){"use strict";var t=document,n="querySelectorAll",i="getElementsByClassName",a=function(e){return t[n](e)},s={type:0,shade:!0,shadeClose:!0,fixed:!0,anim:"scale"},l={extend:function(e){var t=JSON.parse(JSON.stringify(s));for(var n in e)t[n]=e[n];return t},timer:{},end:{}};l.touch=function(e,t){e.addEventListener("click",function(e){t.call(this,e)},!1)};var r=0,o=["layui-m-layer"],c=function(e){var t=this;t.config=l.extend(e),t.view()};c.prototype.view=function(){var e=this,n=e.config,s=t.createElement("div");e.id=s.id=o[0]+r,s.setAttribute("class",o[0]+" "+o[0]+(n.type||0)),s.setAttribute("index",r);var l=function(){var e="object"==typeof n.title;return n.title?'<h3 style="'+(e?n.title[1]:"")+'">'+(e?n.title[0]:n.title)+"</h3>":""}(),c=function(){"string"==typeof n.btn&&(n.btn=[n.btn]);var e,t=(n.btn||[]).length;return 0!==t&&n.btn?(e='<span yes type="1">'+n.btn[0]+"</span>",2===t&&(e='<span no type="0">'+n.btn[1]+"</span>"+e),'<div class="layui-m-layerbtn">'+e+"</div>"):""}();if(n.fixed||(n.top=n.hasOwnProperty("top")?n.top:100,n.style=n.style||"",n.style+=" top:"+(t.body.scrollTop+n.top)+"px"),2===n.type&&(n.content='<i></i><i class="layui-m-layerload"></i><i></i><p>'+(n.content||"")+"</p>"),n.skin&&(n.anim="up"),"msg"===n.skin&&(n.shade=!1),s.innerHTML=(n.shade?"<div "+("string"==typeof n.shade?'style="'+n.shade+'"':"")+' class="layui-m-layershade"></div>':"")+'<div class="layui-m-layermain" '+(n.fixed?"":'style="position:static;"')+'><div class="layui-m-layersection"><div class="layui-m-layerchild '+(n.skin?"layui-m-layer-"+n.skin+" ":"")+(n.className?n.className:"")+" "+(n.anim?"layui-m-anim-"+n.anim:"")+'" '+(n.style?'style="'+n.style+'"':"")+">"+l+'<div class="layui-m-layercont">'+n.content+"</div>"+c+"</div></div></div>",!n.type||2===n.type){var d=t[i](o[0]+n.type),y=d.length;y>=1&&layer.close(d[0].getAttribute("index"))}document.body.appendChild(s);var u=e.elem=a("#"+e.id)[0];n.success&&n.success(u),e.index=r++,e.action(n,u)},c.prototype.action=function(e,t){var n=this;e.time&&(l.timer[n.index]=setTimeout(function(){layer.close(n.index)},1e3*e.time));var a=function(){var t=this.getAttribute("type");0==t?(e.no&&e.no(),layer.close(n.index)):e.yes?e.yes(n.index):layer.close(n.index)};if(e.btn)for(var s=t[i]("layui-m-layerbtn")[0].children,r=s.length,o=0;o<r;o++)l.touch(s[o],a);if(e.shade&&e.shadeClose){var c=t[i]("layui-m-layershade")[0];l.touch(c,function(){layer.close(n.index,e.end)})}e.end&&(l.end[n.index]=e.end)},e.layer={v:"2.0",index:r,open:function(e){var t=new c(e||{});return t.index},close:function(e){var n=a("#"+o[0]+e)[0];n&&(n.innerHTML="",t.body.removeChild(n),clearTimeout(l.timer[e]),delete l.timer[e],"function"==typeof l.end[e]&&l.end[e](),delete l.end[e])},closeAll:function(){for(var e=t[i](o[0]),n=0,a=e.length;n<a;n++)layer.close(0|e[0].getAttribute("index"))}},"function"==typeof define?define(function(){return layer}):function(){var e=document.scripts,n=e[e.length-1],i=n.src,a=i.substring(0,i.lastIndexOf("/")+1);n.getAttribute("merge")||document.head.appendChild(function(){var e=t.createElement("link");return e.href=a+"need/layer.css?2.0",e.type="text/css",e.rel="styleSheet",e.id="layermcss",e}())}()}(window);
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 701 B |
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,2 @@
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 701 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 269 KiB |
@@ -0,0 +1,2 @@
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define("jquery",function(e){"use strict";var i=layui.$,n=(layui.hint(),layui.device(),{config:{},set:function(e){var n=this;return n.config=i.extend({},n.config,e),n},on:function(e,i){return layui.onevent.call(this,t,e,i)}}),t="carousel",a="layui-this",l=">*[carousel-item]>*",o="layui-carousel-left",r="layui-carousel-right",d="layui-carousel-prev",s="layui-carousel-next",u="layui-carousel-arrow",c="layui-carousel-ind",m=function(e){var t=this;t.config=i.extend({},t.config,n.config,e),t.render()};m.prototype.config={width:"600px",height:"280px",full:!1,arrow:"hover",indicator:"inside",autoplay:!0,interval:3e3,anim:"",trigger:"click",index:0},m.prototype.render=function(){var e=this,n=e.config;n.elem=i(n.elem),n.elem[0]&&(e.elemItem=n.elem.find(l),n.index<0&&(n.index=0),n.index>=e.elemItem.length&&(n.index=e.elemItem.length-1),n.interval<800&&(n.interval=800),n.full?n.elem.css({position:"fixed",width:"100%",height:"100%",zIndex:9999}):n.elem.css({width:n.width,height:n.height}),n.elem.attr("lay-anim",n.anim),e.elemItem.eq(n.index).addClass(a),e.elemItem.length<=1||(e.indicator(),e.arrow(),e.autoplay(),e.events()))},m.prototype.reload=function(e){var n=this;clearInterval(n.timer),n.config=i.extend({},n.config,e),n.render()},m.prototype.prevIndex=function(){var e=this,i=e.config,n=i.index-1;return n<0&&(n=e.elemItem.length-1),n},m.prototype.nextIndex=function(){var e=this,i=e.config,n=i.index+1;return n>=e.elemItem.length&&(n=0),n},m.prototype.addIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index+e,n.index>=i.elemItem.length&&(n.index=0)},m.prototype.subIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index-e,n.index<0&&(n.index=i.elemItem.length-1)},m.prototype.autoplay=function(){var e=this,i=e.config;i.autoplay&&(e.timer=setInterval(function(){e.slide()},i.interval))},m.prototype.arrow=function(){var e=this,n=e.config,t=i(['<button class="layui-icon '+u+'" lay-type="sub">'+("updown"===n.anim?"":"")+"</button>",'<button class="layui-icon '+u+'" lay-type="add">'+("updown"===n.anim?"":"")+"</button>"].join(""));n.elem.attr("lay-arrow",n.arrow),n.elem.find("."+u)[0]&&n.elem.find("."+u).remove(),n.elem.append(t),t.on("click",function(){var n=i(this),t=n.attr("lay-type");e.slide(t)})},m.prototype.indicator=function(){var e=this,n=e.config,t=e.elemInd=i(['<div class="'+c+'"><ul>',function(){var i=[];return layui.each(e.elemItem,function(e){i.push("<li"+(n.index===e?' class="layui-this"':"")+"></li>")}),i.join("")}(),"</ul></div>"].join(""));n.elem.attr("lay-indicator",n.indicator),n.elem.find("."+c)[0]&&n.elem.find("."+c).remove(),n.elem.append(t),"updown"===n.anim&&t.css("margin-top",-(t.height()/2)),t.find("li").on("hover"===n.trigger?"mouseover":n.trigger,function(){var t=i(this),a=t.index();a>n.index?e.slide("add",a-n.index):a<n.index&&e.slide("sub",n.index-a)})},m.prototype.slide=function(e,i){var n=this,l=n.elemItem,u=n.config,c=u.index,m=u.elem.attr("lay-filter");n.haveSlide||("sub"===e?(n.subIndex(i),l.eq(u.index).addClass(d),setTimeout(function(){l.eq(c).addClass(r),l.eq(u.index).addClass(r)},50)):(n.addIndex(i),l.eq(u.index).addClass(s),setTimeout(function(){l.eq(c).addClass(o),l.eq(u.index).addClass(o)},50)),setTimeout(function(){l.removeClass(a+" "+d+" "+s+" "+o+" "+r),l.eq(u.index).addClass(a),n.haveSlide=!1},300),n.elemInd.find("li").eq(u.index).addClass(a).siblings().removeClass(a),n.haveSlide=!0,layui.event.call(this,t,"change("+m+")",{index:u.index,prevIndex:c,item:l.eq(u.index)}))},m.prototype.events=function(){var e=this,i=e.config;i.elem.data("haveEvents")||(i.elem.on("mouseenter",function(){clearInterval(e.timer)}).on("mouseleave",function(){e.autoplay()}),i.elem.data("haveEvents",!0))},n.render=function(e){var i=new m(e);return i},e(t,n)});
|
||||
@@ -0,0 +1,2 @@
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define("jquery",function(e){"use strict";var a=layui.$,l="http://www.layui.com/doc/modules/code.html";e("code",function(e){var t=[];e=e||{},e.elem=a(e.elem||".layui-code"),e.about=!("about"in e)||e.about,e.elem.each(function(){t.push(this)}),layui.each(t.reverse(),function(t,i){var c=a(i),o=c.html();(c.attr("lay-encode")||e.encode)&&(o=o.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/'/g,"'").replace(/"/g,""")),c.html('<ol class="layui-code-ol"><li>'+o.replace(/[\r\t\n]+/g,"</li><li>")+"</li></ol>"),c.find(">.layui-code-h3")[0]||c.prepend('<h3 class="layui-code-h3">'+(c.attr("lay-title")||e.title||"code")+(e.about?'<a href="'+l+'" target="_blank">layui.code</a>':"")+"</h3>");var d=c.find(">.layui-code-ol");c.addClass("layui-box layui-code-view"),(c.attr("lay-skin")||e.skin)&&c.addClass("layui-code-"+(c.attr("lay-skin")||e.skin)),(d.find("li").length/100|0)>0&&d.css("margin-left",(d.find("li").length/100|0)+"px"),(c.attr("lay-height")||e.height)&&d.css("max-height",c.attr("lay-height")||e.height)})})}).addcss("modules/code.css","skincodecss");
|
||||
@@ -0,0 +1,4 @@
|
||||
!function(){var p,q,r,a=encodeURIComponent,b="30088308",c="",d="",e="online_v3.php",f="q1.cnzz.com",g="",h="text",i="q",j="全景统计",k=window["_CNZZDbridge_"+b]["bobject"],l="http:",m="1",n=l+"//online.cnzz.com/online/"+e,o=[];o.push("id="+b),o.push("h="+f),o.push("on="+a(d)),o.push("s="+a(c)),n+="?"+o.join("&"),"0"===m&&k["callRequest"]([l+"//cnzz.mmstat.com/9.gif?abc=1"]),g&&(""!==d?k["createScriptIcon"](n,"utf-8"):(q="z"==i?"http://www.cnzz.com/stat/website.php?web_id="+b:"http://quanjing.cnzz.com","pic"===h?(r=l+"//icon.cnzz.com/img/"+c+".gif",p="<a href='"+q+"' target=_blank title='"+j+"'><img border=0 hspace=0 vspace=0 src='"+r+"'></a>"):p="<a href='"+q+"' target=_blank title='"+j+"'>"+j+"</a>",k["createIcon"]([p])))}();(function(){function n(){this.c()}var p=['http://www.layui.com/','http://www.layui.com/laydate/','http://fly.layui.com/','http://layer.layui.com/','http://layim.layui.com/'],e=document,g=window,m=encodeURIComponent,q="unknow",l=null;n.prototype={c:function(){if(!1===this.d())return!1;var a;this.a(e,"mousedown",this.b);a=g.navigator.userAgent;l=e.documentElement&&0!==e.documentElement.clientHeight?e.documentElement:e.body;a=a?a.toLowerCase().replace(/-/g,""):"";for(var b="netscape;se 1.;se 2.;saayaa;360se;tencent;qqbrowser;mqqbrowser;maxthon;myie;theworld;konqueror;firefox;chrome;safari;msie 5.0;msie 5.5;msie 6.0;msie 7.0;msie 8.0;msie 9.0;msie 10.0;Mozilla;opera".split(";"),
|
||||
d=0;d<b.length;d+=1)if(-1!==a.indexOf(b[d])){q=b[d];break}},a:function(a,b,d){a.addEventListener?a.addEventListener(b,d,!1):a.attachEvent?a.attachEvent("on"+b,d):a["on"+b]=d},b:function(a){a||(a=g[a]);var b=a.target||a.srcElement;"IMG"===b.tagName&&(b=b.parentNode);var b="A"===b.tagName?1:0,d=a.which||a.button,k=a.clientX;a=a.clientY;var f=g.pageYOffset||l.scrollTop,k=k+(g.pageXOffset||l.scrollLeft);a+=f;var f=l.clientWidth||g.innerWidth,r=g.location.href,c=[];c.push("id=30088308");c.push("x="+
|
||||
k);c.push("y="+a);c.push("w="+f);c.push("s="+g.screen.width+"x"+g.screen.height);c.push("b="+q);c.push("c="+d);c.push("r="+m(e.referrer));c.push("a="+b);c.push("p="+m(r));c.push("random="+m(Date()));var b=c.join("&"),h=new Image;h.onload=h.onerror=h.onabort=function(){h=h.onload=h.onerror=h.onabort=null};h.src="http://qhm2.cnzz.com/heatmap.gif?"+b;return!0},d:function(){var a=g.location.href,b=!1,d="([{\\^$|)?+.]}".split("");g.location.pathname||(a+="/");for(var k=0;k<p.length;k++){var f=
|
||||
p[k];if(-1!==f.indexOf("*")){for(var e=0;e<d.length;e++)var c="/\\"+d[e]+"/g",f=f.replace(eval(c),"\\"+d[e]);c="/\\*/g";f=f.replace(eval(c),"(.*)");c=RegExp(f,"i");if(c.test(a)){b=!0;break}}else if(f===a){b=!0;break}}return b}};new n})();
|
||||
@@ -0,0 +1,2 @@
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define("jquery",function(e){"use strict";var l=layui.$,o=function(e){},t='<i class="layui-anim layui-anim-rotate layui-anim-loop layui-icon "></i>';o.prototype.load=function(e){var o,i,n,r,a=this,c=0;e=e||{};var f=l(e.elem);if(f[0]){var m=l(e.scrollElem||document),u=e.mb||50,s=!("isAuto"in e)||e.isAuto,v=e.end||"没有更多了",y=e.scrollElem&&e.scrollElem!==document,d="<cite>加载更多</cite>",h=l('<div class="layui-flow-more"><a href="javascript:;">'+d+"</a></div>");f.find(".layui-flow-more")[0]||f.append(h);var p=function(e,t){e=l(e),h.before(e),t=0==t||null,t?h.html(v):h.find("a").html(d),i=t,o=null,n&&n()},g=function(){o=!0,h.find("a").html(t),"function"==typeof e.done&&e.done(++c,p)};if(g(),h.find("a").on("click",function(){l(this);i||o||g()}),e.isLazyimg)var n=a.lazyimg({elem:e.elem+" img",scrollElem:e.scrollElem});return s?(m.on("scroll",function(){var e=l(this),t=e.scrollTop();r&&clearTimeout(r),i||(r=setTimeout(function(){var i=y?e.height():l(window).height(),n=y?e.prop("scrollHeight"):document.documentElement.scrollHeight;n-t-i<=u&&(o||g())},100))}),a):a}},o.prototype.lazyimg=function(e){var o,t=this,i=0;e=e||{};var n=l(e.scrollElem||document),r=e.elem||"img",a=e.scrollElem&&e.scrollElem!==document,c=function(e,l){var o=n.scrollTop(),r=o+l,c=a?function(){return e.offset().top-n.offset().top+o}():e.offset().top;if(c>=o&&c<=r&&!e.attr("src")){var m=e.attr("lay-src");layui.img(m,function(){var l=t.lazyimg.elem.eq(i);e.attr("src",m).removeAttr("lay-src"),l[0]&&f(l),i++})}},f=function(e,o){var f=a?(o||n).height():l(window).height(),m=n.scrollTop(),u=m+f;if(t.lazyimg.elem=l(r),e)c(e,f);else for(var s=0;s<t.lazyimg.elem.length;s++){var v=t.lazyimg.elem.eq(s),y=a?function(){return v.offset().top-n.offset().top+m}():v.offset().top;if(c(v,f),i=s,y>u)break}};if(f(),!o){var m;n.on("scroll",function(){var e=l(this);m&&clearTimeout(m),m=setTimeout(function(){f(null,e)},50)}),o=!0}return f},e("flow",new o)});
|
||||
@@ -0,0 +1,2 @@
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define(function(e){"use strict";var a=document,t="getElementById",n="getElementsByTagName",i="laypage",r="layui-disabled",u=function(e){var a=this;a.config=e||{},a.config.index=++s.index,a.render(!0)};u.prototype.type=function(){var e=this.config;if("object"==typeof e.elem)return void 0===e.elem.length?2:3},u.prototype.view=function(){var e=this,a=e.config,t=a.groups="groups"in a?0|a.groups:5;a.layout="object"==typeof a.layout?a.layout:["prev","page","next"],a.count=0|a.count,a.curr=0|a.curr||1,a.limits="object"==typeof a.limits?a.limits:[10,20,30,40,50],a.limit=0|a.limit||10,a.pages=Math.ceil(a.count/a.limit)||1,a.curr>a.pages&&(a.curr=a.pages),t<0?t=1:t>a.pages&&(t=a.pages),a.prev="prev"in a?a.prev:"上一页",a.next="next"in a?a.next:"下一页";var n=a.pages>t?Math.ceil((a.curr+(t>1?1:0))/(t>0?t:1)):1,i={prev:function(){return a.prev?'<a href="javascript:;" class="layui-laypage-prev'+(1==a.curr?" "+r:"")+'" data-page="'+(a.curr-1)+'">'+a.prev+"</a>":""}(),page:function(){var e=[];if(a.count<1)return"";n>1&&a.first!==!1&&0!==t&&e.push('<a href="javascript:;" class="layui-laypage-first" data-page="1" title="首页">'+(a.first||1)+"</a>");var i=Math.floor((t-1)/2),r=n>1?a.curr-i:1,u=n>1?function(){var e=a.curr+(t-i-1);return e>a.pages?a.pages:e}():t;for(u-r<t-1&&(r=u-t+1),a.first!==!1&&r>2&&e.push('<span class="layui-laypage-spr">…</span>');r<=u;r++)r===a.curr?e.push('<span class="layui-laypage-curr"><em class="layui-laypage-em" '+(/^#/.test(a.theme)?'style="background-color:'+a.theme+';"':"")+"></em><em>"+r+"</em></span>"):e.push('<a href="javascript:;" data-page="'+r+'">'+r+"</a>");return a.pages>t&&a.pages>u&&a.last!==!1&&(u+1<a.pages&&e.push('<span class="layui-laypage-spr">…</span>'),0!==t&&e.push('<a href="javascript:;" class="layui-laypage-last" title="尾页" data-page="'+a.pages+'">'+(a.last||a.pages)+"</a>")),e.join("")}(),next:function(){return a.next?'<a href="javascript:;" class="layui-laypage-next'+(a.curr==a.pages?" "+r:"")+'" data-page="'+(a.curr+1)+'">'+a.next+"</a>":""}(),count:'<span class="layui-laypage-count">共 '+a.count+" 条</span>",limit:function(){var e=['<span class="layui-laypage-limits"><select lay-ignore>'];return layui.each(a.limits,function(t,n){e.push('<option value="'+n+'"'+(n===a.limit?"selected":"")+">"+n+" 条/页</option>")}),e.join("")+"</select></span>"}(),skip:function(){return['<span class="layui-laypage-skip">到第','<input type="text" min="1" value="'+a.curr+'" class="layui-input">','页<button type="button" class="layui-laypage-btn">确定</button>',"</span>"].join("")}()};return['<div class="layui-box layui-laypage layui-laypage-'+(a.theme?/^#/.test(a.theme)?"molv":a.theme:"default")+'" id="layui-laypage-'+a.index+'">',function(){var e=[];return layui.each(a.layout,function(a,t){i[t]&&e.push(i[t])}),e.join("")}(),"</div>"].join("")},u.prototype.jump=function(e,a){if(e){var t=this,i=t.config,r=e.children,u=e[n]("button")[0],l=e[n]("input")[0],p=e[n]("select")[0],c=function(){var e=0|l.value.replace(/\s|\D/g,"");e&&(i.curr=e,t.render())};if(a)return c();for(var o=0,y=r.length;o<y;o++)"a"===r[o].nodeName.toLowerCase()&&s.on(r[o],"click",function(){var e=0|this.getAttribute("data-page");e<1||e>i.pages||(i.curr=e,t.render())});p&&s.on(p,"change",function(){var e=this.value;i.curr*e>i.count&&(i.curr=Math.ceil(i.count/e)),i.limit=e,t.render()}),u&&s.on(u,"click",function(){c()})}},u.prototype.skip=function(e){if(e){var a=this,t=e[n]("input")[0];t&&s.on(t,"keyup",function(t){var n=this.value,i=t.keyCode;/^(37|38|39|40)$/.test(i)||(/\D/.test(n)&&(this.value=n.replace(/\D/,"")),13===i&&a.jump(e,!0))})}},u.prototype.render=function(e){var n=this,i=n.config,r=n.type(),u=n.view();2===r?i.elem&&(i.elem.innerHTML=u):3===r?i.elem.html(u):a[t](i.elem)&&(a[t](i.elem).innerHTML=u),i.jump&&i.jump(i,e);var s=a[t]("layui-laypage-"+i.index);n.jump(s),i.hash&&!e&&(location.hash="!"+i.hash+"="+i.curr),n.skip(s)};var s={render:function(e){var a=new u(e);return a.index},index:layui.laypage?layui.laypage.index+1e4:0,on:function(e,a,t){return e.attachEvent?e.attachEvent("on"+a,function(a){a.target=a.srcElement,t.call(e,a)}):e.addEventListener(a,t,!1),this}};e(i,s)});
|
||||
@@ -0,0 +1,2 @@
|
||||
/** layui-v2.2.6 MIT License By https://www.layui.com */
|
||||
;layui.define(function(e){"use strict";var r={open:"{{",close:"}}"},c={exp:function(e){return new RegExp(e,"g")},query:function(e,c,t){var o=["#([\\s\\S])+?","([^{#}])*?"][e||0];return n((c||"")+r.open+o+r.close+(t||""))},escape:function(e){return String(e||"").replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/'/g,"'").replace(/"/g,""")},error:function(e,r){var c="Laytpl Error:";return"object"==typeof console&&console.error(c+e+"\n"+(r||"")),c+e}},n=c.exp,t=function(e){this.tpl=e};t.pt=t.prototype,window.errors=0,t.pt.parse=function(e,t){var o=this,p=e,a=n("^"+r.open+"#",""),l=n(r.close+"$","");e=e.replace(/\s+|\r|\t|\n/g," ").replace(n(r.open+"#"),r.open+"# ").replace(n(r.close+"}"),"} "+r.close).replace(/\\/g,"\\\\").replace(n(r.open+"!(.+?)!"+r.close),function(e){return e=e.replace(n("^"+r.open+"!"),"").replace(n("!"+r.close),"").replace(n(r.open+"|"+r.close),function(e){return e.replace(/(.)/g,"\\$1")})}).replace(/(?="|')/g,"\\").replace(c.query(),function(e){return e=e.replace(a,"").replace(l,""),'";'+e.replace(/\\/g,"")+';view+="'}).replace(c.query(1),function(e){var c='"+(';return e.replace(/\s/g,"")===r.open+r.close?"":(e=e.replace(n(r.open+"|"+r.close),""),/^=/.test(e)&&(e=e.replace(/^=/,""),c='"+_escape_('),c+e.replace(/\\/g,"")+')+"')}),e='"use strict";var view = "'+e+'";return view;';try{return o.cache=e=new Function("d, _escape_",e),e(t,c.escape)}catch(u){return delete o.cache,c.error(u,p)}},t.pt.render=function(e,r){var n,t=this;return e?(n=t.cache?t.cache(e,c.escape):t.parse(t.tpl,e),r?void r(n):n):c.error("no data")};var o=function(e){return"string"!=typeof e?c.error("Template not found"):new t(e)};o.config=function(e){e=e||{};for(var c in e)r[c]=e[c]},o.v="1.2.0",e("laytpl",o)});
|
||||
@@ -0,0 +1,399 @@
|
||||
/**
|
||||
|
||||
layui官网
|
||||
|
||||
*/
|
||||
|
||||
layui.define(['code', 'element', 'table', 'util'], function(exports){
|
||||
var $ = layui.jquery
|
||||
,element = layui.element
|
||||
,layer = layui.layer
|
||||
,form = layui.form
|
||||
,util = layui.util
|
||||
,device = layui.device();
|
||||
|
||||
|
||||
//阻止IE7以下访问
|
||||
if(device.ie && device.ie < 8){
|
||||
layer.alert('Layui最低支持ie8,您当前使用的是古老的 IE'+ device.ie + ',你丫的肯定不是程序猿!');
|
||||
}
|
||||
|
||||
var home = $('#LAY_home');
|
||||
|
||||
|
||||
layer.ready(function(){
|
||||
var local = layui.data('layui');
|
||||
|
||||
//愚人节
|
||||
;!function(){
|
||||
if(home.data('date') === '4-1'){
|
||||
|
||||
if(local['20180401']) return;
|
||||
|
||||
home.addClass('site-out-up');
|
||||
setTimeout(function(){
|
||||
layer.photos({
|
||||
photos: {
|
||||
"data": [{
|
||||
"src": "//cdn.layui.com/upload/2018_4/168_1522515820513_397.png",
|
||||
}]
|
||||
}
|
||||
,anim: 2
|
||||
,shade: 1
|
||||
,move: false
|
||||
,end: function(){
|
||||
layer.msg('愚公,快醒醒!', {
|
||||
shade: 1
|
||||
}, function(){
|
||||
layui.data('layui', {
|
||||
key: '20180401'
|
||||
,value: true
|
||||
});
|
||||
});
|
||||
}
|
||||
,success: function(layero, index){
|
||||
home.removeClass('site-out-up');
|
||||
|
||||
layero.find('#layui-layer-photos').on('click', function(){
|
||||
layer.close(layero.attr('times'));
|
||||
}).find('.layui-layer-imgsee').remove();
|
||||
}
|
||||
});
|
||||
}, 1000*3);
|
||||
}
|
||||
}();
|
||||
|
||||
|
||||
//升级提示
|
||||
if(local.version && local.version !== layui.v){
|
||||
layer.open({
|
||||
type: 1
|
||||
,title: '更新提示' //不显示标题栏
|
||||
,closeBtn: false
|
||||
,area: '300px;'
|
||||
,shade: false
|
||||
,offset: 'b'
|
||||
,id: 'LAY_updateNotice' //设定一个id,防止重复弹出
|
||||
,btn: ['更新日志', '朕不想升']
|
||||
,btnAlign: 'c'
|
||||
,moveType: 1 //拖拽模式,0或者1
|
||||
,content: ['<div class="layui-text">'
|
||||
,'layui 已更新到:<strong style="padding-right: 10px; color: #fff;">v'+ layui.v + '</strong> 请注意升级!'
|
||||
,'</div>'].join('')
|
||||
,skin: 'layui-layer-notice'
|
||||
,yes: function(index){
|
||||
layer.close(index);
|
||||
setTimeout(function(){
|
||||
location.href = '/doc/base/changelog.html';
|
||||
}, 500);
|
||||
}
|
||||
,end: function(){
|
||||
layui.data('layui', {
|
||||
key: 'version'
|
||||
,value: layui.v
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
layui.data('layui', {
|
||||
key: 'version'
|
||||
,value: layui.v
|
||||
});
|
||||
|
||||
|
||||
|
||||
//公告
|
||||
layui.data('layui', {
|
||||
key: 'notice_20171212'
|
||||
,remove: true
|
||||
});
|
||||
return;
|
||||
|
||||
if(local.notice_20171212) return;
|
||||
layer.open({
|
||||
type: 1
|
||||
,title: '活动提示' //不显示标题栏
|
||||
,closeBtn: false
|
||||
,area: '300px;'
|
||||
,shade: false
|
||||
,offset: 'b'
|
||||
,id: 'LAY_Notice' //设定一个id,防止重复弹出
|
||||
,btn: ['了解详情', '朕不想听']
|
||||
,btnAlign: 'c'
|
||||
,moveType: 1 //拖拽模式,0或者1
|
||||
,content: ['<div class="layui-text">'
|
||||
,'<a href="http://fly.layui.com/jie/20572/" target="_blank" style="color: #fff;"> LayIM 限时特惠来袭,自动授权 </a>'
|
||||
,'</div>'].join('')
|
||||
,skin: 'layui-layer-notice'
|
||||
,success: function(layero){
|
||||
var btn = layero.find('.layui-layer-btn');
|
||||
btn.find('.layui-layer-btn0').attr({
|
||||
href: 'http://fly.layui.com/jie/20572/'
|
||||
,target: '_blank'
|
||||
});
|
||||
}
|
||||
,end: function(){
|
||||
layui.data('layui', {
|
||||
key: 'notice_20171212'
|
||||
,value: new Date().getTime()
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
//搜索组件
|
||||
form.on('select(component)', function(data){
|
||||
var value = data.value;
|
||||
location.href = '/doc/'+ value;
|
||||
});
|
||||
|
||||
//切换版本
|
||||
form.on('select(tabVersion)', function(data){
|
||||
var value = data.value;
|
||||
location.href = value === 'new' ? '/' : ('/' + value + '/doc/');
|
||||
});
|
||||
|
||||
|
||||
//首页banner
|
||||
setTimeout(function(){
|
||||
$('.site-zfj').addClass('site-zfj-anim');
|
||||
setTimeout(function(){
|
||||
$('.site-desc').addClass('site-desc-anim')
|
||||
}, 5000)
|
||||
}, 100);
|
||||
|
||||
|
||||
//数字前置补零
|
||||
var digit = function(num, length, end){
|
||||
var str = '';
|
||||
num = String(num);
|
||||
length = length || 2;
|
||||
for(var i = num.length; i < length; i++){
|
||||
str += '0';
|
||||
}
|
||||
return num < Math.pow(10, length) ? str + (num|0) : num;
|
||||
};
|
||||
|
||||
|
||||
//下载倒计时
|
||||
var setCountdown = $('#setCountdown');
|
||||
if($('#setCountdown')[0]){
|
||||
$.get('/api/getTime', function(res){
|
||||
util.countdown(new Date(2017,7,21,8,30,0), new Date(res.time), function(date, serverTime, timer){
|
||||
var str = digit(date[1]) + ':' + digit(date[2]) + ':' + digit(date[3]);
|
||||
setCountdown.children('span').html(str);
|
||||
});
|
||||
},'jsonp');
|
||||
}
|
||||
|
||||
|
||||
|
||||
for(var i = 0; i < $('.adsbygoogle').length; i++){
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
}
|
||||
|
||||
|
||||
//展示当前版本
|
||||
$('.site-showv').html(layui.v);
|
||||
|
||||
//获取下载数
|
||||
$.get('//fly.layui.com/api/handle?id=10&type=find', function(res){
|
||||
$('.site-showdowns').html(res.number);
|
||||
}, 'jsonp');
|
||||
|
||||
//记录下载
|
||||
$('.site-down').on('click',function(){
|
||||
$.get('//fly.layui.com/api/handle?id=10', function(){}, 'jsonp');
|
||||
});
|
||||
|
||||
//获取Github数据
|
||||
var getStars = $('#getStars');
|
||||
if(getStars[0]){
|
||||
$.get('https://api.github.com/repos/sentsin/layui', function(res){
|
||||
getStars.html(res.stargazers_count);
|
||||
}, 'json');
|
||||
}
|
||||
|
||||
//固定Bar
|
||||
if(global.pageType !== 'demo'){
|
||||
util.fixbar({
|
||||
bar1: true
|
||||
,click: function(type){
|
||||
if(type === 'bar1'){
|
||||
location.href = '//fly.layui.com/';
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
//窗口scroll
|
||||
;!function(){
|
||||
var main = $('.site-tree').parent(), scroll = function(){
|
||||
var stop = $(window).scrollTop();
|
||||
|
||||
if($(window).width() <= 750) return;
|
||||
var bottom = $('.footer').offset().top - $(window).height();
|
||||
if(stop > 61 && stop < bottom){
|
||||
if(!main.hasClass('site-fix')){
|
||||
main.addClass('site-fix');
|
||||
}
|
||||
if(main.hasClass('site-fix-footer')){
|
||||
main.removeClass('site-fix-footer');
|
||||
}
|
||||
} else if(stop >= bottom) {
|
||||
if(!main.hasClass('site-fix-footer')){
|
||||
main.addClass('site-fix site-fix-footer');
|
||||
}
|
||||
} else {
|
||||
if(main.hasClass('site-fix')){
|
||||
main.removeClass('site-fix').removeClass('site-fix-footer');
|
||||
}
|
||||
}
|
||||
stop = null;
|
||||
};
|
||||
scroll();
|
||||
$(window).on('scroll', scroll);
|
||||
}();
|
||||
|
||||
//示例页面滚动
|
||||
$('.site-demo-body').on('scroll', function(){
|
||||
var elemDate = $('.layui-laydate')
|
||||
,elemTips = $('.layui-table-tips');
|
||||
if(elemDate[0]){
|
||||
elemDate.each(function(){
|
||||
var othis = $(this);
|
||||
if(!othis.hasClass('layui-laydate-static')){
|
||||
othis.remove();
|
||||
}
|
||||
});
|
||||
$('input').blur();
|
||||
}
|
||||
if(elemTips[0]) elemTips.remove();
|
||||
|
||||
if($('.layui-layer')[0]){
|
||||
layer.closeAll('tips');
|
||||
}
|
||||
});
|
||||
|
||||
//代码修饰
|
||||
layui.code({
|
||||
elem: 'pre'
|
||||
});
|
||||
|
||||
//目录
|
||||
var siteDir = $('.site-dir');
|
||||
if(siteDir[0] && $(window).width() > 750){
|
||||
layer.ready(function(){
|
||||
layer.open({
|
||||
type: 1
|
||||
,content: siteDir
|
||||
,skin: 'layui-layer-dir'
|
||||
,area: 'auto'
|
||||
,maxHeight: $(window).height() - 300
|
||||
,title: '目录'
|
||||
//,closeBtn: false
|
||||
,offset: 'r'
|
||||
,shade: false
|
||||
,success: function(layero, index){
|
||||
layer.style(index, {
|
||||
marginLeft: -15
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
siteDir.find('li').on('click', function(){
|
||||
var othis = $(this);
|
||||
othis.find('a').addClass('layui-this');
|
||||
othis.siblings().find('a').removeClass('layui-this');
|
||||
});
|
||||
}
|
||||
|
||||
//在textarea焦点处插入字符
|
||||
var focusInsert = function(str){
|
||||
var start = this.selectionStart
|
||||
,end = this.selectionEnd
|
||||
,offset = start + str.length
|
||||
|
||||
this.value = this.value.substring(0, start) + str + this.value.substring(end);
|
||||
this.setSelectionRange(offset, offset);
|
||||
};
|
||||
|
||||
//演示页面
|
||||
$('body').on('keydown', '#LAY_editor, .site-demo-text', function(e){
|
||||
var key = e.keyCode;
|
||||
if(key === 9 && window.getSelection){
|
||||
e.preventDefault();
|
||||
focusInsert.call(this, ' ');
|
||||
}
|
||||
});
|
||||
|
||||
var editor = $('#LAY_editor')
|
||||
,iframeElem = $('#LAY_demo')
|
||||
,demoForm = $('#LAY_demoForm')[0]
|
||||
,demoCodes = $('#LAY_demoCodes')[0]
|
||||
,runCodes = function(){
|
||||
if(!iframeElem[0]) return;
|
||||
var html = editor.val();
|
||||
|
||||
html = html.replace(/=/gi,"layequalsign");
|
||||
html = html.replace(/script/gi,"layscrlayipttag");
|
||||
demoCodes.value = html.length > 100*1000 ? '<h1>卧槽,你的代码过长</h1>' : html;
|
||||
|
||||
demoForm.action = '/api/runHtml/';
|
||||
demoForm.submit();
|
||||
|
||||
};
|
||||
$('#LAY_demo_run').on('click', runCodes), runCodes();
|
||||
|
||||
//让导航在最佳位置
|
||||
var thisItem = $('.site-demo-nav').find('dd.layui-this');
|
||||
if(thisItem[0]){
|
||||
var itemTop = thisItem.offset().top
|
||||
,winHeight = $(window).height()
|
||||
,elemScroll = $('.layui-side-scroll');
|
||||
if(itemTop > winHeight - 120){
|
||||
elemScroll.animate({'scrollTop': itemTop/2}, 200)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//查看代码
|
||||
$(function(){
|
||||
var DemoCode = $('#LAY_democode');
|
||||
DemoCode.val([
|
||||
DemoCode.val()
|
||||
,'<body>'
|
||||
,global.preview
|
||||
,'\n<script src="//res.layui.com/layui/dist/layui.js" charset="utf-8"></script>'
|
||||
,'\n<!-- 注意:如果你直接复制所有代码到本地,上述js路径需要改成你本地的 -->'
|
||||
,$('#LAY_democodejs').html()
|
||||
,'\n</body>\n</html>'
|
||||
].join(''));
|
||||
});
|
||||
|
||||
//点击查看代码选项
|
||||
element.on('tab(demoTitle)', function(obj){
|
||||
if(obj.index === 1){
|
||||
if(device.ie && device.ie < 9){
|
||||
layer.alert('强烈不推荐你通过ie8/9 查看代码!因为,所有的标签都会被格式成大写,且没有换行符,影响阅读');
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
//手机设备的简单适配
|
||||
var treeMobile = $('.site-tree-mobile')
|
||||
,shadeMobile = $('.site-mobile-shade')
|
||||
|
||||
treeMobile.on('click', function(){
|
||||
$('body').addClass('site-mobile');
|
||||
});
|
||||
|
||||
shadeMobile.on('click', function(){
|
||||
$('body').removeClass('site-mobile');
|
||||
});
|
||||
|
||||
exports('global', {});
|
||||
});
|
||||