Skip to content

Commit

Permalink
Namespace config service to avoid conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmarabeas committed Jan 17, 2016
1 parent b6c8a55 commit 0169b57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ng-FitText.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'use strict';

angular.module('ngFitText', [])
.value('config', {
.value('fitTextDefaultConfig', {
'debounce' : false,
'delay' : 250,
'loadDelay' : 10,
Expand All @@ -26,7 +26,7 @@

.directive('fittext', [
'$timeout',
'config',
'fitTextDefaultConfig',
'fitTextConfig',

function($timeout, config, fitTextConfig) {
Expand Down

0 comments on commit 0169b57

Please sign in to comment.