Skip to content
Snippets Groups Projects
Commit fece1eee authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Fixing backend javascript

parent ad199881
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,13 @@ function sgJobsGoToPage(uid, path) {
} else {
var tree = top.Ext.getCmp('typo3-pagetree');
if (tree) {
var elements = path.split('/');
var pageNode = tree.activeTree.getNodeById(elements[elements.length - 1]);
tree.activeTree.selectPath(path);
if (pageNode) {
tree.activeTree.commandProvider.singleClick(pageNode, tree.activeTree);
}
}
var separator = '?';
if (top.currentSubScript.indexOf('?') !== -1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment