Skip to content

Instantly share code, notes, and snippets.

@karagraysen
Created April 3, 2019 14:02
Show Gist options
  • Save karagraysen/d9ae96b42453161bff3776269f07a8be to your computer and use it in GitHub Desktop.
Save karagraysen/d9ae96b42453161bff3776269f07a8be to your computer and use it in GitHub Desktop.
const toolbarItems = PSPDFKit.defaultToolbarItems;
let pagerIndex = toolbarItems.findIndex(item => item.type == "pager");
toolbarItems.splice(pagerIndex - 1, 0, {
type: "custom",
title: "click me",
onPress: function() {
console.log("click");
}
});
PSPDFKit.load({
...defaultConfiguration,
toolbarItems: toolbarItems
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment