diff medium-popup-disable.user.js @ 33:28505554a8b9

(none)
author Edho Arief <me@myconan.net>
date Sun, 25 Dec 2016 07:41:17 +0000
parents 41953e59d06f
children a1518aba03fa
line wrap: on
line diff
--- a/medium-popup-disable.user.js	Sat Dec 24 04:41:13 2016 +0000
+++ b/medium-popup-disable.user.js	Sun Dec 25 07:41:17 2016 +0000
@@ -1,7 +1,7 @@
 // ==UserScript==
 // @name         Medium popup disable
 // @namespace    https://myconan.net
-// @version      1.0.1
+// @version      1.0.2
 // @description  Strip out Medium's highlighting popup "feature"
 // @author       nanaya
 // @match        https://medium.com/*
@@ -12,13 +12,13 @@
 // ==/UserScript==
 
 ;(function() {
-  'use strict';
-  var popups = document.getElementsByClassName("highlightMenu");
+  "use strict";
+  var popups = document.getElementsByClassName("highlightMenu")
   var killPopup = function(popup) {
-    popup.style.display = 'none';
-  };
+    popup.style.display = "none";
+  }
   var killPopups = function() {
-    Array.prototype.forEach.call(popups, killPopup);
-  };
-  document.addEventListener('click', killPopups);
+    Array.prototype.forEach.call(popups, killPopup)
+  }
+  document.addEventListener('click', killPopups)
 }).call();
\ No newline at end of file