lint login and upload

This commit is contained in:
Mario Romano
2016-05-12 19:11:00 +01:00
parent d1858f54ab
commit 6654563469
78 changed files with 1025 additions and 2928 deletions

View File

@@ -1,4 +1,4 @@
/**
/*!
* @license
* Copyright 2016 Alfresco Software, Ltd.
*
@@ -15,11 +15,10 @@
* limitations under the License.
*/
import {Component, ElementRef, Input} from 'angular2/core';
import {FileModel} from '../models/file.model';
import {FileUploadingListComponent} from './file-uploading-list.component';
import {TranslatePipe} from 'ng2-translate/ng2-translate';
import { Component, ElementRef, Input } from 'angular2/core';
import { FileModel } from '../models/file.model';
import { FileUploadingListComponent } from './file-uploading-list.component';
import { TranslatePipe } from 'ng2-translate/ng2-translate';
declare let __moduleName: string;
@@ -59,7 +58,7 @@ export class FileUploadingDialogComponent {
/**
* Display and hide the dialog component.
*/
toggleShowDialog($event) {
toggleShowDialog() {
this._isDialogActive = !this._isDialogActive;
}
@@ -73,7 +72,7 @@ export class FileUploadingDialogComponent {
/**
* Minimize and expand the dialog component.
*/
toggleDialogMinimize($event) {
toggleDialogMinimize() {
this._isDialogMinimized = !this._isDialogMinimized;
}
}
}