evt.preventDefault();
evt.stopPropagation();
// get the new valuesvar key = dojo.byId("storageKey").value;
var richTextControl = dijit.byId("storageValue");
var value = richTextControl.getValue();
if(!key){alert("Please enter a file name");
return;
}if(!value){alert("Please enter file contents");
return;
}// do the savethis._save(key, value)