rmr-util 1.1.130 → 1.1.132

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -1363,7 +1363,7 @@
1363
1363
 
1364
1364
  for (let i = 0; i < links.length; i++) {
1365
1365
  const a = links[i];
1366
- if (a.protocol === 'mailto:' || a.hasAttribute('data-rmr-download') || a.hasAttribute('name')) {
1366
+ if (a.protocol === 'tel:' || a.protocol === 'mailto:' || a.hasAttribute('data-rmr-download') || a.hasAttribute('name')) {
1367
1367
  continue;
1368
1368
  }
1369
1369
  if (a.host !== location.host && obj.exclude.indexOf(a.host) < 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rmr-util",
3
- "version": "1.1.130",
3
+ "version": "1.1.132",
4
4
  "description": "JS & CSS for your browser",
5
5
  "url": "https://davidfmiller.github.io/rmr-util/",
6
6
  "license": "ISC",
@@ -14,11 +14,22 @@ script {
14
14
  * {
15
15
  box-sizing: border-box;
16
16
  }
17
-
18
17
  strong {
19
18
  font-weight: bold;
19
+ em {
20
+ font-style: italic;
21
+ font-weight: bold;
22
+ }
23
+ }
24
+
25
+ em {
26
+ font-style: italic;
27
+ strong {
28
+ font-weight: bold;
29
+ }
20
30
  }
21
31
 
32
+
22
33
  svg {
23
34
  pointer-events: none;
24
35
  width: 100%;