mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
64 lines
2.7 KiB
JavaScript
64 lines
2.7 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
System.register(['angular2/platform/browser', './app.component', 'ng2-alfresco-login/ng2-alfresco-login', 'angular2/router', 'angular2/core', 'angular2/http', 'ng2-translate/ng2-translate', 'ng2-alfresco-core/services'], function(exports_1, context_1) {
|
|
"use strict";
|
|
var __moduleName = context_1 && context_1.id;
|
|
var browser_1, app_component_1, ng2_alfresco_login_1, router_1, core_1, http_1, http_2, ng2_translate_1, services_1;
|
|
return {
|
|
setters:[
|
|
function (browser_1_1) {
|
|
browser_1 = browser_1_1;
|
|
},
|
|
function (app_component_1_1) {
|
|
app_component_1 = app_component_1_1;
|
|
},
|
|
function (ng2_alfresco_login_1_1) {
|
|
ng2_alfresco_login_1 = ng2_alfresco_login_1_1;
|
|
},
|
|
function (router_1_1) {
|
|
router_1 = router_1_1;
|
|
},
|
|
function (core_1_1) {
|
|
core_1 = core_1_1;
|
|
},
|
|
function (http_1_1) {
|
|
http_1 = http_1_1;
|
|
http_2 = http_1_1;
|
|
},
|
|
function (ng2_translate_1_1) {
|
|
ng2_translate_1 = ng2_translate_1_1;
|
|
},
|
|
function (services_1_1) {
|
|
services_1 = services_1_1;
|
|
}],
|
|
execute: function() {
|
|
browser_1.bootstrap(app_component_1.AppComponent, [
|
|
router_1.ROUTER_PROVIDERS,
|
|
http_2.HTTP_PROVIDERS,
|
|
core_1.provide(ng2_translate_1.TranslateLoader, {
|
|
useFactory: function (http) { return new ng2_translate_1.TranslateStaticLoader(http, 'node_modules/ng2-alfresco-login/i18n', '.json'); },
|
|
deps: [http_1.Http]
|
|
}),
|
|
// use TranslateService here, and not TRANSLATE_PROVIDERS (which will define a default TranslateStaticLoader)
|
|
ng2_translate_1.TranslateService,
|
|
ng2_alfresco_login_1.ALFRESCO_AUTHENTICATION,
|
|
services_1.ALFRESCO_CORE_PROVIDERS
|
|
]);
|
|
}
|
|
}
|
|
});
|
|
//# sourceMappingURL=main.js.map
|