Browse Source

Merge pull request #1194 from bgrozev/disable-suspend-video

config: Disable suspend video by default.
master
hristoterezov 9 years ago
parent
commit
8c3fb54d3d
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      config.js

+ 3
- 1
config.js View File

@@ -76,5 +76,7 @@ var config = { // eslint-disable-line no-unused-vars
76 76
     // If true - all users without token will be considered guests and all users
77 77
     // with token will be considered non-guests. Only guests will be allowed to
78 78
     // edit their profile.
79
-    enableUserRolesBasedOnToken: false
79
+    enableUserRolesBasedOnToken: false,
80
+    // Suspending video might cause problems with audio playback. Disabling until these are fixed.
81
+    disableSuspendVideo: true
80 82
 };

Loading…
Cancel
Save