Add the "replace" option to "router.navigate()"

See Backbone documentation for the option here:
http://backbonejs.org/#Router-navigate
This commit is contained in:
Morris Allison III
2015-09-14 12:50:31 -04:00
parent 7a3ca1f0b8
commit ec7f772c2b

View File

@@ -19,6 +19,7 @@ declare module Backbone {
interface NavigateOptions {
trigger?: boolean;
replace?: boolean;
}
interface RouterOptions {