webapplate/webapplate

View on GitHub
public/js/fallback.js

Summary

Maintainability
A
0 mins
Test Coverage
(function() {
  'use strict';

  // Reload content
  var reload = document.querySelector('#reload');
  if (reload) {
    reload.onclick = function() {
      location.reload(true);
    };
  }
}());