summaryrefslogtreecommitdiff
path: root/resources/src/jquery/jquery.checkboxShiftClick.js
blob: d99e9f0a8bb44dd7b85c2d2939aba0518ed569aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
 * @class jQuery.plugin.checkboxShiftClick
 */
( function ( $ ) {

	/**
	 * Enable checkboxes to be checked or unchecked in a row by clicking one,
	 * holding shift and clicking another one.
	 *
	 * @return {jQuery}
	 * @chainable
	 */
	$.fn.checkboxShiftClick = function () {
		var prevCheckbox = null,
			$box = this;
		// When our boxes are clicked..
		$box.click( function ( e ) {
			// And one has been clicked before...
			if ( prevCheckbox !== null && e.shiftKey ) {
				// Check or uncheck this one and all in-between checkboxes,
				// except for disabled ones
				$box
					.slice(
						Math.min( $box.index( prevCheckbox ), $box.index( e.target ) ),
						Math.max( $box.index( prevCheckbox ), $box.index( e.target ) ) + 1
					)
					.filter( function () {
						return !this.disabled;
					} )
					.prop( 'checked', !!e.target.checked );
			}
			// Either way, update the prevCheckbox variable to the one clicked now
			prevCheckbox = e.target;
		} );
		return $box;
	};

	/**
	 * @class jQuery
	 * @mixins jQuery.plugin.checkboxShiftClick
	 */

}( jQuery ) );