I have a scenario where i need to show a div when the timer total value is < 0 Here is the directive code:
Code:
angular.module('iSourcingApp.tpModule')
.directive('stopWatch', function($state) {
    return {
        restrict: 'A',
        replace: false,
        scope: {
            name: "=",
            timeOfInterview: "=",
            onSend: '&',
...