Skip to content

Commit

Permalink
Add Help and Fullscreen window button
Browse files Browse the repository at this point in the history
  • Loading branch information
rednoah committed Aug 17, 2023
1 parent 2544c3f commit a74d1b3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions package/synology-dsm7/target/client/FileBot.NodeClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@ Ext.define("FileBot.NodeClient.AppWindow", {
height: '100%',
frameborder: '0'
}
}],
tools: [{
id:'fullscreen',
qtip: 'Open in New Tab',
handler: function(event, element, panel) {
window.open('/webman/3rdparty/filebot-node/index.html', '_blank')
}
}, {
id:'help',
qtip: 'Open Help',
handler: function(event, element, panel) {
window.open('https://www.filebot.net/syno/support.html', '_blank')
}
}]
}, config);

Expand Down

0 comments on commit a74d1b3

Please sign in to comment.