openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #12853
[Merge] lp:~crichter/openlp/bugfixing into lp:openlp
rimach has proposed merging lp:~crichter/openlp/bugfixing into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
For more details, see:
https://code.launchpad.net/~crichter/openlp/bugfixing/+merge/83347
For newer versions of webkit playing videos doesnt work anymore.
(tested with ubuntu oneiric and webkit 534.34)
--
https://code.launchpad.net/~crichter/openlp/bugfixing/+merge/83347
Your team OpenLP Core is requested to review the proposed merge of lp:~crichter/openlp/bugfixing into lp:openlp.
=== modified file 'openlp/core/lib/htmlbuilder.py'
--- openlp/core/lib/htmlbuilder.py 2011-10-29 09:33:48 +0000
+++ openlp/core/lib/htmlbuilder.py 2011-11-24 21:30:32 +0000
@@ -121,8 +121,8 @@
}
switch(state){
case 'init':
- vid.src = path;
- vid2.src = path;
+ vid.src = 'file:///' + path;
+ vid2.src = 'file:///' + path;
if(loop == null) loop = false;
vid.looping = loop;
vid2.looping = loop;
Follow ups