Skip to content

Commit

Permalink
chore(clang): format code for v1.0.41
Browse files Browse the repository at this point in the history
Closes #404
  • Loading branch information
sebholstein committed Jun 8, 2016
1 parent b85ad0e commit c688b27
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 3 additions & 1 deletion src/core/directives/google-map-info-window.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/core/directives/google-map-marker.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion src/core/services.ts
Original file line number Diff line number Diff line change
@@ -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';

0 comments on commit c688b27

Please sign in to comment.