Skip to content

Commit

Permalink
Merge pull request #4688 from spalger/fix/eventsOutsideofKbn
Browse files Browse the repository at this point in the history
[Events] properly require the Notifier
  • Loading branch information
rashidkpc committed Aug 18, 2015
2 parents c46e40c + 57e0b7b commit 5a8f770
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ui/public/events.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
define(function (require) {
var _ = require('lodash');
var Notifier = require('ui/notify/Notifier');

return function EventsProvider(Private, Promise, Notifier) {
return function EventsProvider(Private, Promise) {
var SimpleEmitter = require('ui/utils/SimpleEmitter');
var notify = new Notifier({ location: 'EventEmitter' });

Expand Down

0 comments on commit 5a8f770

Please sign in to comment.