Skip to content

Instantly share code, notes, and snippets.

@frenchtoast747
Forked from jakemmarsh/directives.js
Last active February 18, 2016 14:19
Show Gist options
  • Save frenchtoast747/c1d9bebeb833701feac2 to your computer and use it in GitHub Desktop.
Save frenchtoast747/c1d9bebeb833701feac2 to your computer and use it in GitHub Desktop.
app.directive('backButton', ['$window', function($window) {
return {
restrict: 'A',
link: function (scope, elem, attrs) {
elem.bind('click', function () {
$window.history.back();
});
}
};
}]);
<a href back-button>back</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment