Skip to content

Instantly share code, notes, and snippets.

View frenchtoast747's full-sized avatar

Aaron Boman frenchtoast747

View GitHub Profile
app.directive('backButton', ['$window', function($window) {
return {
restrict: 'A',
link: function (scope, elem, attrs) {
elem.bind('click', function () {
$window.history.back();
});
}
};
}]);