Commit 80cb760f authored by Jacob Thornton's avatar Jacob Thornton

animate -> animation

parent f72a94ae
...@@ -579,7 +579,7 @@ $('a[data-toggle="tab"]').on('shown', function (e) { ...@@ -579,7 +579,7 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>animate</td> <td>animation</td>
<td>boolean</td> <td>boolean</td>
<td>true</td> <td>true</td>
<td>apply a css fade transition to the tooltip</td> <td>apply a css fade transition to the tooltip</td>
...@@ -669,7 +669,7 @@ $('a[data-toggle="tab"]').on('shown', function (e) { ...@@ -669,7 +669,7 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>animate</td> <td>animation</td>
<td>boolean</td> <td>boolean</td>
<td>true</td> <td>true</td>
<td>apply a css fade transition to the tooltip</td> <td>apply a css fade transition to the tooltip</td>
......
...@@ -83,9 +83,9 @@ Each plugin stores a copy of the invoked class on an object. This class instance ...@@ -83,9 +83,9 @@ Each plugin stores a copy of the invoked class on an object. This class instance
Data attributes should take the following form: Data attributes should take the following form:
- data-*(verb)* - defines main interaction - data-{{verb}}={{plugin}} - defines main interaction
- data-target || href^=# - defined on "control" element (if element controls an element other than self) - data-target || href^=# - defined on "control" element (if element controls an element other than self)
- data-*(noun)* - defines class instance options - data-{{noun}} - defines class instance options
examples: examples:
......
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
$tip = this.tip() $tip = this.tip()
this.setContent() this.setContent()
if (this.options.animate) { if (this.options.animation) {
$tip.addClass('fade') $tip.addClass('fade')
} }
...@@ -250,7 +250,7 @@ ...@@ -250,7 +250,7 @@
$.fn.twipsy.Constructor = Twipsy $.fn.twipsy.Constructor = Twipsy
$.fn.twipsy.defaults = { $.fn.twipsy.defaults = {
animate: true animation: true
, delay: 0 , delay: 0
, selector: false , selector: false
, placement: 'above' , placement: 'above'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment