Skip to content

Commit

Permalink
Fix jQuery variable assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpap committed Nov 10, 2023
1 parent c4caca5 commit fbbb653
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bokeh/slickgrid",
"version": "2.4.4102",
"version": "2.4.4103",
"description": "A lightning fast JavaScript grid/spreadsheet",
"main": "index.js",
"types": "index.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion slick.grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
* and do proper cleanup.
*/

var $ = jQuery = require("./slick.jquery");
const jQuery = require("./slick.jquery");
const $ = jQuery;

var Slick = require("./slick.core");

// shared across all grids on the page
Expand Down

0 comments on commit fbbb653

Please sign in to comment.