Remove hardcoded extrasPath in the JS.

This commit is contained in:
Colin Kuskie 2009-06-09 16:53:00 +00:00
parent 2ceed12b46
commit e8b20169fa

View file

@ -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];