diff --git a/ui (gen4)/features/collections.js b/ui (gen4)/features/collections.js index 6ca2d3a6..4631e7ef 100755 --- a/ui (gen4)/features/collections.js +++ b/ui (gen4)/features/collections.js @@ -1359,7 +1359,7 @@ var UICollectionActions = actions.Actions({ }) }) })], - browseImageCollections: ['Image/$Collections...', + browseImageCollections: ['Collections|Image/$Collections...', {dialogTitle: 'Image Collections...'}, widgets.makeUIDialog(function(gid){ var that = this diff --git a/ui (gen4)/features/ui-widgets.js b/ui (gen4)/features/ui-widgets.js index 6a65d9e8..3a101d6c 100755 --- a/ui (gen4)/features/ui-widgets.js +++ b/ui (gen4)/features/ui-widgets.js @@ -873,6 +873,7 @@ var UIIntrospectionActions = actions.Actions({ .addClass('help-dialog') actions.forEach(function(action){ + var toggler = that.isToggler(action) res.append($('
') .prop('tabindex', true) .append($('

') @@ -880,10 +881,15 @@ var UIIntrospectionActions = actions.Actions({ .append($('') .text(doc[action][0])) .append($('
') - .html('Features: ' - + that.getHandlerSourceTags(action) + .html( + // features... + 'Features: ' + that.getHandlerSourceTags(action) .map(feature2lnk) - .join(', '))) + .join(', ') + // toggler states... + + (toggler ? + ('
Toggler states: '+ that[action]('??').join(', ')) + : ''))) .append($('
')) // parse the action doc... .append($('
')