@ -20,9 +20,10 @@ define([
'/common/pinpad.js' ,
'/common/pinpad.js' ,
'/customize/application_config.js' ,
'/customize/application_config.js' ,
'/common/media-tag.js' ,
'/common/media-tag.js' ,
'/bower_components/nthen/index.js' ,
] , function ( $ , Config , Messages , Store , Util , Hash , UI , History , UserList , Title , Metadata ,
] , function ( $ , Config , Messages , Store , Util , Hash , UI , History , UserList , Title , Metadata ,
Messaging , CodeMirror , Files , FileCrypto , Realtime , Clipboard ,
Messaging , CodeMirror , Files , FileCrypto , Realtime , Clipboard ,
Pinpad , AppConfig , MediaTag ) {
Pinpad , AppConfig , MediaTag , Nthen ) {
// Configure MediaTags to use our local viewer
// Configure MediaTags to use our local viewer
if ( MediaTag && MediaTag . PdfPlugin ) {
if ( MediaTag && MediaTag . PdfPlugin ) {
@ -2071,23 +2072,8 @@ define([
return function ( f ) {
return function ( f ) {
if ( initialized ) {
if ( initialized ) {
return void window . setTimeout ( function ( ) {
return void setTimeout ( function ( ) { f ( void 0 , env ) ; } ) ;
f ( void 0 , env ) ;
} ) ;
}
var block = 0 ;
var cb = function ( ) {
block -- ;
if ( ! block ) {
initialized = true ;
updateLocalVersion ( ) ;
common . addTooltips ( ) ;
f ( void 0 , env ) ;
if ( typeof ( window . onhashchange ) === 'function' ) { window . onhashchange ( ) ; }
}
}
} ;
if ( sessionStorage [ newPadNameKey ] ) {
if ( sessionStorage [ newPadNameKey ] ) {
common . initialName = sessionStorage [ newPadNameKey ] ;
common . initialName = sessionStorage [ newPadNameKey ] ;
@ -2097,7 +2083,6 @@ define([
common . initialPath = sessionStorage [ newPadPathKey ] ;
common . initialPath = sessionStorage [ newPadPathKey ] ;
delete sessionStorage [ newPadPathKey ] ;
delete sessionStorage [ newPadPathKey ] ;
}
}
common . onFriendRequest = function ( confirmText , cb ) {
common . onFriendRequest = function ( confirmText , cb ) {
common . confirm ( confirmText , cb , null , true ) ;
common . confirm ( confirmText , cb , null , true ) ;
} ;
} ;
@ -2105,20 +2090,9 @@ define([
common . log ( data . logText ) ;
common . log ( data . logText ) ;
} ;
} ;
Store . ready ( function ( err , storeObj ) {
var proxy ;
store = common . store = env . store = storeObj ;
var network ;
common . addDirectMessageHandler ( common ) ;
var provideFeedback = function ( ) {
var proxy = getProxy ( ) ;
var network = getNetwork ( ) ;
network . on ( 'disconnect' , function ( ) {
Realtime . setConnectionState ( false ) ;
} ) ;
network . on ( 'reconnect' , function ( ) {
Realtime . setConnectionState ( true ) ;
} ) ;
if ( Object . keys ( proxy ) . length === 1 ) {
if ( Object . keys ( proxy ) . length === 1 ) {
feedback ( "FIRST_APP_USE" , true ) ;
feedback ( "FIRST_APP_USE" , true ) ;
}
}
@ -2141,8 +2115,25 @@ define([
}
}
common . reportScreenDimensions ( ) ;
common . reportScreenDimensions ( ) ;
common . reportLanguage ( ) ;
common . reportLanguage ( ) ;
} ;
$ ( function ( ) {
Nthen ( function ( waitFor ) {
Store . ready ( waitFor ( function ( err , storeObj ) {
store = common . store = env . store = storeObj ;
common . addDirectMessageHandler ( common ) ;
proxy = getProxy ( ) ;
network = getNetwork ( ) ;
network . on ( 'disconnect' , function ( ) {
Realtime . setConnectionState ( false ) ;
} ) ;
network . on ( 'reconnect' , function ( ) {
Realtime . setConnectionState ( true ) ;
} ) ;
provideFeedback ( ) ;
} ) , common ) ;
} ) . nThen ( function ( waitFor ) {
$ ( waitFor ( ) ) ;
} ) . nThen ( function ( waitFor ) {
// Race condition : if document.body is undefined when alertify.js is loaded, Alertify
// Race condition : if document.body is undefined when alertify.js is loaded, Alertify
// won't work. We have to reset it now to make sure it uses a correct "body"
// won't work. We have to reset it now to make sure it uses a correct "body"
UI . Alertify . reset ( ) ;
UI . Alertify . reset ( ) ;
@ -2164,19 +2155,16 @@ define([
document . location . reload ( ) ;
document . location . reload ( ) ;
return ;
return ;
}
}
if ( parsedNew ) {
if ( parsedNew ) { oldHref = newHref ; }
oldHref = newHref ;
}
} ;
} ;
if ( PINNING _ENABLED && isLoggedIn ( ) ) {
if ( PINNING _ENABLED && isLoggedIn ( ) ) {
console . log ( "logged in. pads will be pinned" ) ;
console . log ( "logged in. pads will be pinned" ) ;
block ++ ;
var w0 = waitFor ( ) ;
Pinpad . create ( network , proxy , function ( e , call ) {
Pinpad . create ( network , proxy , function ( e , call ) {
if ( e ) {
if ( e ) {
console . error ( e ) ;
console . error ( e ) ;
return cb ( ) ;
return w0 ( ) ;
}
}
console . log ( 'RPC handshake complete' ) ;
console . log ( 'RPC handshake complete' ) ;
@ -2187,7 +2175,7 @@ define([
common . account . limit = limit ;
common . account . limit = limit ;
localStorage . plan = common . account . plan = plan ;
localStorage . plan = common . account . plan = plan ;
common . account . note = note ;
common . account . note = note ;
cb ( ) ;
w0 ( ) ;
} ) ;
} ) ;
common . arePinsSynced ( function ( err , yes ) {
common . arePinsSynced ( function ( err , yes ) {
@ -2208,43 +2196,42 @@ define([
console . log ( 'pinning disabled' ) ;
console . log ( 'pinning disabled' ) ;
}
}
block ++ ;
var w1 = waitFor ( ) ;
require ( [
require ( [
'/common/rpc.js' ,
'/common/rpc.js' ,
] , function ( Rpc ) {
] , function ( Rpc ) {
Rpc . createAnonymous ( network , function ( e , call ) {
Rpc . createAnonymous ( network , function ( e , call ) {
if ( e ) {
if ( e ) {
console . error ( e ) ;
console . error ( e ) ;
return void cb ( ) ;
return void w1 ( ) ;
}
}
anon _rpc = common . anon _rpc = env . anon _rpc = call ;
anon _rpc = common . anon _rpc = env . anon _rpc = call ;
cb ( ) ;
w1 ( ) ;
} ) ;
} ) ;
} ) ;
} ) ;
// Everything's ready, continue...
// Everything's ready, continue...
if ( $ ( '#pad-iframe' ) . length ) {
if ( $ ( '#pad-iframe' ) . length ) {
block ++ ;
var w2 = waitFor ( ) ;
var $iframe = $ ( '#pad-iframe' ) ;
var $iframe = $ ( '#pad-iframe' ) ;
var iframe = $iframe [ 0 ] ;
var iframe = $iframe [ 0 ] ;
var iframeDoc = iframe . contentDocument || iframe . contentWindow . document ;
var iframeDoc = iframe . contentDocument || iframe . contentWindow . document ;
if ( iframeDoc . readyState === 'complete' ) {
if ( iframeDoc . readyState === 'complete' ) {
cb ( ) ;
return void w2 ( ) ;
return ;
}
}
$iframe . load ( cb ) ;
$iframe . load ( w2 ) ; //cb);
return ;
}
}
} ) . nThen ( function ( ) {
block ++ ;
updateLocalVersion ( ) ;
cb ( ) ;
common . addTooltips ( ) ;
f ( void 0 , env ) ;
if ( typeof ( window . onhashchange ) === 'function' ) { window . onhashchange ( ) ; }
} ) ;
} ) ;
} , common ) ;
} ;
} ;
} ( ) ) ;
} ( ) ) ;
// MAGIC that happens implicitly
$ ( function ( ) {
$ ( function ( ) {
Messages . _applyTranslation ( ) ;
Messages . _applyTranslation ( ) ;
} ) ;
} ) ;