Sha256: 0f6da27afbec676ccd749d9622d07d348a058f2ce595cd2ec800351aeec77fb7

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

<% content_for :javascripts do %>
  <script type="text/javascript">
    var CKEDITOR_BASEPATH = '/assets/ckeditor/';
  </script>

  <%= javascript_include_tag 'ckeditor/ckeditor' %>
  <%= javascript_include_tag 'ckeditor/adapters/jquery' %>

  <script type="text/javascript">
    $(document).ready(function() {
      // var config = { toolbar: 'Basic', };
      // var config = { toolbar: 'Full', };
      var config = { toolbar: [['Source', '-', 'Bold', 'Italic', 'Underline', '-', 'NumberedList', 'BulletedList', '-', 'Undo', 'Redo', '-', 'Maximize']] };
      $(".rich_text").ckeditor(config);
    });
  </script>
<% end %>

<%
  custom = { :rows => @resource.typus_options_for(:form_rows), :class => "rich_text" }
  options = options.merge!(custom)
%>

<%
  unless options[:disabled] == true
    input = "#{@resource.model_name.underscore.gsub("/", "_")}_#{attribute}"
    insert_picture = <<-DATA
  <small>
    #{link_to "Insert picture",
              {:controller => "/admin/assets", :_popup => true, :_input => input},
              {:class => "iframe", :style => "font-size: 10px; background: black; color: white; padding: 2px 5px; -moz-border-radius: 3px; -webkit-border-radius: 3px;"}}
  </small>
    DATA
    label_text << insert_picture.html_safe
  end
%>

<li id="<%= attribute_id %>">
  <%= form.label attribute, label_text.html_safe %>
  <%= form.text_area attribute, options %>
</li>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
typus-3.1.2 app/views/admin/templates/_text_with_ckeditor_and_assets.html.erb
typus-3.1.1 app/views/admin/templates/_text_with_ckeditor_and_assets.html.erb
typus-3.1.0 app/views/admin/templates/_text_with_ckeditor_and_assets.html.erb