Skip to content

Instantly share code, notes, and snippets.

@yousefamar
Created September 12, 2015 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yousefamar/91529792794b3388758e to your computer and use it in GitHub Desktop.
Save yousefamar/91529792794b3388758e to your computer and use it in GitHub Desktop.
// Suppress Manyland init during page load
(function(){
var MLand;
Object.defineProperty(window, 'MLand', {
get: function () {
return MLand;
},
set: function (it) {
Object.defineProperty(it, 'start', {
get: function () {
return function () {};
},
set: function () {},
configurable: true
});
MLand = it;
},
configurable: true
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment