Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
HTML5 - fixed textVideo dimensions bug
git-svn-id: https://xerteonlinetoolkits.googlecode.com/svn/trunk@619 912cdd6b-5c7d-d5a7-a2ba-d0f0cdb91641
  • Loading branch information
FayCross committed Jan 9, 2013
1 parent 9fa2620 commit 9575978
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -18,8 +18,8 @@
$video.mediaPlayer({
type :"video",
source :$video.data("src"),
width :$video.data("dimensions")[0],
height :$video.data("dimensions")[1],
width :Number($video.data("dimensions")[0]),
height :Number($video.data("dimensions")[1]),
startEndFrame :$video.data("startEndFrame")
});
if (firstLoad == true) {
Expand Down

0 comments on commit 9575978

Please sign in to comment.