mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-18 11:38:53 +00:00
Monotone-Parent: 682fa13875615480f8ed7c009317a6fd3050050b
Monotone-Revision: 1cad98827a66e18891a4b93bbab5ccce88c61795 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2007-06-12T14:58:15 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -296,6 +296,12 @@ function isSafari() {
|
||||
return (navigator.vendor == "Apple Computer, Inc.");
|
||||
}
|
||||
|
||||
function isHttpStatus204(status) {
|
||||
return (status == 204 || // Firefox
|
||||
(isSafari() && typeof(status) == 'undefined') || // Safari
|
||||
status == 1223); // IE
|
||||
}
|
||||
|
||||
function getTarget(event) {
|
||||
event = event || window.event;
|
||||
if (event.target)
|
||||
@@ -453,7 +459,7 @@ function onRowClick(event) {
|
||||
$(node).select();
|
||||
}
|
||||
|
||||
if (startSelection != node.parentNode.getSelectedNodes()) {
|
||||
if (startSelection != $(node.parentNode).getSelectedNodes()) {
|
||||
var parentNode = node.parentNode;
|
||||
if (parentNode.tagName == 'TBODY')
|
||||
parentNode = parentNode.parentNode;
|
||||
|
||||
Reference in New Issue
Block a user