Skip to content

Commit

Permalink
fix(tfs): Rename $q.ts and $injector.ts files, removing leading dolla…
Browse files Browse the repository at this point in the history
…r signs

Closes angular-ui/ui-router#3386
  • Loading branch information
christopherthielen committed Mar 25, 2017
1 parent a74c3f7 commit cb653ee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/vanilla/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
/** */
export * from "./interface";

export * from "./$q";
export * from "./$injector";
export * from "./q";
export * from "./injector";

export * from "./baseLocationService";
export * from "./hashLocationService";
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/vanilla/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import { UIRouter } from "../router";
import { PushStateLocationService } from "./pushStateLocationService";
import { MemoryLocationService } from "./memoryLocationService";
import { MemoryLocationConfig } from "./memoryLocationConfig";
import { $injector } from "./$injector";
import { $q } from "./$q";
import { $injector } from "./injector";
import { $q } from "./q";
import { services } from "../common/coreservices";

export function servicesPlugin(router: UIRouter): ServicesPlugin {
Expand Down
File renamed without changes.

0 comments on commit cb653ee

Please sign in to comment.