Lines Matching refs:tags

554 Sidebar.prototype.addDataEntry = function(tags, width, height, title, data)  argument
556 return this.addEntry(tags, mxUtils.bind(this, function()
572 var tags = (img.title != null) ? img.title : '';
574 if (img.tags != null)
576 tags += ' ' + img.tags;
579 if (data != null && tags.length > 0)
581 this.addEntry(tags, mxUtils.bind(this, function()
595 else if (img.xml != null && tags.length > 0)
597 this.addEntry(tags, mxUtils.bind(this, function()
620 Sidebar.prototype.addEntry = function(tags, fn) argument
622 if (this.taglist != null && tags != null && tags.length > 0)
630 var tmp = tags.toLowerCase().replace(/[\/\,\(\)]/g, ' ').split(' ');
750 Sidebar.prototype.filterTags = function(tags) argument
752 if (tags != null)
754 var arr = tags.split(' ');
3583 …reateVertexTemplateEntry = function(style, width, height, value, title, showLabel, showTitle, tags) argument
3585 if (tags != null && title != null)
3587 tags += ' ' + title;
3590 tags = (tags != null && tags.length > 0) ? tags : ((title != null) ? title.toLowerCase() : '');
3592 return this.addEntry(tags, mxUtils.bind(this, function()
3638 …geTemplateEntry = function(style, width, height, value, title, showLabel, tags, allowCellsInserted… argument
3640 tags = (tags != null && tags.length > 0) ? tags : title.toLowerCase();
3642 return this.addEntry(tags, mxUtils.bind(this, function()
3824 Sidebar.prototype.addImagePalette = function(id, title, prefix, postfix, items, titles, tags) argument
3842 }))(items[i], (titles != null) ? titles[i] : null, (tags != null) ? tags[items[i]] : null);
3853 var tags = packageName.split('.');
3855 for (var i = 1; i < tags.length; i++)
3857 tags[i] = tags[i].replace(/_/g, ' ')
3860 tags.push(stencilName.replace(/_/g, ' '));
3864 tags.push(moreTags);
3867 return tags.slice(1, tags.length);
3873 …lPalette = function(id, title, stencilFile, style, ignore, onInit, scale, tags, customFns, groupId) argument
3895 var tmpTags = (tags != null) ? tags[stencilName] : null;