content/hifi-content/sean/supportchat/loadSupportApp.js
2022-02-14 02:04:11 +01:00

21 lines
No EOL
448 B
JavaScript

// loadSupportApp.js
//
// Copyright 2018 High Fidelity Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
(function() {
var SupportItem = function() {};
SupportItem.prototype = {
preload: function(entityID) {
Script.require('./support.js');
}
};
return new SupportItem();
});