We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a41c26 + 1b4aed1 commit 6540dbdCopy full SHA for 6540dbd
lib/NavigatableMixin.js
@@ -8,7 +8,7 @@ var Environment = require('./environment');
8
* NavigatableMixin
9
*
10
* A mixin for a component which operates in context of a router and can
11
- * navigate to a different route using `navigate(path, cb)` method.
+ * navigate to a different route using `navigate(path, navigation, cb)` method.
12
*/
13
var NavigatableMixin = {
14
@@ -27,8 +27,8 @@ var NavigatableMixin = {
27
return this._getNavigable().getPath();
28
},
29
30
- navigate: function(path, cb) {
31
- return this._getNavigable().navigate(path, cb);
+ navigate: function(path, navigation, cb) {
+ return this._getNavigable().navigate(path, navigation, cb);
32
33
34
makeHref: function(path) {
0 commit comments