Skip to content

Commit

Permalink
fix($angularMeteorSettings): unknown provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Kisiela committed Feb 20, 2016
1 parent f0370d9 commit bb1422c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 1 addition & 4 deletions src/angular-meteor.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import './lib/get-updates';
import './lib/diff-array';
// legacy
import './modules/angular-meteor-settings';
import './modules/angular-meteor-ironrouter';
import './modules/angular-meteor-utils';
import './modules/angular-meteor-subscribe';
Expand Down Expand Up @@ -46,10 +47,6 @@ angular.module(module, [

])

.constant('$angularMeteorSettings', {
suppressWarnings: false
})

.run([
Mixer,
Core,
Expand Down
4 changes: 4 additions & 0 deletions src/modules/angular-meteor-settings.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
angular.module('angular-meteor.settings', [])
.constant('$angularMeteorSettings', {
suppressWarnings: false
});

0 comments on commit bb1422c

Please sign in to comment.