1

Firefox (Firefox のみ) で redactor を使用している場合。

コンソールに、ランダム スクリプトのエラー 0x80004005 が表示され続けます。

たとえば、自分のページに facebook の sdk がある場合、エラーはその jssdk から発生します。

SDKを削除すると、Redactor.min.jsからエラーが発生します...

これが Redactor.min.js にあるすべての ajax のものです

handler: function()
        {
            $.ajax({
                url: this.opts.handler,
                type: 'post',
                data: 'redactor=' + escape(encodeURIComponent(this.getCode())),
                success: $.proxy(function(data)
                {
                    this.setCode(data);
                    this.syncCode();

                }, this)
            });

        },



// dragupload
                if ($('#redactor_file').size() !== 0)
                {
                    $('#redactor_file').dragupload(
                    {
                        url: this.opts.imageUpload,
                        success: $.proxy(this.imageUploadCallback, this)
                    });
                }

                // ajax upload
                this.uploadInit('redactor_file', { auto: true, url: this.opts.imageUpload, success: $.proxy(this.imageUploadCallback, this)  });

                $('#redactor_upload_btn').click($.proxy(this.imageUploadCallbackLink, this));

            }, this);

            this.modalInit(RLANG.image, this.opts.path + '/plugins/image.html', 570, handler, true);

        },


$.ajax({
                dataType: 'html',
                type: 'get',
                url: url,
                success: $.proxy(function(data)
                {...
4

0 に答える 0