Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions baron.js
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,12 @@ function init(params) {

manageEvents(out, params.event, 'on')

manageAttr(out.root, params.direction, 'on', instances.length)
var attr = manageAttr(out.root, params.direction, 'on', instances.length)

var id = +attr

params.index = id
out.params.index = id
instances.push(out)

if (process.env.NODE_ENV !== 'production') {
Expand Down Expand Up @@ -830,7 +835,7 @@ baron.prototype = {
this.events = {}

// DOM elements
this.root = params.root // Always html node, not just selector
this.root = params.root // Always an html node, not just a selector
this.scroller = qs(params.scroller)
if (process.env.NODE_ENV !== 'production') {
if (this.scroller.tagName == 'body') {
Expand Down
Loading