tooltip.js 38 KB
Newer Older
Jacob Thornton's avatar
Jacob Thornton committed
1
$(function () {
XhmikosR's avatar
XhmikosR committed
2
  'use strict';
Jacob Thornton's avatar
Jacob Thornton committed
3

4
  module('tooltip plugin')
XhmikosR's avatar
XhmikosR committed
5
6

  test('should be defined on jquery object', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
7
    ok($(document.body).tooltip, 'popover method is defined')
XhmikosR's avatar
XhmikosR committed
8
9
  })

10
  module('tooltip', {
XhmikosR's avatar
XhmikosR committed
11
    setup: function () {
12
13
14
      // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode
      $.fn.bootstrapTooltip = $.fn.tooltip.noConflict()
    },
XhmikosR's avatar
XhmikosR committed
15
    teardown: function () {
16
17
18
19
20
21
      $.fn.tooltip = $.fn.bootstrapTooltip
      delete $.fn.bootstrapTooltip
    }
  })

  test('should provide no conflict', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
22
    strictEqual($.fn.tooltip, undefined, 'tooltip was set back to undefined (org value)')
23
24
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
25
26
27
28
29
  test('should return jquery collection containing the element', function () {
    var $el = $('<div/>')
    var $tooltip = $el.bootstrapTooltip()
    ok($tooltip instanceof $, 'returns jquery collection')
    strictEqual($tooltip[0], $el[0], 'collection contains element')
XhmikosR's avatar
XhmikosR committed
30
31
32
  })

  test('should expose default settings', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
33
    ok($.fn.bootstrapTooltip.Constructor.DEFAULTS, 'defaults is defined')
XhmikosR's avatar
XhmikosR committed
34
35
36
  })

  test('should empty title attribute', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
37
38
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>').bootstrapTooltip()
    strictEqual($trigger.attr('title'), '', 'title attribute was emptied')
XhmikosR's avatar
XhmikosR committed
39
40
41
  })

  test('should add data attribute for referencing original title', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
42
43
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>').bootstrapTooltip()
    strictEqual($trigger.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
XhmikosR's avatar
XhmikosR committed
44
45
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
46
47
48
  test('should add aria-describedby to the trigger on show', function () {
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .bootstrapTooltip()
49
50
      .appendTo('#qunit-fixture')
      .bootstrapTooltip('show')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
51

52
53
    var id = $('.tooltip').attr('id')

Heinrich Fenkart's avatar
Heinrich Fenkart committed
54
55
56
    strictEqual($('#' + id).length, 1, 'has a unique id')
    strictEqual($('.tooltip').attr('aria-describedby'), $trigger.attr('id'), 'tooltip id and aria-describedby on trigger match')
    ok($trigger[0].hasAttribute('aria-describedby'), 'trigger has aria-describedby')
57
58
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
59
60
61
  test('should remove aria-describedby from trigger on hide', function () {
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .bootstrapTooltip()
62
      .appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
63
64
65
66
67
68

    $trigger.bootstrapTooltip('show')
    ok($trigger[0].hasAttribute('aria-describedby'), 'trigger has aria-describedby')

    $trigger.bootstrapTooltip('hide')
    ok(!$trigger[0].hasAttribute('aria-describedby'), 'trigger does not have aria-describedby')
69
70
71
  })

  test('should assign a unique id tooltip element', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
72
    $('<a href="#" rel="tooltip" title="Another tooltip"/>')
73
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
74
      .bootstrapTooltip('show')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
75

XhmikosR's avatar
XhmikosR committed
76
    var id = $('.tooltip').attr('id')
77

Heinrich Fenkart's avatar
Heinrich Fenkart committed
78
79
    strictEqual($('#' + id).length, 1, 'tooltip has unique id')
    strictEqual(id.indexOf('tooltip'), 0, 'tooltip id has prefix')
80
81
  })

XhmikosR's avatar
XhmikosR committed
82
  test('should place tooltips relative to placement option', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
83
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
XhmikosR's avatar
XhmikosR committed
84
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
85
      .bootstrapTooltip({ placement: 'bottom' })
XhmikosR's avatar
XhmikosR committed
86

Heinrich Fenkart's avatar
Heinrich Fenkart committed
87
    $tooltip.bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
88
    ok($('.tooltip').is('.fade.bottom.in'), 'has correct classes applied')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
89
90
91

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed')
XhmikosR's avatar
XhmikosR committed
92
93
94
  })

  test('should allow html entities', function () {
95
    var $tooltip = $('<a href="#" rel="tooltip" title="&lt;b&gt;@fat&lt;/b&gt;"/>')
XhmikosR's avatar
XhmikosR committed
96
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
97
      .bootstrapTooltip({ html: true })
XhmikosR's avatar
XhmikosR committed
98

Heinrich Fenkart's avatar
Heinrich Fenkart committed
99
100
101
102
103
    $tooltip.bootstrapTooltip('show')
    notEqual($('.tooltip b').length, 0, 'b tag was inserted')

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed')
XhmikosR's avatar
XhmikosR committed
104
105
106
  })

  test('should respect custom classes', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
107
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
XhmikosR's avatar
XhmikosR committed
108
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
109
      .bootstrapTooltip({ template: '<div class="tooltip some-class"><div class="tooltip-arrow"/><div class="tooltip-inner"/></div>' })
XhmikosR's avatar
XhmikosR committed
110

Heinrich Fenkart's avatar
Heinrich Fenkart committed
111
    $tooltip.bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
112
    ok($('.tooltip').hasClass('some-class'), 'custom class is present')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
113
114
115

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed')
XhmikosR's avatar
XhmikosR committed
116
117
118
119
  })

  test('should fire show event', function () {
    stop()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
120
121

    $('<div title="tooltip title"/>')
XhmikosR's avatar
XhmikosR committed
122
      .on('show.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
123
        ok(true, 'show event fired')
XhmikosR's avatar
XhmikosR committed
124
125
        start()
      })
126
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
127
128
129
130
  })

  test('should fire shown event', function () {
    stop()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
131
132
133

    $('<div title="tooltip title"></div>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
134
135
136
137
      .on('shown.bs.tooltip', function () {
        ok(true, 'shown was called')
        start()
      })
138
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
139
140
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
141
  test('should not fire shown event when show was prevented', function () {
XhmikosR's avatar
XhmikosR committed
142
    stop()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
143
144

    $('<div title="tooltip title"/>')
XhmikosR's avatar
XhmikosR committed
145
146
      .on('show.bs.tooltip', function (e) {
        e.preventDefault()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
147
        ok(true, 'show event fired')
XhmikosR's avatar
XhmikosR committed
148
149
150
        start()
      })
      .on('shown.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
151
        ok(false, 'shown event fired')
XhmikosR's avatar
XhmikosR committed
152
      })
153
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
154
155
156
157
  })

  test('should fire hide event', function () {
    stop()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
158
159
160

    $('<div title="tooltip title"/>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
161
      .on('shown.bs.tooltip', function () {
162
        $(this).bootstrapTooltip('hide')
XhmikosR's avatar
XhmikosR committed
163
164
      })
      .on('hide.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
165
        ok(true, 'hide event fired')
XhmikosR's avatar
XhmikosR committed
166
167
        start()
      })
168
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
169
170
171
172
  })

  test('should fire hidden event', function () {
    stop()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
173
174
175

    $('<div title="tooltip title"/>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
176
      .on('shown.bs.tooltip', function () {
177
        $(this).bootstrapTooltip('hide')
XhmikosR's avatar
XhmikosR committed
178
179
      })
      .on('hidden.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
180
        ok(true, 'hidden event fired')
XhmikosR's avatar
XhmikosR committed
181
182
        start()
      })
183
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
184
185
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
186
  test('should not fire hidden event when hide was prevented', function () {
XhmikosR's avatar
XhmikosR committed
187
    stop()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
188
189
190

    $('<div title="tooltip title"/>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
191
      .on('shown.bs.tooltip', function () {
192
        $(this).bootstrapTooltip('hide')
XhmikosR's avatar
XhmikosR committed
193
194
195
      })
      .on('hide.bs.tooltip', function (e) {
        e.preventDefault()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
196
        ok(true, 'hide event fired')
XhmikosR's avatar
XhmikosR committed
197
198
199
        start()
      })
      .on('hidden.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
200
        ok(false, 'hidden event fired')
XhmikosR's avatar
XhmikosR committed
201
      })
202
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
203
204
205
  })

  test('should destroy tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
    var $tooltip = $('<div/>')
      .bootstrapTooltip()
      .on('click.foo', function () {})

    ok($tooltip.data('bs.tooltip'), 'tooltip has data')
    ok($._data($tooltip[0], 'events').mouseover && $._data($tooltip[0], 'events').mouseout, 'tooltip has hover events')
    equal($._data($tooltip[0], 'events').click[0].namespace, 'foo', 'tooltip has extra click.foo event')

    $tooltip.bootstrapTooltip('show')
    $tooltip.bootstrapTooltip('destroy')

    ok(!$tooltip.hasClass('in'), 'tooltip is hidden')
    ok(!$._data($tooltip[0], 'bs.tooltip'), 'tooltip does not have data')
    equal($._data($tooltip[0], 'events').click[0].namespace, 'foo', 'tooltip still has click.foo')
    ok(!$._data($tooltip[0], 'events').mouseover && !$._data($tooltip[0], 'events').mouseout, 'tooltip does not have hover events')
XhmikosR's avatar
XhmikosR committed
221
222
223
  })

  test('should show tooltip with delegate selector on click', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
224
225
226
227
228
229
230
231
    var $div = $('<div><a href="#" rel="tooltip" title="Another tooltip"/></div>')
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({
        selector: 'a[rel="tooltip"]',
        trigger: 'click'
      })

    $div.find('a').click()
XhmikosR's avatar
XhmikosR committed
232
    ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
233
234
235

    $div.find('a').click()
    equal($('.tooltip').length, 0, 'tooltip was removed from dom')
XhmikosR's avatar
XhmikosR committed
236
237
  })

238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
  test('should show tooltips with different delegate selectors on the same node on click', function () {
    var tooltipHTML = '<div>'
        + '<a href="#" class="first" rel="tooltip" title="First delegated tooltip"/>'
        + '<a href="#" class="second" rel="tooltip" title="Second delegated tooltip"/>'
        + '</div>'

    var $div = $(tooltipHTML)
      .append()
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({
        selector: 'a.first[rel="tooltip"]',
        trigger: 'click'
      })
      .bootstrapTooltip({
        selector: 'a.second[rel="tooltip"]',
        trigger: 'click'
      })

    $div.find('a.first').click()
    ok($('.tooltip').is('.fade.in'), 'first tooltip is faded in')

    $div.find('a.first').click()
    equal($('.tooltip').length, 0, 'first tooltip was removed from dom')

    $div.find('a.second').click()
    ok($('.tooltip').is('.fade.in'), 'second tooltip is faded in')

    $div.find('a.second').click()
    equal($('.tooltip').length, 0, 'second tooltip was removed from dom')
  })

XhmikosR's avatar
XhmikosR committed
269
  test('should show tooltip when toggle is called', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
270
    $('<a href="#" rel="tooltip" title="tooltip on toggle"/>')
XhmikosR's avatar
XhmikosR committed
271
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
272
      .bootstrapTooltip({ trigger: 'manual' })
273
      .bootstrapTooltip('toggle')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
274
275

    ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
XhmikosR's avatar
XhmikosR committed
276
277
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
278
279
  test('should hide previously shown tooltip when toggle is called on tooltip', function () {
    $('<a href="#" rel="tooltip" title="tooltip on toggle">@ResentedHook</a>')
280
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
281
      .bootstrapTooltip({ trigger: 'manual' })
Heinrich Fenkart's avatar
Heinrich Fenkart committed
282
283
284
285
      .bootstrapTooltip('show')

    $('.tooltip').bootstrapTooltip('toggle')
    ok($('.tooltip').not('.fade.in'), 'tooltip was faded out')
286
287
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
288
289
  test('should place tooltips inside body when container is body', function () {
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
XhmikosR's avatar
XhmikosR committed
290
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
291
      .bootstrapTooltip({ container: 'body' })
292
      .bootstrapTooltip('show')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
293
294
295
296
297
298

    notEqual($('body > .tooltip').length, 0, 'tooltip is direct descendant of body')
    equal($('#qunit-fixture > .tooltip').length, 0, 'tooltip is not in parent')

    $tooltip.bootstrapTooltip('hide')
    equal($('body > .tooltip').length, 0, 'tooltip was removed from dom')
XhmikosR's avatar
XhmikosR committed
299
300
301
  })

  test('should add position class before positioning so that position-specific styles are taken into account', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
302
303
304
305
    var styles = '<style>'
        + '.tooltip.right { white-space: nowrap; }'
        + '.tooltip.right .tooltip-inner { max-width: none; }'
        + '</style>'
306
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
307

fat's avatar
fat committed
308
    var $container = $('<div/>').appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
309
310
311
312
313
314
315
316
    var $target = $('<a href="#" rel="tooltip" title="very very very very very very very very long tooltip in one line"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'right',
        viewport: null
      })
      .bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
XhmikosR's avatar
XhmikosR committed
317
318

    // this is some dumb hack shit because sub pixels in firefox
Heinrich Fenkart's avatar
Heinrich Fenkart committed
319
320
    var top = Math.round($target.offset().top + ($target[0].offsetHeight / 2) - ($tooltip[0].offsetHeight / 2))
    var top2 = Math.round($tooltip.offset().top)
XhmikosR's avatar
XhmikosR committed
321
    var topDiff = top - top2
XhmikosR's avatar
XhmikosR committed
322
    ok(topDiff <= 1 && topDiff >= -1)
Heinrich Fenkart's avatar
Heinrich Fenkart committed
323
324
325
326
    $target.bootstrapTooltip('hide')

    $container.remove()
    $styles.remove()
XhmikosR's avatar
XhmikosR committed
327
328
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
329
330
  test('should use title attribute for tooltip text', function () {
    var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip"/>')
XhmikosR's avatar
XhmikosR committed
331
      .appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
332
333
334
      .bootstrapTooltip()

    $tooltip.bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
335
    equal($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title from title attribute is set')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
336
337
338

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
XhmikosR's avatar
XhmikosR committed
339
340
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
341
342
  test('should prefer title attribute over title option', function () {
    var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip"/>')
XhmikosR's avatar
XhmikosR committed
343
      .appendTo('#qunit-fixture')
344
      .bootstrapTooltip({
XhmikosR's avatar
XhmikosR committed
345
346
        title: 'This is a tooltip with some content'
      })
Heinrich Fenkart's avatar
Heinrich Fenkart committed
347
348

    $tooltip.bootstrapTooltip('show')
349
    equal($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title is set from title attribute while preferred over title option')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
350
351
352

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
XhmikosR's avatar
XhmikosR committed
353
354
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
355
356
  test('should use title option', function () {
    var $tooltip = $('<a href="#" rel="tooltip"/>')
XhmikosR's avatar
XhmikosR committed
357
      .appendTo('#qunit-fixture')
358
      .bootstrapTooltip({
XhmikosR's avatar
XhmikosR committed
359
360
        title: 'This is a tooltip with some content'
      })
Heinrich Fenkart's avatar
Heinrich Fenkart committed
361
362

    $tooltip.bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
363
    equal($('.tooltip').children('.tooltip-inner').text(), 'This is a tooltip with some content', 'title from title option is set')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
  })

  test('should be placed dynamically with the dynamic placement option', function () {
    var $style = $('<style> a[rel="tooltip"] { display: inline-block; position: absolute; } </style>')
    var $container = $('<div/>')
      .css({
        position: 'absolute',
        overflow: 'hidden',
        width: 600,
        height: 400,
        top: 0,
        left: 0
      })
      .appendTo(document.body)

    var $topTooltip = $('<div style="left: 0; top: 0;" rel="tooltip" title="Top tooltip">Top Dynamic Tooltip</div>')
      .appendTo($container)
XhmikosR's avatar
XhmikosR committed
384
      .bootstrapTooltip({ placement: 'auto' })
XhmikosR's avatar
XhmikosR committed
385

Heinrich Fenkart's avatar
Heinrich Fenkart committed
386
387
    $topTooltip.bootstrapTooltip('show')
    ok($('.tooltip').is('.bottom'), 'top positioned tooltip is dynamically positioned to bottom')
XhmikosR's avatar
XhmikosR committed
388

Heinrich Fenkart's avatar
Heinrich Fenkart committed
389
390
    $topTooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'top positioned tooltip removed from dom')
XhmikosR's avatar
XhmikosR committed
391

Heinrich Fenkart's avatar
Heinrich Fenkart committed
392
393
    var $rightTooltip = $('<div style="right: 0;" rel="tooltip" title="Right tooltip">Right Dynamic Tooltip</div>')
      .appendTo($container)
XhmikosR's avatar
XhmikosR committed
394
      .bootstrapTooltip({ placement: 'right auto' })
XhmikosR's avatar
XhmikosR committed
395

Heinrich Fenkart's avatar
Heinrich Fenkart committed
396
    $rightTooltip.bootstrapTooltip('show')
397
    ok($('.tooltip').is('.left'), 'right positioned tooltip is dynamically positioned left')
XhmikosR's avatar
XhmikosR committed
398

Heinrich Fenkart's avatar
Heinrich Fenkart committed
399
400
401
402
403
    $rightTooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'right positioned tooltip removed from dom')

    var $leftTooltip = $('<div style="left: 0;" rel="tooltip" title="Left tooltip">Left Dynamic Tooltip</div>')
      .appendTo($container)
XhmikosR's avatar
XhmikosR committed
404
      .bootstrapTooltip({ placement: 'auto left' })
XhmikosR's avatar
XhmikosR committed
405

Heinrich Fenkart's avatar
Heinrich Fenkart committed
406
    $leftTooltip.bootstrapTooltip('show')
407
    ok($('.tooltip').is('.right'), 'left positioned tooltip is dynamically positioned right')
XhmikosR's avatar
XhmikosR committed
408

Heinrich Fenkart's avatar
Heinrich Fenkart committed
409
410
411
412
413
    $leftTooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'left positioned tooltip removed from dom')

    $container.remove()
    $style.remove()
XhmikosR's avatar
XhmikosR committed
414
  })
415

416
417
418
  test('should position tip on top if viewport has enough space and placement is "auto top"', function () {
    var styles = '<style>'
        + 'body { padding-top: 100px; }'
419
        + '#section { height: 300px; border: 1px solid red; padding-top: 50px }'
420
421
422
423
        + 'div[rel="tooltip"] { width: 150px; border: 1px solid blue; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

424
    var $container = $('<div id="section"/>').appendTo('#qunit-fixture')
425
426
427
428
    var $target = $('<div rel="tooltip" title="tip"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'auto top',
429
        viewport: '#section'
430
431
432
433
434
435
436
437
438
439
440
441
442
443
      })

    $target.bootstrapTooltip('show')
    ok($('.tooltip').is('.top'), 'top positioned tooltip is dynamically positioned to top')

    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $styles.remove()
  })

  test('should position tip on bottom if the tip\'s dimension exceeds the viewport area and placement is "auto top"', function () {
    var styles = '<style>'
        + 'body { padding-top: 100px; }'
444
        + '#section { height: 300px; border: 1px solid red; }'
445
446
447
448
        + 'div[rel="tooltip"] { width: 150px; border: 1px solid blue; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

449
    var $container = $('<div id="section"/>').appendTo('#qunit-fixture')
450
451
452
453
    var $target = $('<div rel="tooltip" title="tip"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'auto top',
454
        viewport: '#section'
455
456
457
458
459
460
461
462
463
464
465
      })

    $target.bootstrapTooltip('show')
    ok($('.tooltip').is('.bottom'), 'top positioned tooltip is dynamically positioned to bottom')

    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $styles.remove()
  })

466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
  test('should display the tip on top whenever scrollable viewport has enough room if the given placement is "auto top"', function () {
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
        + '.tooltip-item { margin: 200px 0 400px; width: 150px; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'top auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(100)

    $target.bootstrapTooltip('show')
    ok($('.tooltip').is('.fade.top.in'), 'has correct classes applied')

    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $styles.remove()
  })

  test('should display the tip on bottom whenever scrollable viewport doesn\'t have enough room if the given placement is "auto top"', function () {
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
495
        + '.tooltip-item { padding: 200px 0 400px; width: 150px; }'
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'top auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(200)

    $target.bootstrapTooltip('show')
    ok($('.tooltip').is('.fade.bottom.in'), 'has correct classes applied')

    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $styles.remove()
  })

  test('should display the tip on bottom whenever scrollable viewport has enough room if the given placement is "auto bottom"', function () {
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
521
522
523
        + '.spacer { height: 400px; }'
        + '.spacer:first-child { height: 200px; }'
        + '.tooltip-item { width: 150px; }'
524
525
526
527
528
529
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
530
531
      .before('<div class="spacer"/>')
      .after('<div class="spacer"/>')
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
      .bootstrapTooltip({
        placement: 'bottom auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(200)

    $target.bootstrapTooltip('show')
    ok($('.tooltip').is('.fade.bottom.in'), 'has correct classes applied')

    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $styles.remove()
  })

  test('should display the tip on top whenever scrollable viewport doesn\'t have enough room if the given placement is "auto bottom"', function () {
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
        + '.tooltip-item { margin-top: 400px; width: 150px; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(400)

    $target.bootstrapTooltip('show')
    ok($('.tooltip').is('.fade.top.in'), 'has correct classes applied')

    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $styles.remove()
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
574
  test('should adjust the tip\'s top position when up against the top of the viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
575
576
577
578
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
579
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
580

fat's avatar
fat committed
581
    var $container = $('<div/>').appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
582
583
584
585
586
587
588
589
590
591
592
593
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'right',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })

    $target.bootstrapTooltip('show')
    equal(Math.round($container.find('.tooltip').offset().top), 12)
594

Heinrich Fenkart's avatar
Heinrich Fenkart committed
595
596
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
597

Heinrich Fenkart's avatar
Heinrich Fenkart committed
598
    $styles.remove()
599
600
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
601
  test('should adjust the tip\'s top position when up against the bottom of the viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
602
603
604
605
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
606
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
607

fat's avatar
fat committed
608
    var $container = $('<div/>').appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
609
610
611
612
613
614
615
616
617
    var $target = $('<a href="#" rel="tooltip" title="tip" style="bottom: 0px; left: 0px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'right',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })
618

Heinrich Fenkart's avatar
Heinrich Fenkart committed
619
620
621
    $target.bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
    strictEqual(Math.round($tooltip.offset().top), Math.round($(window).height() - 12 - $tooltip[0].offsetHeight))
622

Heinrich Fenkart's avatar
Heinrich Fenkart committed
623
624
625
626
627
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $container.remove()
    $styles.remove()
628
629
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
630
  test('should adjust the tip\'s left position when up against the left of the viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
631
632
633
634
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
635
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
636

fat's avatar
fat committed
637
    var $container = $('<div/>').appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
638
639
640
641
642
643
644
645
646
647
648
649
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })

    $target.bootstrapTooltip('show')
    strictEqual(Math.round($container.find('.tooltip').offset().left), 12)
650

Heinrich Fenkart's avatar
Heinrich Fenkart committed
651
652
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
653

Heinrich Fenkart's avatar
Heinrich Fenkart committed
654
655
    $container.remove()
    $styles.remove()
656
657
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
658
  test('should adjust the tip\'s left position when up against the right of the viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
659
660
661
662
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
663
    var $styles = $(styles).appendTo('head')
664

Heinrich Fenkart's avatar
Heinrich Fenkart committed
665
666
667
668
669
670
671
672
673
674
675
676
677
678
    var $container = $('<div/>').appendTo('body')
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; right: 0px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })

    $target.bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
    strictEqual(Math.round($tooltip.offset().left), Math.round($(window).width() - 12 - $tooltip[0].offsetWidth))
679

Heinrich Fenkart's avatar
Heinrich Fenkart committed
680
681
682
683
684
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $container.remove()
    $styles.remove()
685
686
687
  })

  test('should adjust the tip when up against the right of an arbitrary viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
688
689
690
691
692
    var styles = '<style>'
        + '.tooltip, .tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + '.container-viewport { position: absolute; top: 50px; left: 60px; width: 300px; height: 300px; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
693
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
694
695
696
697
698
699
700
701
702
703
704
705

    var $container = $('<div class="container-viewport"/>').appendTo(document.body)
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 50px; left: 350px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom',
        viewport: '.container-viewport'
      })

    $target.bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
    strictEqual(Math.round($tooltip.offset().left), Math.round(60 + $container.width() - $tooltip[0].offsetWidth))
706

Heinrich Fenkart's avatar
Heinrich Fenkart committed
707
708
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
709

Heinrich Fenkart's avatar
Heinrich Fenkart committed
710
711
    $container.remove()
    $styles.remove()
712
  })
Chris Rebert's avatar
Chris Rebert committed
713
714

  test('should not error when trying to show an auto-placed tooltip that has been removed from the dom', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
715
716
717
    var passed = true
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
Chris Rebert's avatar
Chris Rebert committed
718
      .one('show.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
719
        $(this).remove()
Chris Rebert's avatar
Chris Rebert committed
720
721
722
723
      })
      .bootstrapTooltip({ placement: 'auto' })

    try {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
724
725
      $tooltip.bootstrapTooltip('show')
    } catch (err) {
Chris Rebert's avatar
Chris Rebert committed
726
727
728
729
      passed = false
      console.log(err)
    }

Heinrich Fenkart's avatar
Heinrich Fenkart committed
730
    ok(passed, '.tooltip(\'show\') should not throw an error if element no longer is in dom')
Chris Rebert's avatar
Chris Rebert committed
731
  })
fat's avatar
fat committed
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800

  test('should place tooltip on top of element', function () {
    stop()

    var containerHTML = '<div>'
        + '<p style="margin-top: 200px">'
        + '<a href="#" title="very very very very very very very long tooltip">Hover me</a>'
        + '</p>'
        + '</div>'

    var $container = $(containerHTML)
      .css({
        position: 'absolute',
        bottom: 0,
        left: 0,
        textAlign: 'right',
        width: 300,
        height: 300
      })
      .appendTo('#qunit-fixture')

    var $trigger = $container
      .find('a')
      .css('margin-top', 200)
      .bootstrapTooltip({
        placement: 'top',
        animate: false
      })
      .bootstrapTooltip('show')

    var $tooltip = $container.find('.tooltip')

    setTimeout(function () {
      ok(Math.round($tooltip.offset().top + $tooltip.outerHeight()) <= Math.round($trigger.offset().top))
      start()
    }, 0)
  })

  test('should place tooltip inside viewport', function () {
    stop()

    var $container = $('<div/>')
      .css({
        position: 'absolute',
        width: 200,
        height: 200,
        bottom: 0,
        left: 0
      })
      .appendTo('#qunit-fixture')

    $('<a href="#" title="Very very very very very very very very long tooltip">Hover me</a>')
      .css({
        position: 'absolute',
        top: 0,
        left: 0
      })
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'top'
      })
      .bootstrapTooltip('show')

    setTimeout(function () {
      ok($('.tooltip').offset().left >= 0)
      start()
    }, 0)
  })

801
  test('should show tooltip if leave event hasn\'t occurred before delay expires', function () {
fat's avatar
fat committed
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
    stop()

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({ delay: 15 })

    setTimeout(function () {
      ok(!$('.tooltip').is('.fade.in'), '10ms: tooltip is not faded in')
    }, 10)

    setTimeout(function () {
      ok($('.tooltip').is('.fade.in'), '20ms: tooltip is faded in')
      start()
    }, 20)

    $tooltip.trigger('mouseenter')
  })

  test('should not show tooltip if leave event occurs before delay expires', function () {
    stop()

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({ delay: 15 })

    setTimeout(function () {
      ok(!$('.tooltip').is('.fade.in'), '10ms: tooltip not faded in')
      $tooltip.trigger('mouseout')
    }, 10)

    setTimeout(function () {
      ok(!$('.tooltip').is('.fade.in'), '20ms: tooltip not faded in')
      start()
    }, 20)

    $tooltip.trigger('mouseenter')
  })

  test('should not hide tooltip if leave event occurs and enter event occurs within the hide delay', function () {
    stop()

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({ delay: { show: 0, hide: 15 }})

    setTimeout(function () {
      ok($('.tooltip').is('.fade.in'), '1ms: tooltip faded in')
      $tooltip.trigger('mouseout')

      setTimeout(function () {
        ok($('.tooltip').is('.fade.in'), '10ms: tooltip still faded in')
        $tooltip.trigger('mouseenter')
      }, 10)

      setTimeout(function () {
        ok($('.tooltip').is('.fade.in'), '20ms: tooltip still faded in')
        start()
      }, 20)
    }, 0)

    $tooltip.trigger('mouseenter')
  })

  test('should not show tooltip if leave event occurs before delay expires', function () {
    stop()

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({ delay: 15 })

    setTimeout(function () {
      ok(!$('.tooltip').is('.fade.in'), '10ms: tooltip not faded in')
      $tooltip.trigger('mouseout')
    }, 10)

    setTimeout(function () {
      ok(!$('.tooltip').is('.fade.in'), '20ms: tooltip not faded in')
      start()
    }, 20)

    $tooltip.trigger('mouseenter')
  })

  test('should not show tooltip if leave event occurs before delay expires, even if hide delay is 0', function () {
    stop()

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({ delay: { show: 15, hide: 0 }})

    setTimeout(function () {
      ok(!$('.tooltip').is('.fade.in'), '10ms: tooltip not faded in')
      $tooltip.trigger('mouseout')
    }, 10)

    setTimeout(function () {
      ok(!$('.tooltip').is('.fade.in'), '25ms: tooltip not faded in')
      start()
    }, 25)

    $tooltip.trigger('mouseenter')
  })

  test('should wait 20ms before hiding the tooltip', function () {
    stop()

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({ delay: { show: 0, hide: 15 }})

    setTimeout(function () {
      ok($tooltip.data('bs.tooltip').$tip.is('.fade.in'), '1ms: tooltip faded in')

      $tooltip.trigger('mouseout')

      setTimeout(function () {
        ok($tooltip.data('bs.tooltip').$tip.is('.fade.in'), '10ms: tooltip still faded in')
      }, 10)

      setTimeout(function () {
        ok(!$tooltip.data('bs.tooltip').$tip.is('.in'), '20ms: tooltip removed')
        start()
      }, 20)

    }, 0)

    $tooltip.trigger('mouseenter')
  })

931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
  test('should correctly position tooltips on SVG elements', function () {
    if (!window.SVGElement) {
      // Skip IE8 since it doesn't support SVG
      expect(0)
      return
    }

    stop()

    var styles = '<style>'
        + '.tooltip, .tooltip *, .tooltip *:before, .tooltip *:after { box-sizing: border-box; }'
        + '.tooltip { position: absolute; }'
        + '.tooltip .tooltip-inner { width: 24px; height: 24px; font-family: Helvetica; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    $('#qunit-fixture').append(
        '<div style="position: fixed; top: 0; left: 0;">'
      + '  <svg width="200" height="200">'
      + '    <circle cx="100" cy="100" r="10" title="m" id="theCircle" />'
      + '  </svg>'
      + '</div>')
    var $circle = $('#theCircle')

    $circle
      .on('shown.bs.tooltip', function () {
        var offset = $('.tooltip').offset()
        $styles.remove()
        ok(Math.abs(offset.left - 88) <= 1, 'tooltip has correct horizontal location')
960
961
        $circle.bootstrapTooltip('hide')
        equal($('.tooltip').length, 0, 'tooltip removed from dom')
962
963
964
965
966
967
968
        start()
      })
      .bootstrapTooltip({ container: 'body', placement: 'top', trigger: 'manual' })

    $circle.bootstrapTooltip('show')
  })

