remove some javascript warnings

This commit is contained in:
Dany De Bontridder 2015-06-17 19:22:16 +02:00
parent 438490cc7b
commit 5a7deeadfc
2 changed files with 6 additions and 6 deletions

View file

@ -726,7 +726,7 @@ function waiting_node()
*/
function waiting_box()
{
obj = {
var obj = {
id: 'wait_box', html: '<h2 class="title">Chargement</h2>' + loading()
};
var y = fixed_position(10, 250)

View file

@ -161,9 +161,9 @@ sorttable = {
// i.e., we "decorate" each row with the actual sort key,
// sort based on the sort keys, and then put the rows back in order
// which is a lot faster because you only do getInnerText once per row
row_array = [];
col = this.sorttable_columnindex;
rows = this.sorttable_tbody.rows;
var row_array = [];
var col = this.sorttable_columnindex;
var rows = this.sorttable_tbody.rows;
for (var j=0; j<rows.length; j++) {
row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]];
}
@ -279,9 +279,9 @@ sorttable = {
each sort function takes two parameters, a and b
you are comparing a[0] and b[0] */
sort_numeric: function(a,b) {
aa = parseFloat(a[0].replace(/[^0-9.-]/g,''));
var aa = parseFloat(a[0].replace(/[^0-9.-]/g,''));
if (isNaN(aa)) aa = 0;
bb = parseFloat(b[0].replace(/[^0-9.-]/g,''));
var bb = parseFloat(b[0].replace(/[^0-9.-]/g,''));
if (isNaN(bb)) bb = 0;
return aa-bb;
},