init import from old mailr project (http://svn.littlegreen.org/mailr/trunk)
This commit is contained in:
commit
51b79e7298
640 changed files with 34651 additions and 0 deletions
18
public/tiny_mce/plugins/advlink/editor_plugin_src.js
vendored
Normal file
18
public/tiny_mce/plugins/advlink/editor_plugin_src.js
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
/* Import plugin specific language pack */
|
||||
tinyMCE.importPluginLanguagePack('advlink', 'en,de,sv,zh_cn,cs,fa,fr_ca,fr,pl,pt_br');
|
||||
|
||||
/**
|
||||
* Insert link template function.
|
||||
*/
|
||||
function TinyMCE_advlink_getInsertLinkTemplate() {
|
||||
var template = new Array();
|
||||
template['file'] = '../../plugins/advlink/link.htm';
|
||||
template['width'] = 400;
|
||||
template['height'] = 420;
|
||||
|
||||
// Language specific width and height addons
|
||||
template['width'] += tinyMCE.getLang('lang_insert_link_delta_width', 0);
|
||||
template['height'] += tinyMCE.getLang('lang_insert_link_delta_height', 0);
|
||||
|
||||
return template;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue