подправил стили для кода примеров. Добавил std, v2, tools, v2.ll.

This commit is contained in:
Aleksey Chichenkov 2018-09-25 15:14:18 +03:00
parent 2c27a64ea0
commit 73f3735bb6
54 changed files with 1579 additions and 342 deletions

View file

@ -0,0 +1,62 @@
/**
* @class static
* @memberof Models.Model
* @extends item
*/
var static_data = function () {
/**
*
* @public
* @function label_attrs
* @memberof Models.Model.static
* @returns {v2.set(v2.string)}
*/
this.label_attrs = function () {
};
/**
*
* @public
* @function popup_attrs
* @memberof Models.Model.static
* @returns {v2.set(v2.string)}
*/
this.popup_attrs = function () {
};
/**
*
* @public
* @function is_container
* @memberof Models.Model.static
* @returns {v2.boolean}
*/
this.is_container = function () {
};
/**
*
* @public
* @function base_component_type
* @memberof Models.Model.static
* @returns {v2.model_type}
*/
this.base_component_type = function () {
};
/**
*
* @public
* @function touch
* @memberof Models.Model.static
* @returns {tools.promise}
*/
this.touch = function () {
}
};