Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit b509d17

Browse files
author
Francois-Xavier Gentilhomme
committed
[DEV] rename unloaded param for lisibility
1 parent cd2bfd5 commit b509d17

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/components/iron-ajax/.bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iron-ajax",
3-
"version": "1.2.1",
3+
"version": "1.4.3",
44
"description": "Makes it easy to make ajax calls and parse the response",
55
"private": true,
66
"authors": [
@@ -31,13 +31,13 @@
3131
"web-component-tester": "^4.0.0",
3232
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
3333
},
34-
"_release": "1.2.1",
34+
"_release": "1.4.3",
3535
"_resolution": {
3636
"type": "version",
37-
"tag": "v1.2.1",
37+
"tag": "v1.4.3",
3838
"commit": "97685a88f7727249fb63667969238faa0e704198"
3939
},
4040
"_source": "https://github.com/PolymerElements/iron-ajax.git",
41-
"_target": "1.2.x",
41+
"_target": "^1.0.0",
4242
"_originalSource": "PolymerElements/iron-ajax"
4343
}

docs/components/myscript-text-web/myscript-text-web.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -742,9 +742,9 @@
742742
//-----------------------------------------------------------------------
743743
//--------- Wrapping END ------------
744744
//-----------------------------------------------------------------------
745-
unloadedChanged: function (newValue) {
746-
LOG('text unloaded changed', newValue);
747-
if (this.myscriptcommonelement && !this.initializing && newValue !== true) {
745+
unloadedChanged: function (unloaded) {
746+
LOG('text unloaded changed', unloaded);
747+
if (this.myscriptcommonelement && !this.initializing && unloaded !== true) {
748748
this.result = {};
749749
this.candidates = [];
750750
this.resultlabel = undefined;

myscript-text-web.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -742,9 +742,9 @@
742742
//-----------------------------------------------------------------------
743743
//--------- Wrapping END ------------
744744
//-----------------------------------------------------------------------
745-
unloadedChanged: function (newValue) {
746-
LOG('text unloaded changed', newValue);
747-
if (this.myscriptcommonelement && !this.initializing && newValue !== true) {
745+
unloadedChanged: function (unloaded) {
746+
LOG('text unloaded changed', unloaded);
747+
if (this.myscriptcommonelement && !this.initializing && unloaded !== true) {
748748
this.result = {};
749749
this.candidates = [];
750750
this.resultlabel = undefined;

0 commit comments

Comments
 (0)