Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. (function(data) {
  2. g.loadQueue.push({
  3. fun: () => {
  4. if (data[hero.nick]) {
  5. let s = document.createElement('style'),
  6. txt = `
  7. #hero, #mytrader, #troop${hero.id} {
  8. background-image: url(${data[hero.nick]}) !important;
  9. }
  10. `;
  11. s.type = 'text/css';
  12. s.appendChild(document.createTextNode(txt));
  13. document.head.appendChild(s);
  14. }
  15. }
  16. })
  17. })({
  18. "Kimś Jest Ten Kto": "https://www.margonem.pl/obrazki/postacie//vip/2124795.gif",
  19. "Bobbie": "https://www.margonem.pl/obrazki/postacie//vip/2124795.gif",
  20. "Czarny Diament": "https://www.margonem.pl/obrazki/postacie//vip/2124795.gif"
  21. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement