This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 2543b61ab4c81ed1d56733f6d540ca980cce6d03
Author: Alex Harui <[email protected]>
AuthorDate: Tue Feb 6 00:46:15 2018 -0800

    format some attributes differently
---
 examples/royale/ASDoc/src/main/royale/models/ASDocModel.as | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/examples/royale/ASDoc/src/main/royale/models/ASDocModel.as 
b/examples/royale/ASDoc/src/main/royale/models/ASDocModel.as
index 0815385..e604b4d 100644
--- a/examples/royale/ASDoc/src/main/royale/models/ASDocModel.as
+++ b/examples/royale/ASDoc/src/main/royale/models/ASDocModel.as
@@ -590,10 +590,15 @@ package models
                         obj.name = p;
                     var s:String = "";
                     var firstOne:Boolean = true;
+                    var joiner:String = ", ";
+                    if (obj.name == "commentary")
+                       joiner = "  ";
+                    if (obj.name == "example")
+                        joiner = "<br/>";
                     for each (var q:String in o)
                     {
                         if (!firstOne)
-                            s += ", ";
+                            s += joiner;
                         firstOne = false;
                         s += q;
                     }

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to