MediaWiki:Common.js

From Game Detectives Wiki
Revision as of 00:07, 15 August 2018 by Mattyb (talk | contribs)
Jump to: navigation, search
  let cnt = 0;

  for(let n = 1; n < 100; n++) {
    if(document.getElementById('tableRow' + n)) {
      let row = document.getElementById('tableRow' + n);
      row.addEventListener('click', function(){
        console.log('working');
        let dialog = 'dialog' + n;
        $( function() {
          $( '#' + dialog ).dialog();
        } );
      });