From 93297684cc046612fc4ca803e897ecc8150cdc57 Mon Sep 17 00:00:00 2001 From: "Shane M. Pelletier" Date: Fri, 29 Nov 2013 23:54:01 -0400 Subject: [PATCH] docs(tutorial): enlarge clickable area of tutorial nav buttons Change position of and
  • tags in tutorial nav buttons partial. This allows the full area of the button to be clicked rather than just the text. Closes #5074 --- docs/src/templates/js/docs.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/templates/js/docs.js b/docs/src/templates/js/docs.js index 6231c59ddaed..331a781e64e5 100644 --- a/docs/src/templates/js/docs.js +++ b/docs/src/templates/js/docs.js @@ -273,10 +273,10 @@ docsApp.directive.docTutorialNav = function(templateMerge) { element.addClass('btn-group'); element.addClass('tutorial-nav'); element.append(templateMerge( - '
  • Previous
  • \n' + - '
  • Live Demo
  • \n' + - '
  • Code Diff
  • \n' + - '
  • Next
  • ', props)); + '
  • Previous
  • \n' + + '
  • Live Demo
  • \n' + + '
  • Code Diff
  • \n' + + '
  • Next
  • ', props)); } }; };