Skip to content
Snippets Groups Projects
Commit 7e3e7599 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#510996 by salvatored, tuffnatty, jide: the @disabled jQuery selector was...

#510996 by salvatored, tuffnatty, jide: the @disabled jQuery selector was deprecated in v1.2, so do not use it anymore
parent 57b56c89
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ Drupal.behaviors.teaser = function(context) {
Drupal.behaviors.textarea(teaser.parentNode);
}
// Set initial visibility
if ($(teaser).is('[@disabled]')) {
if ($(teaser).is(':disabled')) {
$(teaser).parent().hide();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment