Skip to content

Commit

Permalink
fixed #426
Browse files Browse the repository at this point in the history
  • Loading branch information
Atanas Atanasov committed Sep 11, 2018
1 parent 9e5f39c commit e63bc44
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions dist/combined/js/gijgo.js
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,6 @@ gj.core = {
}
}
},

getScrollParent: function (node) {
if (node == null) {
return null;
Expand Down Expand Up @@ -13643,7 +13642,7 @@ gj.dropdown.methods = {
var value = this[data.valueField],
text = this[data.textField],
selected = this[data.selectedField] && this[data.selectedField].toString().toLowerCase() === 'true',
$item, i;
i, $item;

$item = $('<li value="' + value + '"><div data-role="wrapper"><span data-role="display">' + text + '</span></div></li>');
$item.addClass(data.style.item);
Expand Down
1 change: 0 additions & 1 deletion dist/modular/js/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,6 @@ gj.documentManager = {
}
}
},

getScrollParent: function (node) {
if (node == null) {
return null;
Expand Down
2 changes: 1 addition & 1 deletion dist/modular/js/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ gj.dropdown.methods = {
var value = this[data.valueField],
text = this[data.textField],
selected = this[data.selectedField] && this[data.selectedField].toString().toLowerCase() === 'true',
$item, i;
i, $item;

$item = $('<li value="' + value + '"><div data-role="wrapper"><span data-role="display">' + text + '</span></div></li>');
$item.addClass(data.style.item);
Expand Down
1 change: 0 additions & 1 deletion src/core/js/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,6 @@ gj.core = {
}
}
},

getScrollParent: function (node) {
if (node == null) {
return null;
Expand Down
2 changes: 1 addition & 1 deletion src/dropdown/js/dropdown.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ gj.dropdown.methods = {
var value = this[data.valueField],
text = this[data.textField],
selected = this[data.selectedField] && this[data.selectedField].toString().toLowerCase() === 'true',
$item, i;
i, $item;

$item = $('<li value="' + value + '"><div data-role="wrapper"><span data-role="display">' + text + '</span></div></li>');
$item.addClass(data.style.item);
Expand Down

0 comments on commit e63bc44

Please sign in to comment.