We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b777a4 commit 1174d51Copy full SHA for 1174d51
2 files changed
src/constant.js
@@ -48,7 +48,7 @@ module.exports = exports = {
48
FILES_PLAYER_AUTORUN: 'autorun',
49
FILES_PLAYER_CLOSEBUTTON: 'closebutton',
50
FILES_PLAYER_HIDECONTROLS: 'hidecontrols',
51
- FILES_PLAYER_SHOWLOGO: 'showlogo',
+ FILES_PLAYER_LOGO: 'logo',
52
};
53
54
exports.FIELDS_TO_STRINGIFY = [
src/custom/cappasity-info-post.js
@@ -3,6 +3,7 @@ const {
3
FILES_PLAYER_AUTORUN,
4
FILES_PLAYER_CLOSEBUTTON,
5
FILES_PLAYER_HIDECONTROLS,
6
+ FILES_PLAYER_LOGO,
7
} = require('../constant.js');
8
9
const defaultPlayerOpts = {
@@ -23,6 +24,11 @@ const defaultPlayerOpts = {
23
24
description: 'Hide player controls',
25
paid: true,
26
},
27
+ [FILES_PLAYER_LOGO]: {
28
+ type: 'boolean',
29
+ default: 1,
30
+ description: 'Show logo',
31
+ },
32
33
34
const defaultWindowOptions = {
0 commit comments