Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. (function () {
  2. var thElm;
  3. var startOffset;
  4.  
  5. Array.prototype.forEach.call(
  6. document.querySelectorAll("#table-list th"),
  7. function (th) {
  8. th.style.position = 'relative';
  9.  
  10. var grip = document.createElement('div');
  11. grip.innerHTML = " ";
  12. grip.style.top = 0;
  13. grip.style.right = 0;
  14. grip.style.bottom = 0;
  15. grip.style.width = '5px';
  16. grip.style.position = 'absolute';
  17. grip.style.cursor = 'col-resize';
  18. grip.addEventListener('mousedown', function (e) {
  19. thElm = th;
  20. startOffset = th.offsetWidth - e.pageX;
  21. });
  22.  
  23. th.appendChild(grip);
  24. });
  25.  
  26. document.addEventListener('mousemove', function (e) {
  27. if (thElm) {
  28. thElm.style.width = startOffset + e.pageX + 'px';
  29. }
  30. });
  31.  
  32. document.addEventListener('mouseup', function () {
  33. thElm = undefined;
  34. });
  35. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement