mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
31 lines
583 B
JavaScript
31 lines
583 B
JavaScript
|
/**
|
||
|
* Latest posts page main script
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
ComunicWeb.pages.latestPosts.main = {
|
||
|
|
||
|
/**
|
||
|
* Open latest posts page
|
||
|
*
|
||
|
* @param {Object} params Parametres required to open the page
|
||
|
* @param {HTMLElement} target The target for the user page
|
||
|
*/
|
||
|
open: function(params, target){
|
||
|
|
||
|
//Perform a request on the server to get the list of latest posts
|
||
|
ComunicWeb.components.posts.interface.get_latest(function(response){
|
||
|
|
||
|
//Check for errors - display a modal
|
||
|
if(response.error){
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
//Display the list of posts
|
||
|
|
||
|
});
|
||
|
|
||
|
},
|
||
|
}
|