When trying to install easysocial using the launcher I am stuck at 95%. After that, nothing happens.
postInstall : function()
{
// Install the admin stuffs
//es.installation.setActive( 'data-progress-postinstall' );
console.log('postInstall skipped');
// es.installation.ajaxCall( 'installPost' , {} , function( result )
// {
// // Set the progress
// es.installation.update( 'data-progress-postinstall' , result , '100%');
// if( !result.state )
// {
// es.installation.showRetry( 'postInstall' );
// return false;
// }
$( '[data-installation-completed]' ).show();
$( '[data-installation-loading]' ).hide();
$( '[data-installation-submit]' ).show();
$( '[data-installation-submit]' ).bind( 'click' , function(){
$( '[data-installation-form]' ).submit();
});
// });
},