1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-19 11:51:23 +02:00

Make $(document).tooltip({...}) without a selector throw an error

Closes #15484
This commit is contained in:
Chris Rebert
2015-01-05 14:22:49 -08:00
parent 0841028009
commit f6a837cbf1
3 changed files with 17 additions and 0 deletions

View File

@@ -225,4 +225,11 @@ $(function () {
})
.bootstrapPopover('show')
})
test('should throw an error when initializing popover on the document object without specifying a delegation selector', function () {
throws(function () {
$(document).bootstrapPopover({ title: 'What am I on?', content: 'My selector is missing' })
}, new Error('`selector` option must be specified when initializing popover on the window.document object!'))
})
})

View File

@@ -1107,4 +1107,10 @@ $(function () {
$element.bootstrapTooltip('show')
})
test('should throw an error when initializing tooltip on the document object without specifying a delegation selector', function () {
throws(function () {
$(document).bootstrapTooltip({ title: 'What am I on?' })
}, new Error('`selector` option must be specified when initializing tooltip on the window.document object!'))
})
})