From 38bf9d3b71067a51ffc9a915ea288929d1fb08e4 Mon Sep 17 00:00:00 2001
From: yllar <yllar.pajus@gmail.com>
Date: Thu, 14 Dec 2006 15:44:42 -0500
Subject: [PATCH] updated Spanish translation

---
 program/js/list.js |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/program/js/list.js b/program/js/list.js
index 8871904..eac19bb 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -32,6 +32,8 @@
   this.rows = [];
   this.selection = [];
   
+  this.shiftkey = false;
+
   this.multiselect = false;
   this.draggable = false;
   this.keyboard = false;
@@ -504,6 +506,8 @@
   if (this.focused != true) 
     return true;
 
+  this.shiftkey = e.shiftKey;
+
   var keyCode = document.layers ? e.which : document.all ? event.keyCode : document.getElementById ? e.keyCode : 0;
   var mod_key = rcube_event.get_modifier(e);
   switch (keyCode)

--
Gitblit v1.9.1