Merge "Changes for Mirandese (mwl)"
[lhc/web/wiklou.git] / resources / src / jquery / jquery.expandableField.js
index 4f67b87..c3d39da 100644 (file)
  *             $('#textbox').expandableField();
  *
  * Options:
- *
  */
 ( function ( $ ) {
 
        $.expandableField = {
                /**
                 * Expand the field, make the callback
+                *
+                * @param {jQuery.Event} e Event
+                * @param {Object} context
                 */
                expandField: function ( e, context ) {
                        context.config.beforeExpand.call( context.data.$field, context );
@@ -29,6 +31,9 @@
                },
                /**
                 * Condense the field, make the callback
+                *
+                * @param {jQuery.Event} e Event
+                * @param {Object} context
                 */
                condenseField: function ( e, context ) {
                        context.config.beforeCondense.call( context.data.$field, context );
@@ -41,7 +46,7 @@
                 * Sets the value of a property, and updates the widget accordingly
                 *
                 * @param {Object} context
-                * @param {String} property Name of property
+                * @param {string} property Name of property
                 * @param {Mixed} value Value to set property with
                 */
                configure: function ( context, property, value ) {