Skip to content

Commit

Permalink
Merge pull request #2541 from projectblacklight/missing-const
Browse files Browse the repository at this point in the history
Add missing const to javascript
  • Loading branch information
dkinzer authored Nov 19, 2021
2 parents 04acc60 + b859a71 commit b3671ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/assets/javascripts/blacklight/blacklight.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

Blacklight = function () {
var Blacklight = function () {
var buffer = new Array();
return {
onLoad: function onLoad(func) {
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/blacklight/core.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Blacklight = function() {
const Blacklight = function() {
var buffer = new Array;
return {
onLoad: function(func) {
Expand Down

0 comments on commit b3671ec

Please # to comment.