Skip to content

Commit

Permalink
Fixed file browser's scripts and stylesheets urls
Browse files Browse the repository at this point in the history
Fixed urls of scripts and stylesheets from Symphony required to use file
browser that has changed in the version 2.3
  • Loading branch information
joaobarbosa committed Jun 29, 2012
1 parent 3eafcc1 commit 1bb32dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/content.filebrowser.php
Expand Up @@ -12,10 +12,10 @@ public function build($context)
$this->setTitle('Symphony - File Browser for CKEditor');
$this->addElementToHead(new XMLElement('meta', NULL, array('http-equiv' => 'Content-Type', 'content' => 'text/html; charset=UTF-8')), 0);
$this->addElementToHead(new XMLElement('meta', NULL, array('http-equiv' => 'X-UA-Compatible', 'content' => 'IE=edge,chrome=1')), 1);
$this->addStylesheetToHead(URL . '/symphony/assets/basic.css', 'screen', 68);
$this->addStylesheetToHead(URL . '/symphony/assets/admin.css', 'screen', 69);
$this->addStylesheetToHead(URL . '/symphony/assets/css/symphony.css', 'screen', 68);
$this->addStylesheetToHead(URL . '/symphony/assets/css/admin.css', 'screen', 69);
$this->addStylesheetToHead(URL . '/extensions/ckeditor/assets/filebrowser.css', 'screen', 70);
$this->addScriptToHead(URL . '/symphony/assets/jquery.js', 50);
$this->addScriptToHead(URL . '/symphony/assets/js/jquery.js', 50);
$this->addScriptToHead(URL . '/extensions/ckeditor/assets/jquery.form.js', 51);
$this->addScriptToHead(URL . '/extensions/ckeditor/assets/filebrowser.js', 52);
$this->addHeaderToPage('Content-Type', 'text/html; charset=UTF-8');
Expand Down

0 comments on commit 1bb32dc

Please sign in to comment.