File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -937,8 +937,13 @@ async function processReferencePage() {
937
937
undocumented = ' <span class="badge badge-danger">undocumented</span>' ;
938
938
}
939
939
940
+ let notice = '' ;
941
+ if ( action [ 'notice' ] ) {
942
+ notice = ' <p class="tx-primary" data-toggle="tooltip" data-placement="top" title="' + action [ 'notice' ] + '"><i data-feather="info"></i></p>' ;
943
+ }
944
+
940
945
method_table_content += '<tr>\
941
- <td class="tx-medium" style="padding-left: 10px !important;"><a href="' + actionlink + '">' + action [ 'action' ] + undocumented + '</a></td>\
946
+ <td class="tx-medium" style="padding-left: 10px !important;"><a href="' + actionlink + '">' + action [ 'action' ] + undocumented + '</a>' + notice + ' </td>\
942
947
<td class="tx-medium">' + template + '</td>\
943
948
</tr>' ;
944
949
}
You can’t perform that action at this time.
0 commit comments