benmarch / angular-bootstrap-tour

AngularJS wrapper around Bootstrap Tour
64 stars 27 forks source link

Backdrop is not working #21

Closed erickne closed 9 years ago

erickne commented 9 years ago

Already added bakdrop configuration, but it's not working.

TourConfigProvider.set('backdrop',true);
benmarch commented 9 years ago

I probably should have named the provider slightly differently; it's not actually for configuring the Tour object, it's for configuring this plugin. To get the backdrop working just specify it on the tour element:

<div bs-tour backdrop="true">...</div>
erickne commented 9 years ago

Worked, Thank! Keep up the good job!