run make on js files

This commit is contained in:
Mark Otto
2012-06-20 23:46:29 -07:00
parent 3875a9f31b
commit 59153205b3
6 changed files with 26 additions and 4 deletions

View File

@@ -88,7 +88,7 @@
}
, slide: function (type, next) {
var $active = this.$element.find('.active')
var $active = this.$element.find('.item.active')
, $next = next || $active[type]()
, isCycling = this.interval
, direction = type == 'next' ? 'left' : 'right'

View File

@@ -71,6 +71,10 @@
return this.$tip
}
, destroy: function () {
this.$element.off().removeData('popover')
}
})

View File

@@ -235,6 +235,10 @@
this[this.tip().hasClass('in') ? 'hide' : 'show']()
}
, destroy: function () {
this.$element.off().removeData('tooltip')
}
}

View File

@@ -332,7 +332,7 @@
}
, slide: function (type, next) {
var $active = this.$element.find('.active')
var $active = this.$element.find('.item.active')
, $next = next || $active[type]()
, isCycling = this.interval
, direction = type == 'next' ? 'left' : 'right'
@@ -1188,6 +1188,10 @@
this[this.tip().hasClass('in') ? 'hide' : 'show']()
}
, destroy: function () {
this.$element.off().removeData('tooltip')
}
}
@@ -1291,6 +1295,10 @@
return this.$tip
}
, destroy: function () {
this.$element.off().removeData('popover')
}
})

File diff suppressed because one or more lines are too long