|
@@ -1,6 +1,6 @@
|
|
|
/*!-----------------------------------------------------------------------------
|
|
|
* Vegas - Fullscreen Backgrounds and Slideshows.
|
|
|
- * v2.0.4 - built 2015-03-15
|
|
|
+ * v2.0.4 - built 2015-03-18
|
|
|
* Licensed under the MIT License.
|
|
|
* http://vegas.jaysalvat.com/
|
|
|
* ----------------------------------------------------------------------------
|
|
@@ -284,12 +284,7 @@
|
|
|
delay = duration / 10,
|
|
|
volume = video.volume - 0.09;
|
|
|
|
|
|
- var src = video.getElementsByTagName('source')[0].src;
|
|
|
-
|
|
|
if (volume > 0) {
|
|
|
- if (src === 'http://localhost/personnel/vegas/dev/videos/bg2.mp4') {
|
|
|
- console.log('----', Math.round(volume * 100));
|
|
|
- }
|
|
|
video.volume = volume;
|
|
|
|
|
|
setTimeout(function () {
|
|
@@ -305,13 +300,7 @@
|
|
|
delay = duration / 10,
|
|
|
volume = video.volume + 0.09;
|
|
|
|
|
|
- var src = video.getElementsByTagName('source')[0].src;
|
|
|
-
|
|
|
if (volume < 1) {
|
|
|
- if (src === 'http://localhost/personnel/vegas/dev/videos/bg2.mp4') {
|
|
|
- console.log('++++', Math.round(volume * 100));
|
|
|
- }
|
|
|
-
|
|
|
video.volume = volume;
|
|
|
|
|
|
setTimeout(function () {
|