Lines Matching refs:container

4332 	  var container = options.container || document.body;
4347 container.appendChild(parent);
4421 var container = this._container = createContainer(config);
4426 append(container, svg);
4745 var container;
4752 container = this._elementRegistry._elements[element.id];
4754 if (!container) {
4758 forEach([ container.gfx, container.secondaryGfx ], function(gfx) {
4780 …this._eventBus.fire('element.marker.update', { element: element, gfx: container.gfx, marker: marke…
5632 container = id && elements[id];
5634 if (container) {
5637 attr(container.gfx, ELEMENT_ID, '');
5639 if (container.secondaryGfx) {
5640 attr(container.secondaryGfx, ELEMENT_ID, '');
5686 var container = this._elements[id];
5689 container.secondaryGfx = gfx;
5691 container.gfx = gfx;
5721 var container = this._elements[id];
5722 return container && container.element;
5758 container = map[id],
5759 element = container.element,
5760 gfx = container.gfx;
5787 var container = map[id],
5788 element = container.element,
5789 gfx = container.gfx;
5813 var container = this._elements[id];
5814 return container && (secondary ? container.secondaryGfx : container.gfx);
15312 function handleFlowElementsContainer(container, context) { argument
15313 handleFlowElements(container.flowElements, context);
15315 if (container.laneSets) {
15316 handleLaneSets(container.laneSets, context);
16201 var container = this._container,
16202 parentNode = container.parentNode;
16210 parentNode.removeChild(container);
16213 BaseViewer.prototype._init = function(container, moddle, options) { argument
16227 canvas: assign({}, options.canvas, { container: container }),
16234 if (options && options.container) {
16235 this.attachTo(options.container);
16253 var container = domify('<div class="bjs-container"></div>');
16255 assign(container.style, {
16261 return container;
16337 function addProjectLogo(container) { argument
16351 container.appendChild(linkElement);
21189 var container = this._getOverlayContainer(search.element, true);
21192 if (container) {
21193 …return search.type ? filter(container.overlays, matchPattern({ type: search.type })) : container.o…
21288 var container = self._getOverlayContainer(overlay.element, true);
21300 if (container) {
21301 var idx = container.overlays.indexOf(overlay);
21303 container.overlays.splice(idx, 1);
21328 Overlays.prototype._updateOverlayContainer = function(container) { argument
21329 var element = container.element,
21330 html = container.html;
21346 attr$1(container.html, 'data-container-id', element.id);
21398 var container = { class in AnonymousFunctionf8d14cd11cc00
21404 this._updateOverlayContainer(container);
21406 this._overlayContainers.push(container);
21408 return container;
21431 var container = find(this._overlayContainers, function(c) {
21436 if (!container && !raw) {
21440 return container;
21594 var container = self._getOverlayContainer(element);
21596 if (container) {
21597 remove$2(container.html);
21598 var i = self._overlayContainers.indexOf(container);
21611 var container = self._getOverlayContainer(element, true);
21613 if (container) {
21614 forEach(container.overlays, function(overlay) {
21618 self._updateOverlayContainer(container);
21626 var container = self._getOverlayContainer(e.element, true);
21627 if (container) {
21628 classes$1(container.html)[e.add ? 'add' : 'remove'](e.marker);
25655 var node = event.container;
30501 this.container = options.container;
30541 container = this.container;
30626 container.appendChild(parent);
30691 var container,
30702 container = startContainer;
30710 container = textNode;
30728 container = startContainer;
30732 if (container && offset !== undefined) {
30736 self.setSelection(container, offset);
30893 TextBox.prototype.setSelection = function(container, offset) { argument
30896 if (container === null) {
30899 range.setStart(container, offset);
30900 range.setEnd(container, offset);
30927 container: canvas.getContainer(),
31007 containerBounds = this._textbox.container.getBoundingClientRect();
31335 container;
31339 container = query('[data-group=' + grouping + ']', html);
31340 if (!container) {
31341 container = domify('<div class="group" data-group="' + grouping + '"></div>');
31342 html.appendChild(container);
31345 container.appendChild(control);
32304 current.container = this._createContainer();
32307 current.container.appendChild(
32313 current.container.appendChild(
32321 this._attachContainer(current.container, parent, position.cursor);
32338 remove$2(this._current.container);
32339 this._current.container = null;
32349 return !!this._current.container;
32491 var container = domify('<div class="djs-popup">'),
32495 assign(container.style, {
32502 classes$1(container).add(className);
32504 return container;
32514 PopupMenu.prototype._attachContainer = function(container, parent, cursor) { argument
32518 delegate.bind(container, '.entry' ,'click', function(event) {
32522 this._updateScale(container);
32525 parent.appendChild(container);
32528 this._assureIsInbounds(container, cursor);
32540 PopupMenu.prototype._updateScale = function(container) { argument
32568 setTransform(container, 'scale(' + scale + ')');
32580 PopupMenu.prototype._assureIsInbounds = function(container, cursor) { argument
32584 var containerX = container.offsetLeft,
32585 containerY = container.offsetTop,
32586 containerWidth = container.scrollWidth,
32587 containerHeight = container.scrollHeight,
32618 assign(container.style, { left: left, top: top }, { visibility: 'visible', 'z-index': 1000 });
48494 BpmnUpdater.prototype.getLaneSet = function(container) { argument
48499 if (is$1(container, 'bpmn:Lane')) {
48500 laneSet = container.childLaneSet;
48504 container.childLaneSet = laneSet;
48505 laneSet.$parent = container;
48512 if (is$1(container, 'bpmn:Participant')) {
48513 container = container.processRef;
48517 laneSets = container.get('laneSets');
48522 laneSet.$parent = container;
54500 var container = this._container = domify(Palette.HTML_MARKUP);
54502 parentContainer.appendChild(container);
54504 delegate.bind(container, ELEMENT_SELECTOR, 'click', function(event) {
54516 componentEvent.bind(container, 'mousedown', function(event) {
54521 delegate.bind(container, ENTRY_SELECTOR, 'dragstart', function(event) {
54528 container: container
54554 container = this._container;
54560 var cls = classes$1(container);
54592 var container = query('[data-group=' + grouping + ']', entriesContainer);
54593 if (!container) {
54594 container = domify('<div class="group" data-group="' + grouping + '"></div>');
54595 entriesContainer.appendChild(container);
54605 container.appendChild(control);
54850 var container = canvas.getActiveLayer(),
54862 append(container, frame);