This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Gems After Dependabot | |
| on: | |
| push: | |
| branches: | |
| - 'dependabot/bundler/**' | |
| paths: | |
| - 'Gemfile.lock' | |
| jobs: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var getAdContainer = function(element){ | |
| if(!element || element.className.match(/\b_4ikz\b/)){ | |
| return element | |
| } | |
| return getAdContainer(element.parentNode) | |
| } | |
| var hideAds = function() { | |
| var ads = document.getElementsByClassName('uiStreamSponsoredLink'); | |
| for(var i = 0; i < ads.length; i++){ |