"Cannot read property" ownerDocument "from undefined" when calling bootstrap growl

I used bootstrap-growlfor some time (v1.0.6), and today I updated it to the current v2.0.0.

Now a call to growl raises an exception from jQuery (v1.11 - it matches bootstrap-growl dependencies)

Uncaught TypeError: Cannot read property 'ownerDocument' of undefined

It is in this jQuery block

Sizzle.contains = function( context, elem ) {
    // Set document vars if needed
    if ( ( context.ownerDocument || context ) !== document ) {
        setDocument( context );
    }
    return contains( context, elem );
};

Witch is quite fair - contextthere is undefined, but I do not know why.

I am returning this update for now, but how can I get rid of the exception? What could cause the problem?

PS is not the problem described here


Below are the default settings and calls.

Default settings:

$.growl.default_options = {
        ele: "body",
        type: "info",
        allow_dismiss: true,
        position: {
            from: "top",
            align: "center"
        },
        offset: 20,
        spacing: 10,
        z_index: 1031,
        fade_in: 400,
        delay: 0, //delay of auto-closing
        pause_on_mouseover: true,
        onGrowlShow: null,
        onGrowlShown: null,
        onGrowlClose: null,
        onGrowlClosed: null,
        template: {
            icon_type: 'class',
            container: '<div class="col-xs-10 col-sm-10 col-md-5 alert     growl-animated">',
            dismiss: '<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>',
            title: '<strong>',
            title_divider: '<br />',
            message: ''
        }
    };

Call call

$.growl({ title: "some message" }, {
    type: 'success', 
    template: { 
        container: '<div class="col-xs-10 col-sm-10 col-md-5 alert growl-animated growl-icon-bg growl-success">' 
    });

Stack trace:

Uncaught TypeError: Cannot read property 'ownerDocument' of undefined
jquery-1.11.0.js:1443 Sizzle.contains
jquery-1.11.0.js:5615 jQuery.extend.buildFragment
jquery-1.11.0.js:5885 jQuery.fn.extend.domManip
jquery-1.11.0.js:5704 jQuery.fn.extend.append
bootstrap-growl.min.js:2 p
bootstrap-growl.min.js:2 l
bootstrap-growl.min.js:2 f
bootstrap-growl.min.js:2 e.growl
Competences:578 showGrowlWithDelay
+4

All Articles