esperanto-source 0.7.1 → 0.7.2
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.
- checksums.yaml +4 -4
- data/lib/esperanto/source/version.rb +1 -1
- data/vendor/esperanto.browser.js +4 -2
- data/vendor/esperanto.browser.js.map +1 -1
- data/vendor/esperanto.js +10 -6
- data/vendor/esperanto.js.map +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbf76a4ac99b7dfc51e26745dbacd625a8fb0470
|
4
|
+
data.tar.gz: 25112d1d8ea656b7ba34a1984bc0a8c7462841fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bf9cd08c5e9a4a2bd245393cac6d5531f09ca5cfd2db7b5a4fa298b77b3ce95da67ca4d49b2cd58a33654d3423151771bfc797bbc5bcdc8d3e902beb0f122cf
|
7
|
+
data.tar.gz: deaaa51f7e3834d62f93dc603f2295e8cc8a49742bfde3e73575f21095490d94bfdd0b8fd6b14f9f75fee8508786b9769274b4d56f60572d996aed1d407ff43f
|
data/vendor/esperanto.browser.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
esperanto.js v0.7.
|
2
|
+
esperanto.js v0.7.2 - 2015-05-29
|
3
3
|
http://esperantojs.org
|
4
4
|
|
5
5
|
Released under the MIT License.
|
@@ -2842,7 +2842,9 @@
|
|
2842
2842
|
} else if (x.name) {
|
2843
2843
|
flattened.push(x.name);
|
2844
2844
|
} else if (x.specifiers) {
|
2845
|
-
flattened.push.apply(flattened, x.specifiers.map(
|
2845
|
+
flattened.push.apply(flattened, x.specifiers.map(function (x) {
|
2846
|
+
return x.as;
|
2847
|
+
}));
|
2846
2848
|
}
|
2847
2849
|
});
|
2848
2850
|
|