27bb03bbc0
* adding copyright header * fix fmt and a test
14 lines
400 B
JavaScript
14 lines
400 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { addSuccessHandler } from 'ember-service-worker/service-worker-registration';
|
|
|
|
addSuccessHandler(function (registration) {
|
|
// attempt to unregister the service worker on unload because we're not doing any sort of caching
|
|
window.addEventListener('unload', function () {
|
|
registration.unregister();
|
|
});
|
|
});
|