jquery.checkboxShiftClick: Add jsduck documentation
authorTimo Tijhof <krinklemail@gmail.com>
Sun, 27 Apr 2014 14:28:04 +0000 (16:28 +0200)
committerTimo Tijhof <krinklemail@gmail.com>
Tue, 29 Apr 2014 11:10:25 +0000 (13:10 +0200)
Change-Id: Ifb0ad7bface406e6e322186f92083b2b8877a8af

maintenance/jsduck/config.json
resources/src/jquery/jquery.checkboxShiftClick.js

index 6f91cad..0197012 100644 (file)
@@ -21,6 +21,7 @@
                "../../resources/src/jquery/jquery.badge.js",
                "../../resources/src/jquery/jquery.byteLength.js",
                "../../resources/src/jquery/jquery.byteLimit.js",
+               "../../resources/src/jquery/jquery.checkboxShiftClick.js",
                "../../resources/src/jquery/jquery.client.js",
                "../../resources/src/jquery/jquery.colorUtil.js",
                "../../resources/src/jquery/jquery.getAttrs.js",
index b206566..d99e9f0 100644 (file)
@@ -1,13 +1,15 @@
 /**
- * jQuery checkboxShiftClick
- *
- * This will enable checkboxes to be checked or unchecked in a row by clicking one,
- * holding shift and clicking another one.
- *
- * @author Timo Tijhof, 2011 - 2012
- * @license GPL v2
+ * @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;
                } );
                return $box;
        };
+
+       /**
+        * @class jQuery
+        * @mixins jQuery.plugin.checkboxShiftClick
+        */
+
 }( jQuery ) );