This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit d30a593a7520f180dc6c5fea8100074f1a6cc2bd Author: Josh Tynjala <[email protected]> AuthorDate: Wed Apr 30 10:18:26 2025 -0700 ASDoc: package name in symbol view links to package URL --- examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml b/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml index d4641560a1..35d56dc090 100644 --- a/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml +++ b/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml @@ -20,7 +20,7 @@ limitations under the License. <rs:DocPage xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:js="library://ns.apache.org/royale/basic" xmlns:rs="library://ns.apache.org/royale/site" - xmlns:local="*" xmlns:models="org.apache.royale.html.beads.models.*" + xmlns:local="*" xmlns:models="org.apache.royale.html.beads.models.*" xmlns:html="library://ns.apache.org/royale/html" width="100%" height="100%" initComplete="applicationModel.addEventListener('packageListChanged', packagesReadyHandler)" > @@ -276,6 +276,10 @@ limitations under the License. width: 90px; line-height: 20px; } + + .detailInfo { + text-decoration: none; + } .title { font-size: 20px; @@ -487,7 +491,7 @@ limitations under the License. <js:HorizontalLayout /> </js:beads> <js:Label className="detailCaption" text="Package" /> - <js:Label className="detailInfo" id="packageName" text="{ASDocModel(applicationModel).currentPackage}" /> + <html:A className="detailInfo" id="packageName" text="{ASDocModel(applicationModel).currentPackage}" href="#!{ASDocModel(applicationModel).currentPackage}" /> </js:Group> <js:Group> <js:beads>
