From 011d165c37507e2be4d8ca1787b250bf35fe38a7 Mon Sep 17 00:00:00 2001 From: "Martin D." Date: Sat, 12 Apr 2014 15:50:38 -0400 Subject: [PATCH 1/2] _V_ is deprecated Use videojs instead --- videojs/videojs.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/videojs/videojs.d.ts b/videojs/videojs.d.ts index 1c53eefaf..2cfa711b3 100644 --- a/videojs/videojs.d.ts +++ b/videojs/videojs.d.ts @@ -49,4 +49,4 @@ interface VideoJSStatic { (id: any, options?: VideoJSOptions, ready?: () => void): VideoJSPlayer; } -declare var _V_:VideoJSStatic; +declare var videojs:VideoJSStatic; From c238b5c2843e8c52699b7affe23a9a51e7312f53 Mon Sep 17 00:00:00 2001 From: "Martin D." Date: Mon, 14 Apr 2014 14:25:46 -0400 Subject: [PATCH 2/2] _V_ is deprecated Use videojs instead --- videojs/videojs-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/videojs/videojs-tests.ts b/videojs/videojs-tests.ts index ec2d83115..00a70a661 100644 --- a/videojs/videojs-tests.ts +++ b/videojs/videojs-tests.ts @@ -1,7 +1,7 @@ // Tests for Video.js API /// -_V_("example_video_1").ready(function(){ +videojs("example_video_1").ready(function(){ var myPlayer:VideoJSPlayer = this; @@ -70,4 +70,4 @@ _V_("example_video_1").ready(function(){ }; //myPlayer.addEvent("volumechange", myFunc); //myPlayer.removeEvent("volumechange", myFunc); -}); \ No newline at end of file +});