Repository: flex-asjs Updated Branches: refs/heads/develop c044d36f8 -> 6f12327c1
JQuery $ function should be declared to accept one argument. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/6f12327c Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/6f12327c Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/6f12327c Branch: refs/heads/develop Commit: 6f12327c14df45d200b88cfefa29e698e8e21f98 Parents: c044d36 Author: Peter Ent <[email protected]> Authored: Wed Sep 2 11:45:24 2015 -0400 Committer: Peter Ent <[email protected]> Committed: Wed Sep 2 11:45:24 2015 -0400 ---------------------------------------------------------------------- frameworks/projects/JQuery/js/src/jquery_externals.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f12327c/frameworks/projects/JQuery/js/src/jquery_externals.js ---------------------------------------------------------------------- diff --git a/frameworks/projects/JQuery/js/src/jquery_externals.js b/frameworks/projects/JQuery/js/src/jquery_externals.js index a14392f..a49165a 100644 --- a/frameworks/projects/JQuery/js/src/jquery_externals.js +++ b/frameworks/projects/JQuery/js/src/jquery_externals.js @@ -16,5 +16,6 @@ /** * This file is used to establish external APIs so the closure-compiler * can resolve references and won't minify names + * @param {Object} arg Selector. */ -function $() {} +function $(arg) {}
