Skip to content

Commit 80567f1

Browse files
committed
Fix invalid icon
1 parent def61e8 commit 80567f1

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* json-injector
3-
* https://github.com/fisuda/json-injector-widget
3+
* https://github.com/lets-fiware/json-injector
44
*
55
* Copyright (c) 2019 Kazuhito Suda
66
* Licensed under the MIT license.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"wirecloud-config-parser": "^0.2.0"
2525
},
2626
"private": true,
27-
"name": "json-injector-widget",
27+
"name": "json-injector",
2828
"version": "1.0.0",
2929
"main": "Gruntfile.js",
3030
"directories": {

src/config.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version='1.0' encoding='UTF-8'?>
2-
<widget xmlns="http://wirecloud.conwet.fi.upm.es/ns/macdescription/1" vendor="FISUDA" name="json-injector" version="0.1.0">
2+
<widget xmlns="http://wirecloud.conwet.fi.upm.es/ns/macdescription/1" vendor="FISUDA" name="json-injector" version="0.1.1">
33

44
<details>
55
<title>Json Injector</title>
6-
<homepage>https://github.com/fisuda/json-injector-widget</homepage>
6+
<homepage>https://github.com/lets-fiware/json-injector</homepage>
77
<authors>Kazuhito Suda &lt;kazuhito@fisuda.jp&gt;</authors>
88
<email>wirecloud@fisuda.jp</email>
99
<image></image>
@@ -13,7 +13,7 @@
1313
<changelog>doc/changelog.md</changelog>
1414
<doc>doc/userguide.md</doc>
1515
<license>MIT</license>
16-
<issuetracker>https://github.com/fisuda/json-injector-widget/issues</issuetracker>
16+
<issuetracker>https://github.com/lets-fiware/json-injector/issues</issuetracker>
1717
</details>
1818

1919
<requirements>

src/js/JsonInjector.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* json-injector
3-
* https://github.com/fisuda/json-injector-widget
3+
* https://github.com/lets-fiware/json-injector
44
*
55
* Copyright (c) 2019 Kazuhito Suda
66
* Licensed under the MIT license.
@@ -60,7 +60,7 @@ var JsonInjector = (function () {
6060
action_buttons.className = 'btn-group';
6161
document.getElementById('buttons').appendChild(action_buttons);
6262

63-
sendbtn = new StyledElements.Button({'class': 'btn-info fa fa-play', 'title': 'Output data'});
63+
sendbtn = new StyledElements.Button({'class': 'btn-info', 'iconClass': 'fa fa-play', 'title': 'Output data'});
6464
sendbtn.addEventListener('click', () => {
6565
if (MashupPlatform.widget.outputs.output.connected) {
6666
var value = editor.getValue();

src/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* json-injector
3-
* https://github.com/fisuda/json-injector-widget
3+
* https://github.com/lets-fiware/json-injector
44
*
55
* Copyright (c) 2019 Kazuhito Suda
66
* Licensed under the MIT license.

tests/js/JsonInjectorSpec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* json-injector
3-
* https://github.com/fisuda/json-injector-widget
3+
* https://github.com/lets-fiware/json-injector
44
*
55
* Copyright (c) 2019 Kazuhito Suda
66
* Licensed under the MIT license.

0 commit comments

Comments
 (0)