yandex-ui / noscript

Noscript: JavaScript MVC Framework for building SPA
http://yandex-ui.github.io/noscript/
MIT License
34 stars 22 forks source link

`ns.page.history.replace` превращает историю в каламбур #656

Closed chestozo closed 6 years ago

chestozo commented 6 years ago

Right now this is what we have:

ns.page.history._current = 'url3';
ns.page.history._history = [ 'url1', 'url2' ];

ns.page.history.replace('url4');

// This is what you get:
// ns.page.history._current = 'url4';
// ns.page.history._history = [ 'url1', 'url4' ];

// And this is what you SHOULD get:
// ns.page.history._current = 'url4';
// ns.page.history._history = [ 'url1', 'url2' ];