EloquentStudio / StreamTable.js

StreamTable.js streams data for tables in the background, updates and renders them using templating frameworks like Mustache.js, HandleBars.js
http://eloquentstudio.github.io/StreamTable.js/stream.html
MIT License
385 stars 77 forks source link

Uncaught Error: Syntax error, unrecognized expression: .st_pagination..users-pagination #9

Open EugeneDae opened 10 years ago

EugeneDae commented 10 years ago
var streamtable = StreamTable('#test', {
    view: view,

    pagination: {
        container_class: '.users-pagination'
    }
}, data);

Prefixing container_class with a dot (as suggested by the README) results in the following error:

Uncaught Error: Syntax error, unrecognized expression: .st_pagination..users-pagination

Removing the dot fixes the problem, but it still does not replace the default class "st_pagination" (as, again, suggested by the README): screen shot 2014-06-13 at 03 15 23

I'm using StreamTable 1.1.1 with jQuery 2.1.1.