Skip to content
This repository has been archived by the owner on Nov 21, 2017. It is now read-only.

Commit

Permalink
Update to 2.0.5
Browse files Browse the repository at this point in the history
- CustomTV: Bugfix for select dropdowns in Firefox
  • Loading branch information
Jako committed Aug 24, 2015
1 parent 2057f75 commit e41f1f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/tvs/multitv/js/jquery-multiInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
*/
addElementEvents: function(el) {
var _this = this;
$('[name]', el).bind('change keyup mouseup', function() {
$('[name]', el).bind('change keyup', function() {
_this.saveElementsValues();
return false;
});
Expand Down
4 changes: 2 additions & 2 deletions assets/tvs/multitv/js/multitv.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
}
});
// change field
$('[name]', el).bind('change keyup mouseup', function (e) {
$('[name]', el).bind('change keyup', function (e) {
e.preventDefault();
_this.saveMultiValue();
});
Expand Down Expand Up @@ -835,7 +835,7 @@
BrowseServer(field);
return false;
});
$('[name]', el).bind('change keyup mouseup', function (e) {
$('[name]', el).bind('change keyup', function (e) {
e.preventDefault();
if ($(this).hasClass('mtvImage')) {
_this.setThumbnail($(this).val(), $(this).attr('name'), _this.fieldEditForm);
Expand Down

0 comments on commit e41f1f1

Please sign in to comment.