diff --git a/ui (gen4)/features/ui-widgets.js b/ui (gen4)/features/ui-widgets.js index 3f434d49..a1c61f65 100755 --- a/ui (gen4)/features/ui-widgets.js +++ b/ui (gen4)/features/ui-widgets.js @@ -605,6 +605,7 @@ var DialogsActions = actions.Actions({ .append($('
') .text('Features: ' + that.getHandlerSourceTags(action).join(', '))) .append($('
')) + // parse the action doc... .append($('
')
 						.html((doc[action][1] || '')
 							// html stuff...
@@ -625,7 +626,11 @@ var DialogsActions = actions.Actions({
 
 							// action links...
 							.replace(/(\s)(\.([\w_]+[\w\d_]*)\([^)]*\))/g, 
-								'$1$2')
+								function(match, a, b, c){
+									return c == action ?
+										`${a}${b}`
+										: `${a}${b}`
+								})
 					)))
 			})