move inject_html
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/aad82444 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/aad82444 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/aad82444 Branch: refs/heads/core_js_to_as Commit: aad824440e4e9267e5d1c64761334f93104c6212 Parents: 9e7d5b7 Author: Alex Harui <[email protected]> Authored: Wed Dec 16 13:34:14 2015 -0800 Committer: Alex Harui <[email protected]> Committed: Wed Dec 16 13:34:49 2015 -0800 ---------------------------------------------------------------------- .../src/org/apache/flex/jquery/Application.as | 22 ++++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/aad82444/frameworks/projects/JQuery/as/src/org/apache/flex/jquery/Application.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/JQuery/as/src/org/apache/flex/jquery/Application.as b/frameworks/projects/JQuery/as/src/org/apache/flex/jquery/Application.as index 6cb9229..0770269 100644 --- a/frameworks/projects/JQuery/as/src/org/apache/flex/jquery/Application.as +++ b/frameworks/projects/JQuery/as/src/org/apache/flex/jquery/Application.as @@ -21,20 +21,20 @@ package org.apache.flex.jquery import org.apache.flex.core.Application; import org.apache.flex.core.IFlexInfo; - /* - FalconJX will inject html into the index.html file. Surround with - "inject_html" tag as follows: - - <inject_html> - <link rel="stylesheet" - href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" /> - <script src="http://code.jquery.com/jquery-1.9.1.js"></script> - <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script> - </inject_html> - */ public class Application extends org.apache.flex.core.Application implements IFlexInfo { + /** + * FalconJX will inject html into the index.html file. Surround with + * "inject_html" tag as follows: + * + * <inject_html> + * <link rel="stylesheet" + * href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" /> + * <script src="http://code.jquery.com/jquery-1.9.1.js"></script> + * <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script> + * </inject_html> + */ public function Application() { super();
