mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-17 16:15:51 +00:00
Add fields to dataset table report
This commit is contained in:
@@ -14,4 +14,14 @@ $(document).ready(function () {
|
||||
$(document).ajaxStop(function(){
|
||||
$("body").removeClass('ajaxLoading');
|
||||
});
|
||||
});
|
||||
});
|
||||
function remove_plus(a, b) {
|
||||
var aa = a.split('±')[0]
|
||||
var bb = b.split('±')[0]
|
||||
return aa - bb
|
||||
}
|
||||
function remove_dot(a, b) {
|
||||
var aa = a.replace(',', '').replace('.', '')
|
||||
var bb = b.replace(',', '').replace('.', '')
|
||||
return aa - bb
|
||||
}
|
Reference in New Issue
Block a user