Thomas Bruederli
2014-05-08 6789bf1f4dfd32cd54a0fbe520ff3e1a6f6afb8a
program/js/common.js
@@ -297,7 +297,6 @@
 */
keyboard_only: function(e)
{
  console.log(e);
  return rcube_event.is_keyboard(e) ? true : rcube_event.cancel(e);
},
@@ -607,6 +606,11 @@
  };
}
// array utility function
Array.prototype.last = function() {
  return this[this.length-1];
}
// jQuery plugin to emulate HTML5 placeholder attributes on input elements
jQuery.fn.placeholder = function(text) {
  return this.each(function() {