1
0
Fork 0

Merge pull request #674 from fermionic/20130503-basic-video-support

basic video playback support using VideoJS
This commit is contained in:
fermionic 2013-05-11 08:33:36 -07:00
commit 3a13aba62e
33 changed files with 5632 additions and 13 deletions

View file

@ -2192,6 +2192,15 @@ input#profile-jot-email {
width: 587px;
}
.video-top-wrapper {
display: inline-block;
vertical-align: top;
margin-top: 15px;
margin-right: 15px;
margin-left: 15px;
margin-bottom: 15px;
}
#profile-jot-desc {
/*float: left;*/
width: 100%;

View file

@ -2137,6 +2137,15 @@ aside input[type='text'] {
margin-bottom: 15px;
}
.video-top-wrapper {
display: inline-block;
vertical-align: top;
margin-top: 15px;
margin-right: 15px;
margin-left: 15px;
margin-bottom: 15px;
}
#profile-jot-desc {
/*float: left;*/
width: 480px;

View file

@ -389,6 +389,9 @@
}
/* autocomplete @nicknames */
$j(".comment-edit-form textarea").contact_autocomplete(baseurl+"/acl");
// setup videos, since VideoJS won't take care of any loaded via AJAX
if(typeof _V_ != 'undefined') _V_.autoSetup();
});
}

File diff suppressed because one or more lines are too long

View file

@ -2162,6 +2162,15 @@ input#profile-jot-email {
width: 587px;
}
.video-top-wrapper {
display: inline-block;
vertical-align: top;
margin-top: 15px;
margin-right: 15px;
margin-left: 15px;
margin-bottom: 15px;
}
#profile-jot-desc {
/*float: left;*/
width: 100%;

View file

@ -0,0 +1,5 @@
<script src="library/video-js/video.min.js"></script>
<script>
_V_.options.flash.swf = "https://f.shmuz.in/library/video-js/video-js.swf"
</script>

View file

@ -0,0 +1,2 @@
<link href="library/video-js/video-js.min.css" rel="stylesheet">

View file

@ -405,6 +405,8 @@
collapseHeight();
// setup videos, since VideoJS won't take care of any loaded via AJAX
if(typeof _V_ != 'undefined') _V_.autoSetup();
});
}

File diff suppressed because one or more lines are too long

View file

@ -2519,6 +2519,15 @@ aside input[type='text'] {
margin-bottom: 15px;
}
.video-top-wrapper {
display: inline-block;
vertical-align: top;
margin-top: 15px;
margin-right: 15px;
margin-left: 15px;
margin-bottom: 15px;
}
#profile-jot-desc {
/*float: left;*/
/*width: 480px;*/

View file

@ -0,0 +1,5 @@
<script src="library/video-js/video.min.js"></script>
<script>
_V_.options.flash.swf = "https://f.shmuz.in/library/video-js/video-js.swf"
</script>

View file

@ -0,0 +1,2 @@
<link href="library/video-js/video-js.min.css" rel="stylesheet">