Include querystring when force reload of a bare template view.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-08-16 15:53:44 -04:00
parent 1034a3056d
commit 418aa14e2a
2 changed files with 2 additions and 1 deletions

View File

@@ -23,6 +23,7 @@
- Increase gunicorn's timeout from 30 seconds to 120.
- Display error when attempting to recalculate the page count of an empty
document (document stub that has no document version).
- Include querystring when force reload of a bare template view.
3.0.1 (2018-07-08)
=================

View File

@@ -13,7 +13,7 @@
* current location's path as the new hash
*/
document.write('<script type="text/undefined">')
var currentPath = window.location.pathname;
var currentPath = window.location.pathname + window.location.search;
window.location = '/#' + currentPath;
}
</script>