Skip to content

Commit

Permalink
Merge pull request #41 from omnuvito/improving-docs
Browse files Browse the repository at this point in the history
Improving docs
  • Loading branch information
José Alejandro Alvarez Mendoza committed Mar 29, 2016
2 parents 849fd35 + fca2050 commit 8fefc44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Docs/Documentation/Setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The TinyMCE helper is basically just a convenience helper that allows you to use
There two ways you can use this plugin, simply use the helper or load the editor "by hand" using

```php
$this->Html->script('/TinyMCE/js/tiny_mce/tiny_mce.js', array(
$this->Html->script('/TinyMCE/js/tiny_mce4/tinymce.min.js', array(
'inline' => false
));
```
Expand All @@ -26,7 +26,7 @@ and placing your own script in the head of the page. Please note that the helper
If your app is not set up to work in the top level of your host / but instead in /yourapp/ the automatic inclusion of the script wont work. You'll manually have to add the js file to your app:

```php
$this->Html->script('/yourapp/TinyMCE/js/tiny_mce/tiny_mce.js', array(
$this->Html->script('/yourapp/TinyMCE/js/tiny_mce4/tinymce.min.js', array(
'inline' => false
));
```

0 comments on commit 8fefc44

Please sign in to comment.