You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2015/09/02 17:45:26 UTC

git commit: [flex-asjs] [refs/heads/develop] - JQuery $ function should be declared to accept one argument.

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 <pe...@apache.org>
Authored: Wed Sep 2 11:45:24 2015 -0400
Committer: Peter Ent <pe...@apache.org>
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) {}