From 26695748e96583295af5752b05053b5bf6a96351 Mon Sep 17 00:00:00 2001 From: Arad Aral Date: Mon, 14 Dec 2020 21:30:37 +0330 Subject: [PATCH 1/2] Updated README.md to add NuGet icon. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 93f1572..a167a97 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![Vidazor poster](Poster.svg) -# What Is Vidazor? +# What Is Vidazor? [![NuGet version (Vidazor)](https://img.shields.io/nuget/v/Vidazor.svg?style=flat-square)](https://www.nuget.org/packages/Vidazor/) Vidazor = Video + Blazor Vidazor is a Blazor library (RCL) that allows you to seamlessly work with the HTML5 video API, which normally you'd have to work with manually via JS interop. From 3fdf0dd9c8d3b2e3ee0f92c8e317ff11f9cade17 Mon Sep 17 00:00:00 2001 From: Arad Aral Date: Mon, 14 Dec 2020 21:32:45 +0330 Subject: [PATCH 2/2] Updated README.md to reflect the new component name. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a167a97..c5c0f71 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Vidazor provides nearly all the methods, properties, and events that the JavaScr - [Events](#events) ## Methods: -The following methods can be called easily through the `Vidazor` object: +The following methods can be called easily through the `VidazorVideo` object: | Vidazor Method | JavaScript Equivalent | Description | | :--- | :--- | :--- | | `.Play()` | [`.play()`](https://www.w3schools.com/tags/av_met_play.asp) | Plays the video playback. | @@ -74,7 +74,7 @@ The following methods can be called easily through the `Vidazor` object: | `.CanPlayType(string)` | [`.canPlayType(string)`](https://www.w3schools.com/tags/av_met_canplaytype.asp) | Checks if the browser can play a video with the specified MIME media type. | ## Properties: -The following properties can be accessed easily through the `Vidazor` object: +The following properties can be accessed easily through the `VidazorVideo` object: | Vidazor Property | Data Type | Get & Set | JavaScript Equivalent | Description | | :--- | :--- | :--- | :--- | :--- | | `.Autoplay` | `bool` | ✔ | [`.autoplay`](https://www.w3schools.com/tags/av_prop_autoplay.asp) | Gets or sets a Boolean indicating whether playback automatically begins as soon as enough of the video is available to do so without interruption. |