* updated version
This commit is contained in:
parent
9cefa60d15
commit
21049208df
5 changed files with 5 additions and 5 deletions
|
@ -43,7 +43,7 @@
|
|||
|
||||
public List<ListItem> list1 = new()
|
||||
{
|
||||
new ListItem("Google", "https://google.com", "Again looking for a bug ..."),
|
||||
new ListItem("Google", "https://google.com", "Again looking for a bugAgain looking for a bug Again looking for a bug Again looking for a bugAgain looking for a bugAgain looking for a bug..."),
|
||||
new ListItem("StackOverflow", "https://stackoverflow.com", "Could be this the solution?"),
|
||||
new ListItem("GitHub", "https://github.com", "Let's get awesome code"),
|
||||
new ListItem("Twitter", "https://twitter.com", "I want to rest"),
|
||||
|
|
|
@ -19,7 +19,7 @@ Welcome to your new reorderer list.
|
|||
{
|
||||
public List<ListItem> list = new()
|
||||
{
|
||||
new ListItem("Google", "https://google.com", "Again looking for a bug ..."),
|
||||
new ListItem("Google", "https://google.com", "Again looking for a bugAgain looking for a bug Again looking for a bug Again looking for a bugAgain looking for a bugAgain looking for a bug..."),
|
||||
new ListItem("StackOverflow", "https://stackoverflow.com", "Could be this the solution?"),
|
||||
new ListItem("GitHub", "https://github.com", "Let's get awesome code"),
|
||||
new ListItem("Twitter", "https://twitter.com", "I want to rest"),
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<PackageId>BlazorReorderList</PackageId>
|
||||
<Version>1.0.1</Version>
|
||||
<Version>1.0.2</Version>
|
||||
<Authors>Santiago Cattaneo</Authors>
|
||||
<projectUrl>https://github.com/elgransan/BlazorReorder</projectUrl>
|
||||
<description>Drag and Drop Reorder List for Blazor, with the less JS interop possible</description>
|
||||
|
|
|
@ -147,7 +147,7 @@
|
|||
|
||||
// If is on top of an element or if top top of a empty list -> confirm drag
|
||||
if (await isOnTop(subItem, pos) ||
|
||||
Items.Count == 0 && await isOnTop((ElementReference) reorder, pos))
|
||||
Items.Count == 0 && await isOnTop(reorder, pos))
|
||||
{
|
||||
// reorder
|
||||
if (!rs.isCopy())
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Blazor Reorder
|
||||
|
||||
<a href="https://www.nuget.org/packages/BlazorReorderList/1.0.1"><img src="https://img.shields.io/nuget/v/BlazorReorderList?style=flat-square" alt="Download Reorder"/></a>
|
||||
<a href="https://www.nuget.org/packages/BlazorReorderList/1.0.2"><img src="https://img.shields.io/nuget/v/BlazorReorderList?style=flat-square" alt="Download Reorder"/></a>
|
||||
|
||||
### Live Examples
|
||||
https://elgransan.github.io/BlazorReorder
|
||||
|
|
Loading…
Reference in a new issue