Search code examples
jquerylaravel-5.3gulp-watchsummernotelaravel-elixir

How can I solve Uncaught TypeError: Cannot read property 'call' of undefined?


I implement summernote in my project

My project use laravel 5.3 & vue.js 2

My javascript code like this :

$(function () {
    $('.summernote').summernote({
        height: 200
    });
});

I compile my project use laravel-elixir

If I run : gulp watch and run my form(the textarea use summernote), it's no error

But if I run : gulp --productionand run my form(the textarea use summernote), there exist error :

Uncaught TypeError: Cannot read property 'call' of undefined

How can I solve the error?


Solution

  • There is an error on autosize.min.js According to this Post Try:

    autosize.js instead of autosize.min.js.

    I post my comment to answer for future reference.