diff options
| author | XhmikosR <[email protected]> | 2019-07-31 16:14:21 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-07-31 16:14:21 +0300 |
| commit | eecd75db001bb2a758e622d5bf7a2b2b1719a87a (patch) | |
| tree | 725a9b7117181c4780bc005225767316907c8e50 /js | |
| parent | 3100dd3dab2ee2b86d00bf62fc9c5de6cc525fd1 (diff) | |
| download | bootstrap-eecd75db001bb2a758e622d5bf7a2b2b1719a87a.tar.xz bootstrap-eecd75db001bb2a758e622d5bf7a2b2b1719a87a.zip | |
Fix typos. (#29178)
Diffstat (limited to 'js')
| -rw-r--r-- | js/src/alert/alert.spec.js | 4 | ||||
| -rw-r--r-- | js/src/modal/modal.spec.js | 2 | ||||
| -rw-r--r-- | js/src/tab/tab.spec.js | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/js/src/alert/alert.spec.js b/js/src/alert/alert.spec.js index 05e3dbd68..61d656bd0 100644 --- a/js/src/alert/alert.spec.js +++ b/js/src/alert/alert.spec.js @@ -20,7 +20,7 @@ describe('Alert', () => { }) describe('data-api', () => { - it('should close an alert without instanciate it manually', () => { + it('should close an alert without instantiate it manually', () => { fixtureEl.innerHTML = [ '<div class="alert">', ' <button type="button" data-dismiss="alert">x</button>', @@ -33,7 +33,7 @@ describe('Alert', () => { expect(makeArray(document.querySelectorAll('.alert')).length).toEqual(0) }) - it('should close an alert without instanciate it manually with the parent selector', () => { + it('should close an alert without instantiate it manually with the parent selector', () => { fixtureEl.innerHTML = [ '<div class="alert">', ' <button type="button" data-target=".alert" data-dismiss="alert">x</button>', diff --git a/js/src/modal/modal.spec.js b/js/src/modal/modal.spec.js index 5623d174c..292f61f8b 100644 --- a/js/src/modal/modal.spec.js +++ b/js/src/modal/modal.spec.js @@ -354,7 +354,7 @@ describe('Modal', () => { modal.show() }) - it('should close modal when a click occured on data-dismiss="modal"', done => { + it('should close modal when a click occurred on data-dismiss="modal"', done => { fixtureEl.innerHTML = [ '<div class="modal fade">', ' <div class="modal-dialog">', diff --git a/js/src/tab/tab.spec.js b/js/src/tab/tab.spec.js index 9530f3def..0a678e38e 100644 --- a/js/src/tab/tab.spec.js +++ b/js/src/tab/tab.spec.js @@ -415,7 +415,7 @@ describe('Tab', () => { }) describe('data-api', () => { - it('should create dynamicaly a tab', done => { + it('should create dynamically a tab', done => { fixtureEl.innerHTML = [ '<ul class="nav nav-tabs" role="tablist">', ' <li class="nav-item"><a href="#home" class="nav-link active" role="tab">Home</a></li>', |
