From 6b7a1b82bc26bbf4640506a9a3cf37ebf254d3d2 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Fri, 4 Apr 2014 12:06:40 +0100 Subject: [PATCH] chore(docs/app/tutorials): improve helper directives --- docs/app/src/tutorials.js | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/app/src/tutorials.js b/docs/app/src/tutorials.js index 4b3c43c7..7abcee3f 100644 --- a/docs/app/src/tutorials.js +++ b/docs/app/src/tutorials.js @@ -22,7 +22,7 @@ angular.module('tutorials', []) element.addClass('tutorial-nav'); element.append(templateMerge( '
  • Previous
  • \n' + - '
  • Live Demo
  • \n' + + '
  • Live Demo
  • \n' + '
  • Code Diff
  • \n' + '
  • Next
  • ', props)); } @@ -36,13 +36,15 @@ angular.module('tutorials', []) 'step': '@docTutorialReset' }, template: - '
    ' + - '

    Workspace Reset Instructions ➤

    ' + + '

    Workspace Reset Instructions ➤

    \n' + + '
    \n' + + '

    Reset the workspace to step {{step}}.

    ' + + '

    git checkout -f step-{{step}}

    \n' + + '

    Refresh your browser or check out this step online: '+ + 'Step {{step}} Live Demo.

    \n' + '
    \n' + - '
    \n' + - '
  • Reset the workspace to step {{step}}.

    ' + - '
    git checkout -f step-{{step}}
  • \n' + - '
  • Refresh your browser or check the app out on Angular\'s server.

  • \n' + - '
    \n' + '

    The most important changes are listed below. You can see the full diff on ' + + 'GitHub\n' + + '

    ' }; });