filamentgroup / tablesaw

A group of plugins for responsive tables.
MIT License
5.48k stars 434 forks source link

Error in not tablesaw tables #383

Closed mfd closed 1 year ago

mfd commented 5 years ago

I import tablesaw as global But on other pages in my portal not related with tablesaw all tables break on this func

    shoestring.fn.find = function( selector ){
        var ret = [],
            finds;
        this.each(function(){
                finds = this.querySelectorAll( selector );

            for( var i = 0, il = finds.length; i < il; i++ ){
                ret = ret.concat( finds[i] );
            }
        });
        return shoestring( ret );
    };