Skip to content

Instantly share code, notes, and snippets.

@mido1983
Created March 4, 2018 10:07
Show Gist options
  • Select an option

  • Save mido1983/40b1eaf9f8c7c5d7068a7361adae687b to your computer and use it in GitHub Desktop.

Select an option

Save mido1983/40b1eaf9f8c7c5d7068a7361adae687b to your computer and use it in GitHub Desktop.
AngularJS buttons using history.back()
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