Reverse order of tracking history so most recent is on top

This commit is contained in:
Skylar Ittner 2019-12-06 15:28:53 -07:00
parent faa13a1588
commit 09b51d95f0

View File

@ -148,7 +148,7 @@ var routes = [
if (history == null) { if (history == null) {
history = false; history = false;
} else { } else {
history = JSON.parse(history); history = JSON.parse(history).reverse(); // Most recent on top
} }
resolve({ resolve({
templateUrl: './pages/toolbox/track.html' templateUrl: './pages/toolbox/track.html'
@ -274,7 +274,7 @@ var routes = [
setting: "privacy", setting: "privacy",
title: "Privacy policy and legal", title: "Privacy policy and legal",
text: "", text: "",
onclick: "openBrowser('https://netsyms.com/legal?pk_campaign=PackageHelpterApp')", onclick: "openBrowser('https://netsyms.com/legal?pk_campaign=PackageHelperApp')",
link: true link: true
}); });