dante-editor 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +45 -24
- data/ROADMAP.md +12 -0
- data/TODO.md +1 -17
- data/app/assets/javascripts/dante/editor.js.coffee +149 -45
- data/app/assets/javascripts/dante/menu.js.coffee +13 -2
- data/app/assets/javascripts/dante/tooltip.js.coffee +87 -32
- data/app/assets/stylesheets/dante.css.scss +1 -2
- data/app/assets/stylesheets/dante/_debug.scss +2 -2
- data/app/assets/stylesheets/dante/_graf.scss +141 -68
- data/app/assets/stylesheets/dante/_icons.scss +22 -23
- data/app/assets/stylesheets/dante/_menu.scss +112 -110
- data/app/assets/stylesheets/dante/_needsorder.scss +7 -1
- data/app/assets/stylesheets/dante/_post.scss +7 -9
- data/app/assets/stylesheets/dante/_scaffold.scss +16 -21
- data/app/assets/stylesheets/dante/_tooltip.scss +103 -104
- data/app/assets/stylesheets/dante/_utilities.scss +2 -3
- data/app/assets/stylesheets/{old → temp}/fonts.css.scss +0 -26
- data/app/assets/stylesheets/temp/medium.css +12404 -0
- data/app/assets/stylesheets/temp/review.scss +21 -0
- data/app/assets/stylesheets/temp/structure.haml +22 -0
- data/lib/dante-editor/version.rb +1 -1
- data/source/assets/images/dante-logo.png +0 -0
- data/source/assets/stylesheets/_scaffold.scss +12 -0
- data/source/assets/stylesheets/_tooltips.scss +216 -0
- data/source/assets/stylesheets/all.css.scss +51 -26
- data/source/embeds.html.erb +13 -15
- data/source/index.html.erb +7 -24
- data/source/layouts/layout.erb +7 -3
- data/source/partials/_content.erb +6 -3
- data/source/partials/_example_1.erb +15 -0
- data/source/partials/_example_2.erb +1 -2
- data/source/partials/_example_3.erb +1 -14
- data/source/partials/_readme.markdown +13 -67
- data/source/partials/test/_example_1.erb +22 -1
- metadata +10 -6
- data/app/assets/stylesheets/old/base.css.scss +0 -57
- data/app/assets/stylesheets/old/editor.css.scss +0 -662
- data/source/readme.html.erb +0 -28
data/source/readme.html.erb
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Dante Editor example
|
3
|
-
---
|
4
|
-
|
5
|
-
<div class="welcome">
|
6
|
-
<header>
|
7
|
-
<img src="images/icon-logo.png" alt="dante logo" width="90" >
|
8
|
-
<h1 class="main-title">Dante Wysiwyg</h1>
|
9
|
-
</header>
|
10
|
-
|
11
|
-
|
12
|
-
<div id="editor" class="postField postField--body editable smart-media-plugin">
|
13
|
-
<%= partial "partials/readme" %>
|
14
|
-
</div>
|
15
|
-
|
16
|
-
</div>
|
17
|
-
|
18
|
-
|
19
|
-
<script type="text/javascript">
|
20
|
-
editor = new Dante.Editor(
|
21
|
-
{
|
22
|
-
el: "#editor",
|
23
|
-
upload_url: "/images.json",
|
24
|
-
debug: true
|
25
|
-
}
|
26
|
-
);
|
27
|
-
editor.start()
|
28
|
-
</script>
|