Remove hardcoded extrasPath in the JS.
This commit is contained in:
parent
2ceed12b46
commit
e8b20169fa
1 changed files with 1 additions and 1 deletions
|
|
@ -145,7 +145,7 @@ SortableTable.prototype.initHeader = function (oSortTypes) {
|
||||||
c = cells[i];
|
c = cells[i];
|
||||||
if (this.sortTypes[i] != null && this.sortTypes[i] != "None") {
|
if (this.sortTypes[i] != null && this.sortTypes[i] != "None") {
|
||||||
img = doc.createElement("IMG");
|
img = doc.createElement("IMG");
|
||||||
img.src = "/extras/wobject/Profiler/blank.png";
|
img.src = getWebguiProperty('extrasURL')+"/wobject/Profiler/blank.png";
|
||||||
c.appendChild(img);
|
c.appendChild(img);
|
||||||
if (this.sortTypes[i] != null)
|
if (this.sortTypes[i] != null)
|
||||||
c._sortType = this.sortTypes[i];
|
c._sortType = this.sortTypes[i];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue