Use core routes in js too
This commit is contained in:
parent
16dacba490
commit
4954e46bb2
1 changed files with 2 additions and 2 deletions
|
@ -54,9 +54,9 @@ OC={
|
|||
var isCore=OC.coreApps.indexOf(app)!=-1;
|
||||
var link=OC.webroot;
|
||||
if((file.substring(file.length-3) == 'php' || file.substring(file.length-3) == 'css') && !isCore){
|
||||
link+='/?app=' + app;
|
||||
link+='/index.php/apps/' + app;
|
||||
if (file != 'index.php') {
|
||||
link+='&getfile=';
|
||||
link+='/';
|
||||
if(type){
|
||||
link+=encodeURI(type + '/');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue