Pablo González
Pablo González
Hi @deepsweet, do you think is possible to give push rights to the people whom has self offered to do the maintenance to the loader? Maybe with many eyes over...
@chieffancypants You could check this pull request? I use this event for synchronizing the loading bar with other visuals elements. But is the bar which controlling load percentage Cheers!
i am over the same issue. The problem is about the iframe.src property in FF. is it is '' => FF says current location and if it is '#' =>...
@Mottie Thanks!! I'm building an UI where the navigation is only with left, up, right, down and enter. All navigation is defined with tabindex attributes (it is 'cause still works...
I found the issue with the blur/focus. https://github.com/Mottie/Keyboard/blob/1db48e9519d932f6e869f0eaaab29868fa47ff6a/js/jquery.keyboard.js#L1738-L1739 After the beforeClose event triggers, the function caret is executed, inside it the focus is returned to the $preview. https://github.com/Mottie/Keyboard/blob/1db48e9519d932f6e869f0eaaab29868fa47ff6a/js/jquery.keyboard.js#L3440-L3444 So, the...
Somethings else, when the usePreview is true, the focus goes to the preview element (in my case it breaks the navigation, and there is no problem i can fix it)...
@Mottie Don't worry, I share you the config that I'm using now. ```javascript beforeVisible: function() { KEYWORD_ACTIVE = true; currentFocus = $(':focus'); }, beforeClose: function() { KEYWORD_ACTIVE = false; currentFocus.focus();...
Ok I got it!!! ```javascript beforeVisible: function() { KEYWORD_ACTIVE = true; currentFocus = $(':focus'); }, hidden: function() { KEYWORD_ACTIVE = false; currentFocus.focus(); } ``` And uncomment $keyboard.caret(base.$preview, base.last, true); in...
Sorry, this line https://github.com/Mottie/Keyboard/blob/1db48e9519d932f6e869f0eaaab29868fa47ff6a/js/jquery.keyboard.js#L1739
Hi @dbuxton I am writing previusly to @Ladrusca do that We have removed all plugins logic in cabot, and create an repo index with all plugins we have found in...