a4bd5b06 —
Ittihadyya
made fav & delete dialogs work on detailed posts – apparently i forgot to properly reference 'settings', now i feel really stupid :3
6 months ago
// This function returns the new value unless it is `null` or// `undefined`, in which case it returns the old one.exportfunctionoverwrite(oldVal,newVal){returnnewVal===null||typeofnewVal==='undefined'?oldVal:newVal;}