Source: core/kekule.root.js

/**
 * Defines root namespace of Kekule.js.
 */

/**
 * @namespace
 * @description Root namespace of Kekule library.
 */
var Kekule = {
	LIBNAME: 'Kekule.js',
	LIBNAME_CORE: 'Kekule',
	VERSION: '0.6.0',
	// Whether auto find title and description text for object property
	/** @ignore */
	PROP_AUTO_TITLE: true
};

/**
 * Root object of JavaScript environment, usually window.
 */
var $jsRoot = this;

Kekule.scriptSrcInfo = $jsRoot['__$kekule_load_info__'];