Skip to content

Commit df6b380

Browse files
committed
Whitespace
1 parent adbd3bb commit df6b380

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

background.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
1515
break;
1616
case 'getCode':
1717
chrome.storage.sync.get('code', function (data) {
18-
sendResponse(data);
18+
sendResponse(data);
1919
});
2020
return true;
2121
break;
2222
case 'setCode':
2323
chrome.storage.sync.set({'code': request.value}, function () {
24-
sendResponse('success');
24+
sendResponse('success');
2525
});
2626
return true;
2727
break;

0 commit comments

Comments
 (0)