diff options
-rw-r--r-- | tests/visual/tooltip/animations.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/visual/tooltip/animations.html b/tests/visual/tooltip/animations.html index 7427d7ebd..2feabeab1 100644 --- a/tests/visual/tooltip/animations.html +++ b/tests/visual/tooltip/animations.html @@ -12,11 +12,12 @@ } </style> <script src="../../../external/requirejs/require.js"></script> - <script src="../../../demos/bootstrap.js"> + <script src="../../../demos/bootstrap.js" + data-modules="effect effect-explode effect-bounce effect-blind effect-drop"> $( "pre" ).each(function( index, elem ) { $( elem ) .attr( "title", "animated tooltips" ) - .tooltip( $.parseJSON( $( elem ).text() ) ); + .tooltip( JSON.parse( $( elem ).text() ) ); }); </script> </head> |