diff options
author | Jayaram Pai | 2014-04-29 08:46:18 +0530 |
---|---|---|
committer | prashantsinalkar | 2019-09-01 22:12:25 +0530 |
commit | aed2bf0e36a43aa936233e218c23c82bddd981ec (patch) | |
tree | 2c32fa00628f6b4e2ec1bcd4a7d9edbf4d2db7b1 | |
parent | 3c2681e374383438a84009edbe96b9501c67b25f (diff) | |
download | r_tbc_fixer-aed2bf0e36a43aa936233e218c23c82bddd981ec.tar.gz r_tbc_fixer-aed2bf0e36a43aa936233e218c23c82bddd981ec.tar.bz2 r_tbc_fixer-aed2bf0e36a43aa936233e218c23c82bddd981ec.zip |
updated uncommitted files
-rw-r--r-- | css/scilab_fixer.css | 3 | ||||
-rwxr-xr-x | scilab_fixer.module | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/css/scilab_fixer.css b/css/scilab_fixer.css index 37097a0..2468fb4 100644 --- a/css/scilab_fixer.css +++ b/css/scilab_fixer.css @@ -6,6 +6,9 @@ width: 620px; overflow-x: auto; } +#fix-caption-form #edit-example { + height: 250px; +} #fix-caption-page #updating, #fix-caption-page #done { display: none; diff --git a/scilab_fixer.module b/scilab_fixer.module index ce214cf..fb1a831 100755 --- a/scilab_fixer.module +++ b/scilab_fixer.module @@ -94,6 +94,7 @@ $page_content .= "<span id='done'>Done.</span>"; $page_content .= drupal_get_form("scilab_fixer_caption_form"); $page_content .= "</div>"; + $page_content .= "<small>* Selecting text from above code-area with mouse will add it to the caption textbox.</small>"; return $page_content; } @@ -162,5 +163,6 @@ function scilab_fixer_init() { drupal_add_css(drupal_get_path("module", "scilab_fixer") . "/css/scilab_fixer.css"); drupal_add_js(drupal_get_path("module", "scilab_fixer") . "/js/scilab_fixer.js"); + drupal_add_js(drupal_get_path("module", "scilab_fixer") . "/js/selection.js"); } ?> |