source: branches/2.4/prototype/modules/calendar/js/drag_area.js @ 5997

Revision 5997, 491 bytes checked in by acoutinho, 12 years ago (diff)

Ticket #2632 - Cursor travado na nova agenda(correcao nos itens de um select)

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' && event.target.nodeName != 'OPTION'){
8                if (typeof event.preventDefault != 'undefined') {
9                        event.preventDefault();
10                }
11        }
12}
Note: See TracBrowser for help on using the repository browser.