Thomas Bruederli
2014-05-12 a2f8fa236143b44f90e53c19806cfd0efa014857
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() {