ComunicWeb/assets/js/pagesList.js

24 lines
415 B
JavaScript
Raw Normal View History

2017-01-22 13:03:31 +01:00
/**
* Differents pages listing
*
* @author Pierre HUBERT
*/
ComunicWeb.pagesList = {
/**
* Home page
*/
home: {
pageTitle: "Comunic, v2",
methodHandler: "ComunicWeb.pages.home.home.openHomePage",
2017-01-22 13:03:31 +01:00
},
/**
* 404 Page not found
*/
notFound: {
2017-01-22 18:46:06 +01:00
pageTitle: "404 page not found",
methodHandler: "ComunicWeb.common.error.pageNotFound",
2017-01-22 13:03:31 +01:00
}
};