Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: https://github.com/Diokuz/baron/issues/186 #187

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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