blob: dcea060f11d02924041b6f5db1a61fdc38afc0fe [file] [log] [blame]
'use strict';
angular.
module('buildMonitor', [ 'buildMonitor.controllers', 'buildMonitor.settings', 'slugifier' ]).
run(['$rootScope', 'notifyUser', function($rootScope, notifyUser) {
$rootScope.settings = { };
if (! Modernizr.flexbox) {
notifyUser.aboutInsufficientSupportOfCSS3('flexbox');
}
}]);