remove consecutive blank line

This commit is contained in:
Eugenio Romano
2016-10-12 13:47:38 +01:00
parent 2dc1cec71e
commit 68465e46f2
54 changed files with 0 additions and 80 deletions

View File

@@ -15,7 +15,6 @@
* limitations under the License.
*/
export class EventMock {
static keyDown(key: any) {
@@ -34,5 +33,3 @@ export class EventMock {
window.dispatchEvent(new Event('resize'));
}
}

View File

@@ -74,4 +74,3 @@ describe('Test ng2-alfresco-viewer Img viewer component ', () => {
expect(element.querySelector('#viewer-image').getAttribute('alt')).toEqual('fake-name');
});
});

View File

@@ -15,7 +15,6 @@
* limitations under the License.
*/
import { ComponentFixture, TestBed, async } from '@angular/core/testing';
import { RenderingQueueServices } from '../services/rendering-queue.services';
import { PdfViewerComponent } from './pdfViewer.component';
@@ -275,4 +274,3 @@ describe('Test ng2-alfresco-viewer PdfViewer component', () => {
});
});
});

View File

@@ -123,7 +123,6 @@ export class PdfViewerComponent {
this.pdfViewer.setDocument(pdfDocument);
}
/**
* Method to scale the page current support implementation
*
@@ -217,7 +216,6 @@ export class PdfViewerComponent {
return (newScale === oldScale);
}
/**
* method to check if is a land scape view
*

View File

@@ -154,7 +154,6 @@ export class ViewerComponent {
return this.isImageExtension() || this.isImageMimeType();
}
/**
* Check if the content is a media through the extension or mime type
*

View File

@@ -38,4 +38,3 @@ describe('RenderingQueueServices', () => {
expect(service.CLEANUP_TIMEOUT).toEqual(30000);
});
});