diff --git a/package.json b/package.json index 3f7ea5de2..eb4d4f24a 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ }, "devDependencies": { "babel-eslint": "6.0.4", - "clang-format": "1.0.39", + "clang-format": "1.0.41", "del": "2.2.0", "eslint": "^2.10.2", "eslint-config-airbnb-base": "^3.0.1", diff --git a/src/core/directives/google-map-info-window.ts b/src/core/directives/google-map-info-window.ts index b9c7b0200..fd9f98a4f 100644 --- a/src/core/directives/google-map-info-window.ts +++ b/src/core/directives/google-map-info-window.ts @@ -1,5 +1,7 @@ -import {Component, SimpleChange, OnDestroy, OnChanges, ElementRef, EventEmitter} from '@angular/core'; +import {Component, ElementRef, EventEmitter, OnChanges, OnDestroy, SimpleChange} from '@angular/core'; + import {InfoWindowManager} from '../services/info-window-manager'; + import {SebmGoogleMapMarker} from './google-map-marker'; let infoWindowId = 0; diff --git a/src/core/directives/google-map-marker.ts b/src/core/directives/google-map-marker.ts index 988d868d9..79eb74f92 100644 --- a/src/core/directives/google-map-marker.ts +++ b/src/core/directives/google-map-marker.ts @@ -1,4 +1,4 @@ -import {Directive, SimpleChange, OnDestroy, OnChanges, EventEmitter, ContentChild, AfterContentInit} from '@angular/core'; +import {AfterContentInit, ContentChild, Directive, EventEmitter, OnChanges, OnDestroy, SimpleChange} from '@angular/core'; import {MouseEvent} from '../events'; import * as mapTypes from '../services/google-maps-types'; diff --git a/src/core/services.ts b/src/core/services.ts index c5cfcf6ef..9bdb89f32 100644 --- a/src/core/services.ts +++ b/src/core/services.ts @@ -1,6 +1,6 @@ export {GoogleMapsAPIWrapper} from './services/google-maps-api-wrapper'; export {InfoWindowManager} from './services/info-window-manager'; -export {LazyMapsAPILoader, LazyMapsAPILoaderConfig, GoogleMapsScriptProtocol} from './services/maps-api-loader/lazy-maps-api-loader'; +export {GoogleMapsScriptProtocol, LazyMapsAPILoader, LazyMapsAPILoaderConfig} from './services/maps-api-loader/lazy-maps-api-loader'; export {MapsAPILoader} from './services/maps-api-loader/maps-api-loader'; export {NoOpMapsAPILoader} from './services/maps-api-loader/noop-maps-api-loader'; export {MarkerManager} from './services/marker-manager';