Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Context 7.x-3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
olofbokedal committed Mar 1, 2019
1 parent c01d9b0 commit 0549486
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ files[] = tests/context.test
files[] = tests/context.conditions.test
files[] = tests/context.reactions.test

; Information added by Drupal.org packaging script on 2018-11-30
version = "7.x-3.9"
; Information added by Drupal.org packaging script on 2019-02-26
version = "7.x-3.10"
core = "7.x"
project = "context"
datestamp = "1543594688"
datestamp = "1551220089"
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x

files[] = plugins/context_layouts_reaction_block.inc

; Information added by Drupal.org packaging script on 2018-11-30
version = "7.x-3.9"
; Information added by Drupal.org packaging script on 2019-02-26
version = "7.x-3.10"
core = "7.x"
project = "context"
datestamp = "1543594688"
datestamp = "1551220089"
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ configure = admin/structure/context
files[] = context.module
files[] = tests/context_ui.test

; Information added by Drupal.org packaging script on 2018-11-30
version = "7.x-3.9"
; Information added by Drupal.org packaging script on 2019-02-26
version = "7.x-3.10"
core = "7.x"
project = "context"
datestamp = "1543594688"
datestamp = "1551220089"
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ DrupalContextBlockForm = function(blockForm) {

// Hide enabled blocks from selector that are used
$('table.context-blockform-region tr').each(function() {
var bid = $(this).attr('id');
var bid = Drupal.checkPlain($(this).attr('id'));
$('div.context-blockform-selector input[value="'+bid+'"]').parents('div.form-item').eq(0).hide();
});
// Show blocks in selector that are unused
Expand Down

0 comments on commit 0549486

Please sign in to comment.