forked from cstefanache/angular2-img-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cstefanache#160 from deyung/single-quote
Double quotes should be single in typescript
- Loading branch information
Showing
16 changed files
with
335 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
|
||
import {AppModule} from "./app.module"; | ||
import {AppModule} from './app.module'; | ||
|
||
platformBrowserDynamic().bootstrapModule(AppModule); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export class CropperDrawSettings { | ||
public strokeWidth: number = 1; | ||
public strokeColor: string = "rgba(255,255,255,1)"; | ||
public strokeColor: string = 'rgba(255,255,255,1)'; | ||
public dragIconStrokeWidth: number = 1; | ||
public dragIconStrokeColor: string = "rgba(0,0,0,1)"; | ||
public dragIconFillColor: string = "rgba(255,255,255,1)"; | ||
public dragIconStrokeColor: string = 'rgba(0,0,0,1)'; | ||
public dragIconFillColor: string = 'rgba(255,255,255,1)'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.