I'm building my first Angular app, but am having a bit of trouble getting something to work. I have a video container that will be hidden until $scope.video.show = true; I'm trying to set this value when I click on a link. I'm trying to make that happen in a directive. Any help would be appreciated.
html:
<div ng-controller="AppCtrl">
    <div ng-cloak 
         ng-class="{'show':video.show, 'hide':!video.show}">
                  // youtube iframe content, for example
    </div>
    <div>
        <ul>
            <li>
                <h3>Video Headline 1</h3>
                <button type="button" 
                    video-show 
                    data-video-id="jR4lLJu_-wE">PLAY NOW ⟩</button>
            </li>
            <li>
                <h3>Video Headline 2</h3>
                <button type="button" 
                    video-show 
                    data-video-id="sd0f9as8df7">PLAY NOW ⟩</button>
            </li>
        </ul>
    </div>
</div>
javascript:
var thisViewModel = angular.module("savings-video", [])
.controller('SavingsVideoController', function($scope) {
    $scope.video = {
        show : false,
        videoId : ""
    };
};
thisViewModel.directive("videoShow", function(){
    return{
        restrict: 'A',
        link: function(scope , element){
            element.bind("click", function(e){
                var $this = angular.element(element);
                $this.closest('li').siblings().addClass('hide');   // hide the other one
                $this.closest('li').removeClass('hide');           // keep me open
                scope.video.show = true;  // doesn't work.  
                     // what is the best way to do this?
            });
        }
    }
});
 
     
     
     
     
    