cmcnulty
cmcnulty
I believe that the problem is not that we need to add a change listener. When a pre-filled value is selected, the only event fired is "input" - however on...
In my fork, I've solved this with two additions, one of which might need some more thought. First, I added a counter field which gets appended to the secret key...
Yes, but of course in order to compare the hash without user intervention, the salt would have to be stored in the app. So, we will have _obfuscated_ the url,...
The problem with hashing the master password with the domain (besides working out the work-flow issues), is that then your master-password can be brute-forced with the hashed domain values. But,...
Reproducible: https://codepen.io/cmcnulty/pen/LYrNoPQ that said, whether it's centered on the top, middle or bottom of the text seems somewhat subjective to me.
I was playing around with this assuming that the transitions animations might change the behavior, e.g.: `... transitions: { show: { animation: { duration: 0 } } }, animation: {...
However, setting transitions: false, seems to do the trick - perhaps needs more fiddling to determine exact option configuration to disable only 'show' animation
Wouldn't this be easier to do just by using the jQuery on method instead - ``` javascript $menu .on('mouseleave', mouseleaveMenu) .on('mouseenter', options.rowSelector, mouseenterRow) .on('mouseleave', options.rowSelector, mouseleaveRow) .on('click', options.rowSelector, clickRow); ```
I found it so confusing and difficult to use that I had to fork it - my fork allows you to enter the list indexed by order of preference -...
I completely understand now - it's all about how the ballots are distributed and how the votes are collected - I optimized for the case where, for instance, a numbered...