Skip to content

Commit

Permalink
fixed some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
thetbw committed Apr 13, 2022
1 parent dc95252 commit d7e0e4d
Show file tree
Hide file tree
Showing 8 changed files with 6,569 additions and 92 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
.sass-cache
node_modules
node_modules
package-lock.json
npm-shrinkwrap.json
.idea
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ Resizable table columns for jQuery. **[Live Demo](http://dobtco.github.io/jquery

**Size:** < 8kb minified

---

I made some changes to the original author's above

if you used `bootstrap-table` ,you can also see [https://github.com/thetbw/bootstrap-table](https://github.com/thetbw/bootstrap-table/commit/e3f39b648f52c0f8703d67e2047f9f4999648f83)

It's not perfect, and some you may need to modify yourself

if you want build by you self,maybe you need create a file named `npm-shrinkwrap.json` in
project root,and add this content,because origin dependencies was so old.
```json
{
"dependencies": {
"graceful-fs": {
"version": "4.2.2"
}
}
}
```

**bugfix change log:**
* Change table layout to 'fixed'
* Change from percentage width to pixel width

#### Dependencies
- jQuery
- [store.js](https://github.com/marcuswestin/store.js/) (or anything similar) for localStorage persistence.
Expand Down
Loading

0 comments on commit d7e0e4d

Please sign in to comment.