aboutsummaryrefslogtreecommitdiff
path: root/benchmark/scripts
diff options
context:
space:
mode:
authorDevine Lu Linvega <aliceffekt@gmail.com>2018-09-15 15:30:17 +1200
committerDevine Lu Linvega <aliceffekt@gmail.com>2018-09-15 15:30:17 +1200
commite13209deb0371f758e5092e37a27ebb0a2911d73 (patch)
treea756761db7b0022fd3479f9a48756a1d89e2200b /benchmark/scripts
parente098cdc4e084fccee3124b943b9751be69870465 (diff)
*
Diffstat (limited to 'benchmark/scripts')
-rw-r--r--benchmark/scripts/benchmark.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/scripts/benchmark.js b/benchmark/scripts/benchmark.js
index 654f23b..14246b9 100644
--- a/benchmark/scripts/benchmark.js
+++ b/benchmark/scripts/benchmark.js
@@ -2,14 +2,14 @@ function Benchmark()
{
this.matches = function()
{
- var a = [{id:`f_inv:b_inv`,fc:theme.active.f_inv,bc:theme.active.b_inv}]
+ var a = [{id:`b_inv:f_inv`,fc:theme.active.f_inv,bc:theme.active.b_inv}]
for(let fid in theme.active){
if(fid.substr(0,1) != "f" || fid.indexOf("_inv") > -1){ continue; }
let fc = theme.active[fid]
for(let bid in theme.active){
if(bid.substr(0,1) != "b" || bid.indexOf("_inv") > -1){ continue; }
let bc = theme.active[bid]
- a.push({id:`${fid}:${bid}`,fc:fc,bc:bc})
+ a.push({id:`${bid}:${fid}`,fc:fc,bc:bc})
}
}
return a;