Skip to content

Commit

Permalink
feat: Add ShowNone method to SwapStyleBuilder extension
Browse files Browse the repository at this point in the history
  • Loading branch information
tanczosm committed Apr 30, 2024
1 parent 9da481f commit 1e5df1e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Htmxor/Http/SwapStyleBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,5 @@ public static class SwapStyleBuilderExtension
public static SwapStyleBuilder FocusScroll(this SwapStyle style, bool scroll) => new SwapStyleBuilder(style).FocusScroll(scroll);
public static SwapStyleBuilder ShowOn(this SwapStyle style, string selector, ScrollDirection direction) => new SwapStyleBuilder(style).ShowOn(selector, direction);
public static SwapStyleBuilder ShowWindow(this SwapStyle style, ScrollDirection direction) => new SwapStyleBuilder(style).ShowWindow(direction);
public static SwapStyleBuilder ShowNone(this SwapStyle style) => new SwapStyleBuilder(style).ShowNone();
}

0 comments on commit 1e5df1e

Please sign in to comment.