mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00

Fixes: #5533
Fixes: #5548
Revert "Switch from kadira:flow-router to ostrio:flow-router-extra"
This reverts commit 718c1a393d
.
9 lines
462 B
JavaScript
9 lines
462 B
JavaScript
Router.prototype.url = function() {
|
|
// We need to remove the leading base path, or "/", as it will be inserted
|
|
// automatically by `Meteor.absoluteUrl` as documented in:
|
|
// http://docs.meteor.com/#/full/meteor_absoluteurl
|
|
var completePath = this.path.apply(this, arguments);
|
|
var basePath = this._basePath || '/';
|
|
var pathWithoutBase = completePath.replace(new RegExp('^' + basePath + '\/|(\/)'), '');
|
|
return Meteor.absoluteUrl(pathWithoutBase);
|
|
};
|