我对/ js / mage / adminhtml / wysiwyg / tiny_mce目录中的setup.js设置文件进行了一些更改。 升级后这些变化会丢失吗?有没有办法在创建前端主题时复制此文件夹?
由于
答案 0 :(得分:0)
是, 您可以在JS文件夹中添加自定义文件夹,创建自己的js并粘贴下面的代码,它会覆盖js函数,并在需要的地方调用它
if (typeof tinyMceWysiwygSetup != 'undefined') {
tinyMceWysiwygSetup.addMethods({
//here is example for you, suppose if you have changed something in below function
initialize: function(htmlId, config)
{
this.id = htmlId;
this.config = config;
varienGlobalEvents.attachEventHandler('tinymceChange', this.onChangeContent.bind(this));
this.notifyFirebug();
if(typeof tinyMceEditors == 'undefined') {
tinyMceEditors = $H({});
}
tinyMceEditors.set(this.id, this);
// Paste here your custom code
}
});
}
可能对你有帮助。