Handle Results
<String> LViS.Powerbar.ON_RESULTS
This event is fired every time new item is appended to the result set. It passes new last item in the set as a plain object.
Event is triggered only in case results have changed since last time it was fired.
element.bind(LViS.Powerbar.ON_RESULTS, function (item) {
// item = {
// time: 1384775820, // local time of when data arrived
// volume: 0, // total volume at that point
// average: 0, // average volume at that point
// responses: 0 // total votes received
// }
});
Last modified 3yr ago