init.js 277 Bytes
Newer Older
1 2 3 4 5 6 7
'use strict';

angular.element(document).ready(function() {
    /* Fixing facebook bug with redirect */
    if (window.location.hash === '#_=_') window.location.hash = '#!';

    //Then init the app
8 9 10
    angular.bootstrap(document, ['dgc'], {
        strictDi: true
    });
11
});