Newer
Older
var pair = [prop, d[prop]];
pairs.push(pair);
}
}
pairs.sort(function(a, b) {
if (a[0] == b[0]) return 0;
// Sort in reverse lexicographical
return (a[0] < b[0]) ? -1 : 1;
});
return pairs;
}
function enterApp()
{
$("#login-form-div").hide();
$("#main").show();
basynthec.listAllDataSets(function(data) {
presenter.showDataSets(data.result);