1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-23 02:04:34 +02:00

Added z-index to video-box to prevent anything from overlaying it.

This commit is contained in:
Steve Heffernan 2010-05-21 19:47:50 -07:00
parent 60af6bcd63
commit 96eb60cba3
2 changed files with 9 additions and 9 deletions

View File

@ -129,14 +129,14 @@
<script type="text/javascript">
//<![CDATA[
(function() {
var links = document.getElementsByTagName('a');
var query = '?';
for(var i = 0; i < links.length; i++) {
if(links[i].href.indexOf('#disqus_thread') >= 0) {
query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
}
}
document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/videojs/get_num_replies.js' + query + '"></' + 'script>');
var links = document.getElementsByTagName('a');
var query = '?';
for(var i = 0; i < links.length; i++) {
if(links[i].href.indexOf('#disqus_thread') >= 0) {
query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
}
}
document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/videojs/get_num_replies.js' + query + '"></' + 'script>');
})();
//]]>
</script>

View File

@ -1,4 +1,4 @@
.video-js-box { text-align: left; position: relative; }
.video-js-box { text-align: left; position: relative; z-index: 1000; }
.video-js { background-color: #000; }
/* General controls styles */