Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/landing/collection/blockcollection/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/landing/collection/blockcollection/src/blockcollection.js

import {BaseCollection} from 'landing.collection.basecollection';

/**
 * @memberOf BX.Landing.Collection
 */
export class BlockCollection extends BaseCollection
{
	getByNode(node: HTMLElement): ?BX.Landing.Block
	{
		return this.find((block) => block.node === node);
	}

	getByChildNode(node: HTMLElement): ?BX.Landing.Block
	{
		return this.find((block) => block.node.contains(node));
	}
}