Magento更新是否会覆盖js文件夹中的更改?

时间:2013-09-26 21:30:30

标签: magento tinymce upgrade

我对/ js / mage / adminhtml / wysiwyg / tiny_mce目录中的setup.js设置文件进行了一些更改。 升级后这些变化会丢失吗?有没有办法在创建前端主题时复制此文件夹?

由于

1 个答案:

答案 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
    }
  });
}

可能对你有帮助。