dubbs / branchee

Branchee is a lightweight mobile navigation plugin with built in transitions.
3 stars 1 forks source link

Add custom icon templates #4

Closed dubbs closed 6 years ago

dubbs commented 7 years ago

There are two new config options for defining custom pane target icons:

$('#menu').branchee({
    templateIconClose: '<i class="fa fa-times" aria-hidden="true"></i>',
    templateIconOpen: '<i class="fa fa-bars" aria-hidden="true"></i>',
    templateIconArrowRight: '<i class="fa fa-chevron-right" aria-hidden="true"></i>',
    templateIconArrowLeft: '<i class="fa fa-chevron-left" aria-hidden="true"></i>',
});
dubbs commented 7 years ago

This fixes #3.

vinylthieves commented 7 years ago

Awesome!!