equal
deleted
inserted
replaced
90 |
90 |
91 // Setup events |
91 // Setup events |
92 obj.childNodes[i].onmouseover = function() { jBoxOverHandler(this); }; |
92 obj.childNodes[i].onmouseover = function() { jBoxOverHandler(this); }; |
93 obj.childNodes[i].onmouseout = function(e) { jBoxOutHandler(this, e); }; |
93 obj.childNodes[i].onmouseout = function(e) { jBoxOutHandler(this, e); }; |
94 obj.childNodes[i].nextSibling.onmouseout = function(e) { jBoxOutHandler(this, e); }; |
94 obj.childNodes[i].nextSibling.onmouseout = function(e) { jBoxOutHandler(this, e); }; |
|
95 if ( is_iPhone ) |
|
96 { |
|
97 obj.childNodes[i].onclick = function() { jBoxOverHandler(this); return false; }; |
|
98 } |
95 } |
99 } |
96 } |
100 } |
97 } |
101 } |
98 } |
102 } |
99 } |
103 } |