Advertisement
H4rtland

Untitled

Dec 11th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $.initialize("div.react-grid-Toolbar .tools button.btn", function() {
  2. $(this).click();
  3. });
  4.  
  5. $.initialize("div.react-grid-Toolbar", function() {
  6. $(this).hide();
  7. });
  8.  
  9. $.initialize("div.react-grid-Cell .react-grid-Cell__value div span div", function() {
  10. if (isNaN($(this).innerText)) {
  11. $(this).innerHTML = "<a href='/queue/" + $(this).innerText + "'>" + $(this).innerText + "</a>"
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement