source: trunk/prototype/modules/calendar/js/drag_area.js @ 5974

Revision 5974, 454 bytes checked in by marcieli, 12 years ago (diff)

Ticket #2632 - Corrigido bug encontrado no ie8 com relacao combobox travado.

Line 
1/* não permite que os elementos da nova agenda sejam selecionados e arrastados */
2// ie
3document.onselectstart = function() {return false;}
4// Mozilla Firefox
5document.onmousedown = function(event) {
6        // 'escapar' os campos onde o clique é bloqueado.
7        if (event.target.nodeName != 'INPUT' && event.target.nodeName != 'TEXTAREA' && event.target.nodeName != 'SELECT'){
8                if (typeof event.preventDefault != 'undefined') {
9                        event.preventDefault();
10                }
11        }
12}
Note: See TracBrowser for help on using the repository browser.