- Removing stray whitspaces.
parent
7c447cc8a5
commit
4ea672bfd1
|
@ -1372,7 +1372,7 @@ function drupal_add_js($data = NULL, $type = 'module', $scope = 'header', $defer
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Helper function for drupal_add_js().
|
* Helper function for drupal_add_js().
|
||||||
*/
|
*/
|
||||||
function _drupal_add_js($data, $type, $scope, $defer, $cache) {
|
function _drupal_add_js($data, $type, $scope, $defer, $cache) {
|
||||||
static $javascript = array();
|
static $javascript = array();
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ function db_status_report($phase) {
|
||||||
);
|
);
|
||||||
|
|
||||||
// Extract version number
|
// Extract version number
|
||||||
list($version) = explode('-', $info);
|
list($version) = explode('-', $info);
|
||||||
if (version_compare($version, DRUPAL_MINIMUM_MYSQL) < 0) {
|
if (version_compare($version, DRUPAL_MINIMUM_MYSQL) < 0) {
|
||||||
$form['mysql']['severity'] = REQUIREMENT_ERROR;
|
$form['mysql']['severity'] = REQUIREMENT_ERROR;
|
||||||
$form['mysql']['description'] = $t('Your MySQL Server is too old. Drupal requires at least MySQL %version.', array('%version' => DRUPAL_MINIMUM_MYSQL));
|
$form['mysql']['description'] = $t('Your MySQL Server is too old. Drupal requires at least MySQL %version.', array('%version' => DRUPAL_MINIMUM_MYSQL));
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Drupal.textareaAttach = function() {
|
Drupal.textareaAttach = function() {
|
||||||
$('textarea.resizable:not(.processed)').each(function() {
|
$('textarea.resizable:not(.processed)').each(function() {
|
||||||
var textarea = $(this).addClass('processed'), staticOffset = null;
|
var textarea = $(this).addClass('processed'), staticOffset = null;
|
||||||
|
|
||||||
$(this).wrap('<div class="resizable-textarea"></div>')
|
$(this).wrap('<div class="resizable-textarea"></div>')
|
||||||
.parent().append($('<div class="grippie"></div>').mousedown(startDrag));
|
.parent().append($('<div class="grippie"></div>').mousedown(startDrag));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue