Skip to content

Instantly share code, notes, and snippets.

@EmerickH
Created February 15, 2020 20:54
Show Gist options
  • Save EmerickH/78873613273a2b357d1849629eefa3e5 to your computer and use it in GitHub Desktop.
Save EmerickH/78873613273a2b357d1849629eefa3e5 to your computer and use it in GitHub Desktop.
Padma Fixer
// ==UserScript==
// @name Padma Fixer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Fix breakpoint bug in editor
// @author Emerick Herve
// @match https://YOURWESITE.COM/?ve-iframe=true*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function(){
var wrappers = document.getElementsByClassName("wrapper");
console.log(wrappers);
Array.prototype.forEach.call(wrappers,function(item){
item.setAttribute( 'style',"display: block !important;")
});
},1000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment