Skip to content

Commit

Permalink
bs update
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kaznacheev committed Sep 20, 2024
1 parent a65f483 commit 4395e0f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/GenOne.Blazor.BottomSheet/src/wwwroot/bottom-sheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,20 +358,18 @@ const observeWatch = (element, callback) => {
/**
* Initialize bottom sheet
* @param {Element} sheet
* @param {number[]} stops
* @param {boolean} passive
* @param {number} sensitivity
* @param {function} onClosedHandler
* @returns {BottomSheet}
*/
export const initializeBottomSheet = (
sheet,
stops,
passive,
sensitivity,
onClosedHandler
) => {
return new BottomSheet(sheet, stops, passive, sensitivity, onClosedHandler);
return new BottomSheet(sheet, passive, sensitivity, onClosedHandler);
};

/**
Expand Down

0 comments on commit 4395e0f

Please sign in to comment.