Big replacement: bool with boolean

This commit is contained in:
Boris Yankov
2013-08-07 16:59:39 +03:00
parent bded8a8af5
commit dd35f69637
128 changed files with 4254 additions and 4240 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ _V_("example_video_1").ready(function(){
myPlayer.pause();
var isPaused: bool = myPlayer.paused();
var isPlaying: bool = !myPlayer.paused();
var isPaused: boolean = myPlayer.paused();
var isPlaying: boolean = !myPlayer.paused();
myPlayer.src("http://www.example.com/path/to/video.mp4");
+1 -1
View File
@@ -21,7 +21,7 @@ interface VideoJSSource {
interface VideoJSPlayer {
play(): VideoJSPlayer;
pause(): VideoJSPlayer;
paused(): bool;
paused(): boolean;
src(newSource: string): VideoJSPlayer;
src(newSource: VideoJSSource): VideoJSPlayer;
src(newSource: VideoJSSource[]): VideoJSPlayer;