Skip to content

Instantly share code, notes, and snippets.

@elegantcoder
Created July 30, 2014 05:02
Show Gist options
  • Save elegantcoder/f76b4494bd210316adec to your computer and use it in GitHub Desktop.
Save elegantcoder/f76b4494bd210316adec to your computer and use it in GitHub Desktop.
sidebar-isActive.js
angular.module('sidebar', [])
.controller('SidebarCtrl', function ($scope, $route) {
$scope.isActive = function (url) {
return $route.current.$$route.controller === $route.routes[url].controller;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment