8ac59801be
Update commons modules to release 7.12, and move the codebase under modules/commons instead of constant fetching from remote repository. The commons.make file removed so it is not required to rebuild groups distribution. Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
26 lines
601 B
Plaintext
26 lines
601 B
Plaintext
<?php
|
|
|
|
/**
|
|
* Update CKEditor config to be more friendly on devices with smaller
|
|
* screen sizes per http://drupal.org/node/1948466.
|
|
*/
|
|
function commons_wysiwyg_update_3100() {
|
|
$revert = array(
|
|
'commons_wysiwyg' => array('ckeditor_profile'),
|
|
);
|
|
features_revert($revert);
|
|
return array();
|
|
}
|
|
|
|
/**
|
|
* Update our CKEditor profile to help resolve issues editing
|
|
* text areas on iPad per https://drupal.org/node/2030087.
|
|
*/
|
|
function commons_wysiwyg_update_3101() {
|
|
$revert = array(
|
|
'commons_wysiwyg' => array('ckeditor_profile'),
|
|
);
|
|
features_revert($revert);
|
|
return array();
|
|
}
|