Robert Stark
Robert Stark
I believe I have updated it for the latest version 2.3 to work: https://github.com/iamrobert/list.js/blob/patch-1/src/sort.js
Hello, There isn't a method, but I have done it here: https://www.iamrobert.com/ On the top banner when you hover over it - the text spans will remove after it has...
I was having issues with a fixed menu. I switched my CSS from `position: fixed` to `position: sticky,` and locomotive handled it well.
Here's a quick and dirty approach that I have got it working for tabs: **1. Add Hash to URL on click** At the bottom of: `AccordionTabs.prototype._clickEvent = function (e) {`...
I noticed that when I lazyloaded the background-check js file I got this error. So when I initiated it on every page it disappeared.
Here's my attempt: ``` onTranslate: function (event) { bLazy.revalidate(); }, ``` Complete Code ``` var owl_article2 = $('.banner').find('.owl-carousel'); //COUNT var item_amount2 = parseInt(owl_article2.find('.itemx').length); var true_false2 = 0; if (item_amount2
With youtube, the rel parameter has now changed and you can no longer disable: https://developers.google.com/youtube/player_parameters#release_notes_08_23_2018 Now if rel is set to 0, related videos will come from the same channel...
@hellodit I did it this way: https://codepen.io/iamrobert/pen/GRpZdQm So the info bar is still visible on the screen.
A simple workaround is on browser refresh scroll to top: ``` //SCROLL TO TOP ON PAGE REFRESH $(window).on('beforeunload', function() { $(window).scrollTop(0); }); ```
Here is my fix/pull request: https://github.com/ndeet/plg_system_less/pull/40