remove jquery dep, use native dom api instead

This commit is contained in:
Bala Clark 2015-07-18 17:16:49 +02:00
parent 155edf4935
commit f63ac2e286
5 changed files with 6 additions and 16 deletions

View file

@ -6,7 +6,7 @@ describe('LoadIndicator', function () {
it('should render on init', function () {
let indicator = new LoadIndicator()
assert.equal(indicator.el.outerHTML
, '<div id="cb-loading-overlay" class="cb-control" style="display: none; "></div>')
, '<div id="cb-loading-overlay" style="display: none; "></div>')
})
it('should show', function () {