Fix more missing Utility imports (#3791).

This commit is contained in:
evazion
2018-08-04 11:37:25 -05:00
parent 2b33d23168
commit 7c524f867b
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
import Utility from "./utility";
let Artist = {};
Artist.initialize_all = function() {
@@ -43,4 +45,4 @@ $(document).ready(function() {
Artist.initialize_all();
});
export default Artist
export default Artist

View File

@@ -1,3 +1,5 @@
import Utility from "./utility";
let Cookie = {};
Cookie.put = function(name, value, days) {