[Issue #328] Reset button handler (in progress)

This commit is contained in:
Mavis Ou 2013-07-31 16:51:36 -07:00
Родитель 53920ed13c
Коммит ef9a2d70b3
1 изменённых файлов: 2 добавлений и 7 удалений

Просмотреть файл

@ -130,14 +130,9 @@ document.querySelector('.reset-data').addEventListener('click', function(){
if ( confirmed ){
addon.emit('reset');
aggregate.emit('reset');
currentVisualization.emit('reset');
currentVisualization.emit('remove');
allConnections = [];
Object.keys(localStorage).sort().forEach(function(key){
if ( key.charAt(0) == "2" ){ // date keys are in the format of yyyy-mm-dd
delete localStorage[key];;
}
});
delete localStorage.dnsDialogs;
localStorage.clear();
updateStatsBar();
}
}