Skip to content

Commit

Permalink
Release 1.0.0-preview6-2
Browse files Browse the repository at this point in the history
  • Loading branch information
jbomhold3 committed Jul 9, 2019
1 parent 2b0ea24 commit 11f5a9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions BlazorSortableJS.Demo/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ Sortable List
<SortableGroup Class="list-group" TItem="string" @ref="MyGroup">
@foreach (var item in @MyGroup.Sortable.GetRaw())
{
<SortableItem Class="list-group-item" Item="item" TItem="string">@item.Data</SortableItem>
<SortableItem Class="list-group-item" Item="item" TItem="string">@item.Data</SortableItem>
}
</SortableGroup>
Same Group
<SortableGroup Class="list-group" TItem="string" @ref="My2Group">
@foreach (var item in @My2Group.Sortable.GetRaw())
{
<SortableItem Class="list-group-item" Item="item" TItem="string">@item.Data</SortableItem>
<SortableItem Class="list-group-item" Item="item" TItem="string">@item.Data</SortableItem>
}
</SortableGroup>
Resulting Data
<ul class="list-group">
@foreach (var item in resultsList)
{
<li class="list-group-item">@item</li>
<li class="list-group-item">@item</li>
}
</ul>

Expand Down
2 changes: 1 addition & 1 deletion BlazorSortableJS.Demo/Pages/_Host.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BlazorSortableJS.Demo</title>
<title>BlazorSortableJS Demo</title>
<base href="~/" />
<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script>
<environment include="Development">
Expand Down
2 changes: 1 addition & 1 deletion BlazorSortableJS/BlazorSortableJS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.1</TargetFramework>
<RazorLangVersion>3.0</RazorLangVersion>
<PackageId>BlazorSortableJs</PackageId>
<Version>1.0.0-preview6-1</Version>
<Version>1.0.0-preview6-2</Version>
<Authors>John J Bomhold</Authors>
<Title>Blazor SortableJs Wrapper</Title>
<Description>
Expand Down

0 comments on commit 11f5a9c

Please sign in to comment.