diff options
| author | Loic Bistuer | 2014-12-03 17:29:06 +0700 |
|---|---|---|
| committer | Loic Bistuer | 2014-12-08 09:06:52 +0700 |
| commit | ff02a0af9c8d2dadebfadcc65e17adae3b0bd111 (patch) | |
| tree | 0205b36f1f28ccdff54566ae371b0ab4c278774b | |
| parent | 9879a5dcdc2e99dc2ebd23cd093a3e7ccec318fd (diff) | |
| download | django-rest-framework-ff02a0af9c8d2dadebfadcc65e17adae3b0bd111.tar.bz2 | |
Fixed display issues with tooltips.
| -rw-r--r-- | rest_framework/static/rest_framework/js/default.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rest_framework/static/rest_framework/js/default.js b/rest_framework/static/rest_framework/js/default.js index bcb1964d..c8812132 100644 --- a/rest_framework/static/rest_framework/js/default.js +++ b/rest_framework/static/rest_framework/js/default.js @@ -24,7 +24,8 @@ prettyPrint(); // Bootstrap tooltips. $('.js-tooltip').tooltip({ - delay: 1000 + delay: 1000, + container: 'body' }); // Deal with rounded tab styling after tab clicks. |