969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
  test('should correctly determine auto placement based on container rather than parent', function () {
    stop()

    var styles = '<style>'
        + '.tooltip, .tooltip *, .tooltip *:before, .tooltip *:after { box-sizing: border-box; }'
        + '.tooltip { position: absolute; display: block; font-size: 12px; line-height: 1.4; }'
        + '.tooltip .tooltip-inner { max-width: 200px; padding: 3px 8px; font-family: Helvetica; text-align: center; }'
        + '#trigger-parent {'
        + '  position: fixed;'
        + '  top: 100px;'
        + '  right: 17px;'
        + '}'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    $('#qunit-fixture').append('<span id="trigger-parent"><a id="tt-trigger" title="If a_larger_text is written here, it won\'t fit using older broken version of BS">HOVER OVER ME</a></span>')
    var $trigger = $('#tt-trigger')

    $trigger
      .on('shown.bs.tooltip', function () {
        var $tip = $('.tooltip-inner')
        var tipXrightEdge = $tip.offset().left + $tip.width()
        var triggerXleftEdge = $trigger.offset().left
        ok(tipXrightEdge < triggerXleftEdge, 'tooltip with auto left placement, when near the right edge of the viewport, gets left placement')
        $trigger.bootstrapTooltip('hide')
      })
      .on('hidden.bs.tooltip', function () {
        $styles.remove()
        $(this).remove()
        equal($('.tooltip').length, 0, 'tooltip removed from dom')
        start()
      })
For faster browsing, not all history is shown. View entire blame