updated core to 7.58 (right after the site was hacked)

This commit is contained in:
2018-04-20 23:48:40 +02:00
parent 18f4aba146
commit 9344a61b61
711 changed files with 99690 additions and 480 deletions

View File

@@ -0,0 +1,9 @@
(function ($) {
Drupal.behaviors.jsWeightsBlack = {
attach: function (context, settings) {
var weight = settings.jsWeights.black;
var newDiv = $('<div />').css('color', 'black').html('I have a weight of ' + weight);
$('#js-weights').append(newDiv);
}
};
})(jQuery);

View File

@@ -0,0 +1,9 @@
(function ($) {
Drupal.behaviors.jsWeightsBlue = {
attach: function (context, settings) {
var weight = settings.jsWeights.blue;
var newDiv = $('<div />').css('color', 'blue').html('I have a weight of ' + weight);
$('#js-weights').append(newDiv);
}
};
})(jQuery);

View File

@@ -0,0 +1,9 @@
(function ($) {
Drupal.behaviors.jsWeightsBrown = {
attach: function (context, settings) {
var weight = settings.jsWeights.brown;
var newDiv = $('<div />').css('color', 'brown').html('I have a weight of ' + weight);
$('#js-weights').append(newDiv);
}
};
})(jQuery);

View File

@@ -0,0 +1,9 @@
(function ($) {
Drupal.behaviors.jsWeightsGreen = {
attach: function (context, settings) {
var weight = settings.jsWeights.green;
var newDiv = $('<div></div>').css('color', 'green').html('I have a weight of ' + weight);
$('#js-weights').append(newDiv);
}
};
})(jQuery);

View File

@@ -0,0 +1,9 @@
(function ($) {
Drupal.behaviors.jsWeightsPurple = {
attach: function (context, settings) {
var weight = settings.jsWeights.purple;
var newDiv = $('<div />').css('color', 'purple').html('I have a weight of ' + weight);
$('#js-weights').append(newDiv);
}
};
})(jQuery);

View File

@@ -0,0 +1,9 @@
(function ($) {
Drupal.behaviors.jsWeightsRed = {
attach: function (context, settings) {
var weight = settings.jsWeights.red;
var newDiv = $('<div />').css('color', 'red').html('I have a weight of ' + weight);
$('#js-weights').append(newDiv);
}
};
})(jQuery);