Fix #1067 Corrected exports links regexp
This commit is contained in:
parent
d7ec050f34
commit
6c89187f95
1 changed files with 1 additions and 2 deletions
|
@ -144,13 +144,12 @@ function handleClientVars(message)
|
||||||
require('./pad_impexp').padimpexp.init();
|
require('./pad_impexp').padimpexp.init();
|
||||||
|
|
||||||
//change export urls when the slider moves
|
//change export urls when the slider moves
|
||||||
var export_rev_regex = /(\/\d+)?\/export/
|
|
||||||
BroadcastSlider.onSlider(function(revno)
|
BroadcastSlider.onSlider(function(revno)
|
||||||
{
|
{
|
||||||
// export_links is a jQuery Array, so .each is allowed.
|
// export_links is a jQuery Array, so .each is allowed.
|
||||||
export_links.each(function()
|
export_links.each(function()
|
||||||
{
|
{
|
||||||
this.setAttribute('href', this.href.replace(export_rev_regex, '/' + revno + '/export'));
|
this.setAttribute('href', this.href.replace( /(.+?)\/\w+\/(\d+\/)?export/ , '$1/' + padId + '/' + revno + '/export'));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue