Share your copy & paste :: Part MCMVIII
So bring it... what's in your clipboard right now?
Code:
if((newPlatform != null) && (newContent != null)){
newContent.platformId = newPlatform.id;
sendNotification(ApplicationFacade.CMD_CHANGE_STORY_CONTENT, newContent);
}
else if(newContent != null){
newContent.platformId = navigationProxy.navigationRoot.id;
sendNotification(ApplicationFacade.CMD_CHANGE_STORY_CONTENT, newContent);
}
else if(newPlatform != null){
sendNotification(ApplicationFacade.CMD_CHANGE_STORY_CATEGORY, newPlatform);
}
internalChange = false;
}