Sha256: a34d31ebfe49f3051511b1092435f7ebca017adfe8042682e82b3e2e585f03ad

Contents?: true

Size: 1.51 KB

Versions: 3

Compression:

Stored size: 1.51 KB

Contents

/**
 * Textile driver for the text editor that ships with Zen.
 *
 * @since  0.2.6
 */
Zen.Editor.Textile = new Class(
{
    Extends: Zen.Editor,

    /**
     * Overrides Zen.Editor.bold.
     *
     * @since  0.2.6
     * @param  {element} editor The textarea to insert the tags into.
     */
    bold: function(editor)
    {
        editor.insertAroundCursor({before: '*', after: '*'});
    },

    /**
     * Overrides Zen.Editor.italic.
     *
     * @since  0.2.6
     * @param  {element} editor The textarea to insert the tags into.
     */
    italic: function(editor)
    {
        editor.insertAroundCursor({before: '_', after: '_'});
    },

    /**
     * Overrides Zen.Editor.link.
     *
     * @since  0.2.6
     * @param  {element} editor The textarea to insert the tags into.
     */
    link: function(editor)
    {
        var link = prompt('URL', 'http://');

        editor.insertAroundCursor(
        {
            before: '"',
            after:  '":' + link
        });
    },

    /**
     * Overrides Zen.Editor.ul.
     *
     * @since  0.2.6
     * @param  {element} editor The textarea to insert the tags into.
     */
    ul: function(editor)
    {
        editor.insertAroundCursor(
        {
            before: "\n* "
        });
    },

    /**
     * Overrides Zen.Editor.ol.
     *
     * @since  0.2.6
     * @param  {element} editor The textarea to insert the tags into.
     */
    ol: function(editor)
    {
        editor.insertAroundCursor(
        {
            before: "\n# "
        });
    }
});

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
zen-0.3 lib/zen/public/admin/js/zen/lib/editor/textile.js
zen-0.3b1 lib/zen/public/admin/js/zen/lib/editor/textile.js
zen-0.3b lib/zen/public/admin/js/zen/lib/editor/textile.js