'use strict';
angular.module('simpleLiveApp'
.directive('cellar2Sidebar', ['$location', function () {
return {
templateUrl: './js/app/directives/sidebar/cellar2Sidebar.html',
restrict: 'E',
replace: true } }]);
I am working on a project and i want on the Directive above to add this JQuery code:
$( document ).ready(function() {
$(".navbar-toggle").click(function(){
$(".fa").toggleClass("fa-indent fa-outdent");
});
});