/**
 * @since Tue Nov 13 2018
 * @author Zia ur-Rehman - Klean
 * 
 * For time being is used to handle these 2 images
 */


import { Component, Input, OnInit } from '@angular/core'

import { HelperService }	from '@k-services/svc.helper'
import { find } from 'rxjs/operator/find';
import { isFunction } from 'babel-types';

@Component({
	selector: 'block-multi-images',
	templateUrl: './tpl.multi-images.pug',
	styleUrls: ['./sty.multi-images.scss']
})
export class BlockMultiImagesComponent implements OnInit {

	// Vars
	@Input('block') block
	server: string
	constructor(
		private _helper: HelperService
	) { 	
		// this.block.content.find()


		// this.block.content.map(function(key, index) {
		// 	console.log('key', key)
		// });

	}


	// Lifecycle hooks
	ngOnInit() { 
		this.server = this._helper.server
	}


	// Functions

}