We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02bfd7c + 5a234b3 commit d37607bCopy full SHA for d37607b
theme/material/javascripts/application.js
@@ -339,10 +339,10 @@ OpenConext.Discover = function () {
339
accessLink
340
.insertAfter(selectionInsertionPoint)
341
.each(function () {
342
- var accessLink = $(this);
343
- var swapText = accessLink.attr('data-toggle-text');
344
- accessLink.attr('data-toggle-text', accessLink.html());
345
- accessLink.html(swapText);
+ var action = $(this).find('.action');
+ var swapText = action.attr('data-toggle-text');
+ action.attr('data-toggle-text', action.html());
+ action.html(swapText).removeClass('outline deleteable img').addClass('white');
346
});
347
checkVisible();
348
}
0 commit comments