Fixing fullpage option.

skala
Julio Montoya 12 years ago
parent fc27a500de
commit 9fe0a6f804
  1. 1
      src/ChamiloLMS/Component/Editor/Toolbar/Basic.php
  2. 2
      src/ChamiloLMS/Component/Editor/Toolbar/Documents.php
  3. 2
      src/ChamiloLMS/Component/Editor/Toolbar/IntroductionTool.php
  4. 2
      src/ChamiloLMS/Component/Editor/Toolbar/LearningPathDocuments.php
  5. 2
      src/ChamiloLMS/Component/Editor/Toolbar/Message.php
  6. 5
      src/ChamiloLMS/Component/Editor/Toolbar/TestFreeAnswer.php
  7. 2
      src/ChamiloLMS/Component/Editor/Toolbar/UniqueAnswerImage.php

@ -74,7 +74,6 @@ class Basic
$config['extraPlugins'] = 'oembed,video';
if (isset($this->config)) {
$this->config = array_merge($config, $this->config);
} else {

@ -25,7 +25,7 @@ class Documents extends Basic
array('name' => 'mode')
);
$config['fullPage'] = 'true';
$config['fullPage'] = true;
//$config['height'] = '200';
return $config;

@ -25,7 +25,7 @@ class IntroductionTool extends Basic
array('name' => 'mode')
);
$config['fullPage'] = 'true';
$config['fullPage'] = true;
//$config['height'] = '200';
return $config;

@ -25,7 +25,7 @@ class LearningPathDocuments extends Basic
array('name' => 'others')
);
$config['fullPage'] = 'true';
$config['fullPage'] = true;
return $config;
}

@ -24,7 +24,7 @@ class Message extends Basic
array('name' => 'others')
);
$config['fullPage'] = 'true';
$config['fullPage'] = true;
//$config['height'] = '200';
return $config;

@ -21,10 +21,11 @@ class TestFreeAnswer extends Basic
array('name' => 'styles'),
array('name' => 'colors'),
array('name' => 'tools'),
array('name' => 'others')
array('name' => 'others'),
array('name' => 'mode') // source
);
$config['fullPage'] = 'true';
$config['fullPage'] = false;
//$config['height'] = '200';
return $config;

@ -25,7 +25,7 @@ class UniqueAnswerImage extends Basic
array('name' => 'mode')
);
$config['fullPage'] = 'true';
$config['fullPage'] = true;
//$config['height'] = '200';
return $config;

Loading…
Cancel
Save