mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
19 lines
513 B
JavaScript
19 lines
513 B
JavaScript
import {templateUrl} from '../shared/template-url/template-url.factory';
|
|
import controller from './about.controller';
|
|
import { N_ } from '../i18n';
|
|
|
|
export default {
|
|
name: 'about',
|
|
route: '/about',
|
|
controller: controller,
|
|
ncyBreadcrumb: {
|
|
label: N_("ABOUT")
|
|
},
|
|
onExit: function(){
|
|
// hacky way to handle user browsing away via URL bar
|
|
$('.modal-backdrop').remove();
|
|
$('body').removeClass('modal-open');
|
|
},
|
|
templateUrl: templateUrl('about/about')
|
|
};
|