nbot

A clone of the eBot by @deStrO fully based on node.js with build in Web Page - WIP
git clone git://archive.git.mtrnord.blog/MTRNord/nbot.git
Log | Files | Refs | README | LICENSE

commit 94746cd366b780723bb953ed5baa6e02c854b71d
parent 7f11fc6c1d07311bef8b26d7aabc8cb18bb50d1b
Author: MTRNord <mtrnord1@gmail.com>
Date:   Wed, 30 Mar 2016 00:05:01 +0200

Debug

Diffstat:
Mweb/theme/js/pluginManagerConnect.js | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/web/theme/js/pluginManagerConnect.js b/web/theme/js/pluginManagerConnect.js @@ -34,6 +34,9 @@ function drawRow(rowData) { var row = $("<tr />") $("#SourcemodVersions").append(row); //this will append tr element to table... keep its reference for a while since we will add cels into it row.append($("<td>" + rowData.name + "</td>")); + console.error(rowData.name); row.append($("<td>" + rowData.zipball_url + "</td>")); + console.error(rowData.zipball_url); row.append($("<td>" + rowData.commit + "</td>")); + console.error(rowData.commit); }