@vscode/codicons 0.0.45-0 → 0.0.45-1
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/dist/codicon.html +2 -2
- package/package.json +1 -1
- package/src/template/preview.hbs +2 -2
package/dist/codicon.html
CHANGED
|
@@ -11963,9 +11963,9 @@
|
|
|
11963
11963
|
search.addEventListener('keyup', function(){
|
|
11964
11964
|
let filter = search.value.toUpperCase();
|
|
11965
11965
|
let wrapper = document.getElementById('icons');
|
|
11966
|
-
let icon = wrapper.
|
|
11966
|
+
let icon = wrapper.getElementsByClassName('icon');
|
|
11967
11967
|
|
|
11968
|
-
for (i = 0; i < icon.length; i++) {
|
|
11968
|
+
for (let i = 0; i < icon.length; i++) {
|
|
11969
11969
|
let name = icon[i].getAttribute('data-name') || '';
|
|
11970
11970
|
let tags = icon[i].getAttribute('data-tags') || '';
|
|
11971
11971
|
let description = icon[i].getAttribute('data-description') || '';
|
package/package.json
CHANGED
package/src/template/preview.hbs
CHANGED
|
@@ -701,9 +701,9 @@
|
|
|
701
701
|
search.addEventListener('keyup', function(){
|
|
702
702
|
let filter = search.value.toUpperCase();
|
|
703
703
|
let wrapper = document.getElementById('icons');
|
|
704
|
-
let icon = wrapper.
|
|
704
|
+
let icon = wrapper.getElementsByClassName('icon');
|
|
705
705
|
|
|
706
|
-
for (i = 0; i < icon.length; i++) {
|
|
706
|
+
for (let i = 0; i < icon.length; i++) {
|
|
707
707
|
let name = icon[i].getAttribute('data-name') || '';
|
|
708
708
|
let tags = icon[i].getAttribute('data-tags') || '';
|
|
709
709
|
let description = icon[i].getAttribute('data-description') || '';
|