From 0f78368040b1c2a8dedb9c516bc6316fb83e1d3a Mon Sep 17 00:00:00 2001 From: Stefan Breunig Date: Sat, 23 Feb 2013 09:09:06 +0100 Subject: [PATCH] make table display actually work --- plugins/compute-ap-stats.user.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/compute-ap-stats.user.js b/plugins/compute-ap-stats.user.js index 5b5cf160..bbf98ea8 100644 --- a/plugins/compute-ap-stats.user.js +++ b/plugins/compute-ap-stats.user.js @@ -38,8 +38,10 @@ window.plugin.compAPStats.setupCallback = function() { window.plugin.compAPStats.onPositionMove = function() { var result = window.plugin.compAPStats.compAPStats(); - $('#available_ap_display').html("Available AP in this area:
 Enlightened:\t" + - digits(result[1]) + "
 Resistance:\t" + digits(result[0])); + $('#available_ap_display').html('Available AP in this area:' + + '' + + '' + + '
Enlightened:' + digits(result[1]) + '
Resistance:' + digits(result[0]) + '
'); } window.plugin.compAPStats.compAPStats = function() {