Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
zHoeshin authored Jul 30, 2024
1 parent 53ae6fa commit 2e670ee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -281,12 +281,18 @@
shift: s.length - s.lastIndexOf('a') - 1,
bits: s.lastIndexOf('a') - s.indexOf('a') + 1,
limit: 2**(s.lastIndexOf('a') - s.indexOf('a') + 1) - 1
},
y: {
shift: s.length - s.lastIndexOf('y') - 1,
bits: s.lastIndexOf('y') - s.indexOf('y') + 1,
limit: 2**(s.lastIndexOf('y') - s.indexOf('y') + 1) - 1
}
}
if(s.indexOf('r') == -1) color.r.shift = -1
if(s.indexOf('g') == -1) color.g.shift = -1
if(s.indexOf('b') == -1) color.b.shift = -1
if(s.indexOf('a') == -1) color.a.shift = -1
if(s.indexOf('y') == -1) color.y.shift = -1
">Apply</button>
</th>
Expand Down

0 comments on commit 2e670ee

Please sign in to comment.