From Game Detectives Wiki
Jump to navigation
Jump to search
|
|
| Line 1: |
Line 1: |
| $(function () {
| | console.log("Testing"); |
| | |
| 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();
| |
| } );
| |
| });
| |
| | |
| let nameCol = document.getElementById('tableCol1-' + n).innerText;
| |
| | |
| row.innerHTML += '<div style="display:none" id="dialog' + n + '"' + ' title="' + nameCol + '"' + n + '">' + '\n' +
| |
| '<p>Table Row {{argbox}} ' + n + '</p>\n' +
| |
| '</div>';
| |
| | |
| cnt = 0;
| |
| }
| |
| else {
| |
| cnt++;
| |
| }
| |
| if(cnt > 1) {
| |
| break;
| |
| }
| |
| }
| |
| }());
| |
Revision as of 00:07, 15 August 2018
console.log("Testing");