Site for researching all meanings of Hebrew Bible.

Difference between revisions of "MediaWiki:Common.js"

From Without Vowels project
Jump to: navigation, search
Line 13: Line 13:
 
                                                 type: 'callback',
 
                                                 type: 'callback',
 
                                                 execute: function(c) {
 
                                                 execute: function(c) {
                                                         alert(c);
+
                                                         alert(c.$textarea.textSelection( 'getSelection' ));
 
                                                 }
 
                                                 }
 
                                         }
 
                                         }

Revision as of 17:58, 28 October 2011

/* Any JavaScript here will be loaded for all users on every page load. */

$(document).ready(function() {
                $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
                        'section': 'main',
                        'group': 'format',
                        'tools': {
                                'hebrew_link': {
                                        label: 'Hebrew word with dictionary link',
                                        type: 'button',
                                        icon: 'http://www.withoutvowels.org/w/images/9/95/Button_hebrew_word.png',
                                        action: {
                                                type: 'callback',
                                                execute: function(c) {
                                                        alert(c.$textarea.textSelection( 'getSelection' ));
                                                }
                                        }
                                }
                        }
                } );
});