diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/color/preview.js | 8 | ||||
-rw-r--r-- | modules/forum/forum-topic-list.tpl.php | 2 | ||||
-rw-r--r-- | modules/simpletest/files/README.txt | 2 | ||||
-rw-r--r-- | modules/simpletest/files/javascript-1.txt | 2 | ||||
-rw-r--r-- | modules/simpletest/files/php-1.txt | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/modules/color/preview.js b/modules/color/preview.js index 814a2d20d..719b9b859 100644 --- a/modules/color/preview.js +++ b/modules/color/preview.js @@ -2,14 +2,14 @@ (function ($) { Drupal.color = { - callback: function(context, settings, form, farb, height, width) { + callback: function(context, settings, form, farb, height, width) { // Solid background. $('#preview', form).css('backgroundColor', $('#palette input[name="palette[base]"]', form).val()); - + // Text preview $('#text', form).css('color', $('#palette input[name="palette[text]"]', form).val()); $('#text a, #text h2', form).css('color', $('#palette input[name="palette[link]"]', form).val()); - + // Set up gradients if there are some. var color_start, color_end; for (i in settings.gradients) { @@ -32,4 +32,4 @@ } } }; -})(jQuery);
\ No newline at end of file +})(jQuery); diff --git a/modules/forum/forum-topic-list.tpl.php b/modules/forum/forum-topic-list.tpl.php index e290b4f39..c223686a9 100644 --- a/modules/forum/forum-topic-list.tpl.php +++ b/modules/forum/forum-topic-list.tpl.php @@ -7,7 +7,7 @@ * * Available variables: * - $header: The table header. This is pre-generated with click-sorting - * information. If you need to change this, see + * information. If you need to change this, see * template_preprocess_forum_topic_list(). * - $pager: The pager to display beneath the table. * - $topics: An array of topics to be displayed. diff --git a/modules/simpletest/files/README.txt b/modules/simpletest/files/README.txt index d808510da..1ada14e29 100644 --- a/modules/simpletest/files/README.txt +++ b/modules/simpletest/files/README.txt @@ -2,4 +2,4 @@ $Id$ These files are use in some tests that upload files or other operations were a file is useful. These files are copied to the files directory as specified -in the site settings. Other tests files are generated in order to save space.
\ No newline at end of file +in the site settings. Other tests files are generated in order to save space. diff --git a/modules/simpletest/files/javascript-1.txt b/modules/simpletest/files/javascript-1.txt index e0206ba83..efd44fd93 100644 --- a/modules/simpletest/files/javascript-1.txt +++ b/modules/simpletest/files/javascript-1.txt @@ -1,3 +1,3 @@ <script> alert('SimpleTest PHP was executed!'); -</script>
\ No newline at end of file +</script> diff --git a/modules/simpletest/files/php-1.txt b/modules/simpletest/files/php-1.txt index dc8e64213..52788b6fe 100644 --- a/modules/simpletest/files/php-1.txt +++ b/modules/simpletest/files/php-1.txt @@ -1,3 +1,3 @@ <?php print 'SimpleTest PHP was executed!'; -?>
\ No newline at end of file +?> |