fix(preloader): missed file, remove again

This commit is contained in:
nixa 2016-05-24 17:06:34 +03:00
parent e84c009dc3
commit 44faacd19a
2 changed files with 0 additions and 17 deletions

View file

@ -1,16 +0,0 @@
import {Injectable} from '@angular/core';
@Injectable()
export class BaImageLoaderService {
public load(src):Promise<any> {
return new Promise((resolve, reject) => {
let img = new Image();
img.src = src;
img.onload = function(){
resolve('Image with src ' + src + ' loaded successfully.');
};
});
}
}

View file

@ -1 +0,0 @@
export * from './baImageLoader.service.ts';