From e8b20169fada7cf9bd2d41c7be0ceacd89ab6512 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Tue, 9 Jun 2009 16:53:00 +0000 Subject: [PATCH] Remove hardcoded extrasPath in the JS. --- www/extras/wobject/Profiler/sortabletable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/extras/wobject/Profiler/sortabletable.js b/www/extras/wobject/Profiler/sortabletable.js index 0591dd9dc..1f8b3dce3 100644 --- a/www/extras/wobject/Profiler/sortabletable.js +++ b/www/extras/wobject/Profiler/sortabletable.js @@ -145,7 +145,7 @@ SortableTable.prototype.initHeader = function (oSortTypes) { c = cells[i]; if (this.sortTypes[i] != null && this.sortTypes[i] != "None") { img = doc.createElement("IMG"); - img.src = "/extras/wobject/Profiler/blank.png"; + img.src = getWebguiProperty('extrasURL')+"/wobject/Profiler/blank.png"; c.appendChild(img); if (this.sortTypes[i] != null) c._sortType = this.sortTypes[i];