Package Exports
- scribblelivefeed
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (scribblelivefeed) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Scribble Live Feed Widget
This project is a fork of the recent-posts widget by Matt Mccausland.
Getting started
Add the main scribblelivefeed.js to the head of your page, and the tag below wherever you like below that.
<script type="text/javascript">
var First = new RecentPosts({
APIToken: "",
EventId: "",
TotalPostsToShow: 10,
WhereToAddPosts: ""
});
</script>###The Script Tag Break Down
var First = new RecentPosts
The variable name can be anything you like. It allows you to add more than one of these widgets to the same page. Give each instance a different variable name and you're good to go.
APIToken
To get an API token you must have a ScribbleLive account. Log in to https://client.scribblelive.com, go to the API section, and either grab a token if you already have one or generate a new one.
EventId
The id of the ScribbleLive event you would like to display. You can find this by logging in to https://client.scribblelive.com, and going to the API section of your event. The id it at the top of the API section.
TotalPostsToShow
The number of posts you'd like to show in integer form. If left blank it will default to 10. On load it will load the newest x posts. It will keep the list at x posts by deleting the older posts as new posts are added.
WhereToAddPosts
This is the id of the DOM element on your page that you would like to add the list of posts to. No hash tag required, just "DOMElementID". That's It!
__There is a lot of other options for you to customize your widget!
Add the scripts to your page, set the options correctly, and you're good to go.