1. 12 Jul, 2016 5 commits
  2. 10 Jul, 2016 1 commit
  3. 09 Jul, 2016 1 commit
  4. 08 Jul, 2016 4 commits
  5. 06 Jul, 2016 2 commits
  6. 05 Jul, 2016 1 commit
  7. 04 Jul, 2016 1 commit
  8. 29 Jun, 2016 7 commits
  9. 28 Jun, 2016 6 commits
  10. 27 Jun, 2016 3 commits
  11. 26 Jun, 2016 3 commits
    • Chris Rebert's avatar
      Fix docs asset file paths in /grunt/configBridge.json (#20178) · ead5ed6d
      Chris Rebert authored
      Previously, when running the docs locally, the site, rooted at:
          http://localhost:9001/
      would reference docs assets using relative URLs such as:
          /../assets/js/vendor/anchor.min.js
      which is equivalent to:
          http://localhost:9001/../assets/js/vendor/anchor.min.js
      which is nonsense, since the root directory has no parent directory.
      Apparently browsers silently ignore this extra '..', hence why this wasn't noticed until now.
      But if you adjust Jekyll's `baseurl` setting, this mistake causes incorrect URLs to get generated.
      
      This commit corrects the problem by removing the extra '../' from the paths.
      
      These paths are also referenced in the Gruntfile, where the fix actually allows us to simplify the code.
      Previously, in the Gruntfile, we were doing, e.g.:
          path.join('./docs/assets', '../assets/js/vendor/anchor.min.js')
      which calculates to:
          ./docs/assets/../assets/js/vendor/anchor.min.js
      which can be simplified to:
          ./docs/assets/js/vendor/anchor.min.js
      So we can remove the '/assets' suffix from the left argument
      and the '../' prefix from the right argument
      and still obtain the same result.
      ead5ed6d
    • Chris Rebert's avatar
      grunt dist docs · 6cceeec6
      Chris Rebert authored
      [skip sauce]
      [skip validator]
      6cceeec6
    • Chris Rebert's avatar
      b73b0c55
  12. 24 Jun, 2016 2 commits
  13. 22 Jun, 2016 2 commits
  14. 20 Jun, 2016 2 commits