Added gulp support.
Gulp allows for sanitization before publication. It is similar to make
but has more features.
Change-Id: Ib4cd5042a5af4b63de9d0a5004c2b0c62cb5ca1d
diff --git a/client/catalog-dev/js/autocomplete.js b/client/catalog-dev/js/autocomplete.js
index d6987e2..677e486 100644
--- a/client/catalog-dev/js/autocomplete.js
+++ b/client/catalog-dev/js/autocomplete.js
@@ -17,7 +17,11 @@
}
jQuery.fn.extend({
/**
- * @param {Array<String>|getSuggestions}
+ * This setups up the default autocomplete functionality on an object.
+ * Using either a list of options or supplying a function that returns them,
+ * auto complete will create a menu for users to navigate and select a
+ * valid option.
+ * @param {Array<String>|function(String, function(Array<String>))} suggestions
*/
autoComplete: function(suggestions) {
@@ -174,8 +178,3 @@
});
})();
-/**
- * @callback getSuggestions
- * @param {string} current - The current value of the input field.
- * @param {function}
- */