Skip to content

Commit a74d1b3

Browse files
committed
Add Help and Fullscreen window button
1 parent 2544c3f commit a74d1b3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

package/synology-dsm7/target/client/FileBot.NodeClient.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,19 @@ Ext.define("FileBot.NodeClient.AppWindow", {
3131
height: '100%',
3232
frameborder: '0'
3333
}
34+
}],
35+
tools: [{
36+
id:'fullscreen',
37+
qtip: 'Open in New Tab',
38+
handler: function(event, element, panel) {
39+
window.open('/webman/3rdparty/filebot-node/index.html', '_blank')
40+
}
41+
}, {
42+
id:'help',
43+
qtip: 'Open Help',
44+
handler: function(event, element, panel) {
45+
window.open('https://www.filebot.net/syno/support.html', '_blank')
46+
}
3447
}]
3548
}, config);
3649

0 commit comments

Comments
 (0)