style(ionRefresher): remove added space

Fixes #1167
This commit is contained in:
Andy Joslin
2014-04-21 12:29:25 -06:00
parent 09a7729914
commit a33ca26465
2 changed files with 2 additions and 10 deletions

View File

@@ -86,14 +86,6 @@ describe('ionRefresher directive', function() {
expect(el[0].querySelector('.icon.icon-refreshing.monkey-icon')).toBeTruthy();
});
it('should have   pulling-text by default', function() {
var el = setup();
expect(el[0].querySelector('.text-pulling').innerHTML).toBe(' ');
});
it('should have   refreshing-text by default', function() {
var el = setup();
expect(el[0].querySelector('.text-refreshing').innerHTML).toBe(' ');
});
it('should allow pullingText', function() {
var el = setup('pulling-text="{{2+2}} <b>some</b> text"');
expect(el[0].querySelector('.text-pulling').innerHTML).toBe('4 <b>some</b> text');