middleman / middleman-livereload

LiveReload support for Middleman
http://middlemanapp.com
MIT License
117 stars 39 forks source link

live reload when on 404 page #61

Closed Nowaker closed 10 years ago

Nowaker commented 10 years ago
  1. Go to /x.html
  2. Get 404 page
  3. Create /source/x.html

Expected: catch the change and live reload. Actual: no reload is performed as 404 page doesn't have livereload JavaScripts.

<html><body><h1>File Not Found</h1><p>/x.html</p></body>

Related to #58 but definitely a different feature, hence a new issue.

tdreyno commented 10 years ago

Fixed here (https://github.com/middleman/middleman/commit/fe5247d9d9482858f6753531ad1e135afe6366b5), will be in next middleman v3 release.

Nowaker commented 10 years ago

@tdreyno Thanks.