diff options
| -rw-r--r-- | CHANGELOG | 1 | ||||
| -rw-r--r-- | program/js/app.js | 2 | ||||
| -rw-r--r-- | program/js/list.js | 2 | 
3 files changed, 3 insertions, 2 deletions
| @@ -9,6 +9,7 @@ CHANGELOG Roundcube Webmail  - Fix bug where Drafts list wasn't updated on draft-save action in new window (#1490225)  - Fix so "set as default" option is hidden if identities_level > 1 (#1490226)  - Fix bug where search was reset after returning from compose visited for reply +- Fix javascript error in "IE 8.0/Tablet PC" browser (#1490210)  RELEASE 1.0.4  ------------- diff --git a/program/js/app.js b/program/js/app.js index 17fc99dc2..123f1fec5 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1808,7 +1808,7 @@ function rcube_webmail()      // attach events      $.each(fn, function(i, f) {        row[i].onclick = function(e) { f(e); return rcube_event.cancel(e); }; -      if (bw.touch) { +      if (bw.touch && row[i].addEventListener) {          row[i].addEventListener('touchend', function(e) {            if (e.changedTouches.length == 1) {              f(e); diff --git a/program/js/list.js b/program/js/list.js index fd14c630c..8072dd892 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -118,7 +118,7 @@ init_row: function(row)      row.onmousedown = function(e){ return self.drag_row(e, this.uid); };      row.onmouseup = function(e){ return self.click_row(e, this.uid); }; -    if (bw.touch) { +    if (bw.touch && row.addEventListener) {        row.addEventListener('touchstart', function(e) {          if (e.touches.length == 1) {            self.touchmoved = false; | 
