Skip to content

Commit

Permalink
rename service
Browse files Browse the repository at this point in the history
  • Loading branch information
nicgirault committed Nov 28, 2015
1 parent 400512a commit 1177063
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-trello-api-client",
"homepage": "https://github.com/nicgirault/angular-trello-api-client",
"version": "1.0.2",
"version": "1.0.4",
"authors": [
"nicgirault <[email protected]>"
],
Expand Down
8 changes: 4 additions & 4 deletions dist/angular-trello-api-client.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
angular.module('angular-trello-api-client', ['satellizer']);
angular.module('trello-api-client', ['satellizer']);

angular.module('angular-trello-api-client').constant('TrelloClientConfig', {
angular.module('trello-api-client').constant('TrelloClientConfig', {
key: null,
appName: null,
authEndpoint: 'https://trello.com',
Expand All @@ -12,7 +12,7 @@ angular.module('angular-trello-api-client').constant('TrelloClientConfig', {
localStoragePrefix: 'trello'
});

angular.module('angular-trello-api-client').factory('TrelloInterceptor', [
angular.module('trello-api-client').factory('TrelloInterceptor', [
'$q', 'SatellizerConfig', 'SatellizerStorage', 'SatellizerShared', 'TrelloClientConfig', function($q, config, storage, shared, TrelloClientConfig) {
return {
request: function(request) {
Expand Down Expand Up @@ -42,7 +42,7 @@ angular.module('angular-trello-api-client').factory('TrelloInterceptor', [
}
]);

angular.module('angular-trello-api-client').provider('TrelloClient', function($authProvider, TrelloClientConfig) {
angular.module('trello-api-client').provider('TrelloClient', function($authProvider, TrelloClientConfig) {
this.init = function(config) {
if (config == null) {
return;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-trello-api-client",
"version": "1.0.2",
"version": "1.0.4",
"description": "",
"main": "gulpfile.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/config.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
angular.module 'angular-trello-api-client'
angular.module 'trello-api-client'
.constant 'TrelloClientConfig', {
key: null
appName: null
Expand Down
2 changes: 1 addition & 1 deletion src/interceptor.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
angular.module 'angular-trello-api-client'
angular.module 'trello-api-client'
.factory 'TrelloInterceptor', [
'$q'
'SatellizerConfig'
Expand Down
2 changes: 1 addition & 1 deletion src/module.coffee
Original file line number Diff line number Diff line change
@@ -1 +1 @@
angular.module 'angular-trello-api-client', ['satellizer']
angular.module 'trello-api-client', ['satellizer']
2 changes: 1 addition & 1 deletion src/provider.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
angular.module 'angular-trello-api-client'
angular.module 'trello-api-client'
.provider 'TrelloClient', ($authProvider, TrelloClientConfig) ->
@init = (config) ->
return unless config?
Expand Down

0 comments on commit 1177063

Please sign in to comment.