annotate media/js/tiny_mce/plugins/print/editor_plugin_src.js @ 184:4e1abeb593c2
Updating jQuery and jQuery UI. This is for ticket #57. Noticed GCalendar wasn't opening the datepicker on the correct date until I set a dateFormat option. Fixed member map to undisable the update button if you type in a location that can't be geocoded.
author |
Brian Neal <bgneal@gmail.com> |
date |
Sun, 28 Mar 2010 22:19:08 +0000 |
parents |
149c3567fec1 |
children |
|
rev |
line source |
bgneal@45
|
1 /**
|
bgneal@183
|
2 * editor_plugin_src.js
|
bgneal@45
|
3 *
|
bgneal@183
|
4 * Copyright 2009, Moxiecode Systems AB
|
bgneal@183
|
5 * Released under LGPL License.
|
bgneal@183
|
6 *
|
bgneal@183
|
7 * License: http://tinymce.moxiecode.com/license
|
bgneal@183
|
8 * Contributing: http://tinymce.moxiecode.com/contributing
|
bgneal@45
|
9 */
|
bgneal@45
|
10
|
bgneal@45
|
11 (function() {
|
bgneal@45
|
12 tinymce.create('tinymce.plugins.Print', {
|
bgneal@45
|
13 init : function(ed, url) {
|
bgneal@45
|
14 ed.addCommand('mcePrint', function() {
|
bgneal@45
|
15 ed.getWin().print();
|
bgneal@45
|
16 });
|
bgneal@45
|
17
|
bgneal@45
|
18 ed.addButton('print', {title : 'print.print_desc', cmd : 'mcePrint'});
|
bgneal@45
|
19 },
|
bgneal@45
|
20
|
bgneal@45
|
21 getInfo : function() {
|
bgneal@45
|
22 return {
|
bgneal@45
|
23 longname : 'Print',
|
bgneal@45
|
24 author : 'Moxiecode Systems AB',
|
bgneal@45
|
25 authorurl : 'http://tinymce.moxiecode.com',
|
bgneal@45
|
26 infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print',
|
bgneal@45
|
27 version : tinymce.majorVersion + "." + tinymce.minorVersion
|
bgneal@45
|
28 };
|
bgneal@45
|
29 }
|
bgneal@45
|
30 });
|
bgneal@45
|
31
|
bgneal@45
|
32 // Register plugin
|
bgneal@45
|
33 tinymce.PluginManager.add('print', tinymce.plugins.Print);
|
bgneal@45
|
34 })();
|