When app resuem, litewebappservice will pass 'SkipReload',
WRT doesn't need call resume() in this case, bcz WRT will
receive OnResume() event from appfw, so resume() will be
handled when receive OnResume().
Change-Id: I2b214ae9ded30bc254f7e0ca678e3a89d7b55e02
Signed-off-by: liwei <wei90727.li@samsung.com>
let skipReload = appControl.getData('SkipReload');
if (skipReload == 'Yes') {
console.log('skipping reload');
- // TODO : Need to care this situation and decide to pass the addon event emitter to resume()
- this.webApplication.resume();
return false;
}
}