I using visjs, i want to hide the first image of the first div, how i can do that, i used ng-show but it doesnt work??
storyboard.drawTimeLine = function (start, end, color, marg,km) {
var elm = angular.element(document.querySelector('#vv'));
elm.html("");
item = {};
item.id = start + '@' + end;
item.start = start;
item.end = end;
item.title = elm.append($compile(
'<div style="padding-left:0px;padding-bottom: 9px "><img src="../../../../assets/img/fuel.png"> -</div>'+
'<div style="padding-left:0px;padding-bottom: 9px "><img src="../../../../assets/img/oil.png"> -</div>')($scope)).html();
;
item.style ="top:"+ marg +"px;height:14px;background-color:" + color + ";border-color:" + color;
};