Skip to content

Commit

Permalink
Update previewUrl type to boolean (bleenco#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasjukaitis authored and jkuri committed Jan 25, 2017
1 parent 6facc35 commit 3b31a91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/classes/ng-uploader-options.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface INgUploaderOptions {
authToken?: string;
fieldName?: string;
fieldReset?: boolean;
previewUrl?: string;
previewUrl?: boolean;
calculateSpeed?: boolean;
filterExtensions?: boolean;
allowedExtensions?: string[];
Expand All @@ -36,7 +36,7 @@ export class NgUploaderOptions implements INgUploaderOptions {
authToken?: string;
fieldName?: string;
fieldReset?: boolean;
previewUrl?: string;
previewUrl?: boolean;
calculateSpeed?: boolean;
filterExtensions?: boolean;
allowedExtensions?: string[];
Expand Down

0 comments on commit 3b31a91

Please sign in to comment.