Lines Matching refs:event
99 var onCheckboxMouseOver = function (event, matchedEl) {
108 var onCheckboxMouseOut = function (event) {
115 var onDocumentMouseUp = function (event) {
121 oCheckbox = getCheckbox(event.target);
134 var onCheckboxFocus = function (event) {
144 // Defer adding key-related and click event listeners until
148 initKeyListeners.call(event.container);
158 var onCheckboxBlur = function (event) {
178 var onCheckboxMouseDown = function (event) {
180 // Defer adding mouse-related and click event listeners until
184 initMouseListeners.call(event.container);
193 // If the target of the event was the checkbox's label element, the
194 // label will dispatch a click event to the checkbox, meaning the
227 // never the actual target of the mousedown event.
234 // variable to stop the code in the blur event handler
249 event.preventDefault();
254 var onCheckboxClick = function (event) {
262 if (!event.target.compareTo(oInput)) {
264 // If the click event was fired via the mouse the checked
281 var onCheckboxKeyDown = function (event) {
286 if (event.keyCode === 32) {
299 // Add the minimum number of event listeners needed to start, bind the