bespokejs / bespoke

DIY Presentation Micro-Framework

Home Page:http://markdalgleish.com/projects/bespoke.js/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Activate not firing

bendparker opened this issue · comments

Having trouble with the an event not firing...

var deck;
deck = bespoke.from('#presentation');
deck.on('activate', function(event) {
alert('fire');
});

this never seems to be fire, however presentation loads correctly.

changed to this code:

var deck;
deck = bespoke.from('#presentation', [function (deck2) {
deck2.on('activate', function(event) {
alert('fire');
});
}]);

It fires on load now, however fails with the following errors:

Uncaught TypeError: Cannot set property 'hash' of undefined
Uncaught TypeError: Cannot read property 'from' of undefined

Me being a dummy, i was using an old version...read readme from that version and got it figured out.