-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
215 changed files
with
9,599 additions
and
9,822 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
using Microsoft.Extensions.DependencyInjection; | ||
|
||
namespace GoogleMapsComponents | ||
namespace GoogleMapsComponents; | ||
|
||
public static class DependencyInjectionExtensions | ||
{ | ||
public static class DependencyInjectionExtensions | ||
public static IServiceCollection AddBlazorGoogleMaps(this IServiceCollection service) | ||
{ | ||
public static IServiceCollection AddBlazorGoogleMaps(this IServiceCollection service) | ||
{ | ||
return service; | ||
} | ||
return service; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
using Microsoft.JSInterop; | ||
using System.Threading.Tasks; | ||
|
||
namespace GoogleMapsComponents | ||
namespace GoogleMapsComponents; | ||
|
||
public class ExampleJsInterop | ||
{ | ||
public class ExampleJsInterop | ||
public static ValueTask<string> Prompt(IJSRuntime jsRuntime, string message) | ||
{ | ||
public static ValueTask<string> Prompt(IJSRuntime jsRuntime, string message) | ||
{ | ||
// Implemented in exampleJsInterop.js | ||
return jsRuntime.InvokeAsync<string>( | ||
"exampleJsFunctions.showPrompt", | ||
message); | ||
} | ||
// Implemented in exampleJsInterop.js | ||
return jsRuntime.InvokeAsync<string>( | ||
"exampleJsFunctions.showPrompt", | ||
message); | ||
} | ||
} | ||
} |
Oops, something went wrong.