Index: trunk/extensions/SemanticForms/libs/SF_wikieditor.js |
— | — | @@ -15,24 +15,18 @@ |
16 | 16 | // } |
17 | 17 | |
18 | 18 | // initialize the wikieditor on the specified element |
19 | | - function init ( input_id, params ) { |
| 19 | + this.init = function init ( input_id, params ) { |
20 | 20 | |
21 | 21 | // if ( !isSetUp ) { |
22 | 22 | // isSetUp = true; |
23 | 23 | // setup(); |
24 | 24 | // } |
25 | 25 | |
26 | | -// jQuery( document ).ready( function() { |
27 | | - if ( !jQuery.wikiEditor.isSupported( jQuery.wikiEditor.modules.toolbar ) ) { |
28 | | - return; |
| 26 | + jQuery( document ).ready( function() { |
| 27 | + if ( jQuery.wikiEditor.isSupported( jQuery.wikiEditor.modules.toolbar ) ) { |
| 28 | + jQuery( '#' + input_id ).wikiEditor( 'addModule', jQuery.wikiEditor.modules.toolbar.config.getDefaultConfig() ); |
29 | 29 | } |
30 | | - var input = jQuery( '#' + input_id ); |
31 | | - input.wikiEditor( 'addModule', jQuery.wikiEditor.modules.toolbar.config.getDefaultConfig() ); |
32 | | -// }); |
| 30 | + }); |
33 | 31 | } |
34 | 32 | |
35 | | - // export public funcitons |
36 | | -// this.setup = setup; |
37 | | - this.init = init; |
38 | | - |
39 | 33 | }; |