You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
870 B

/**
* @fileoverview Setup the paths and load the Modal Text Message feature properly load components
* @author Ryan Thibodeaux
* @version 1.0.1
*/
/*
* Copyright (c) 2017, Ryan Thibodeaux. All Rights Reserved
* see included LICENSE file (BSD 3-clause) in the app's root directory
*/
(function() {
"use strict";
// configure the RequrieJS paths
require.config({
paths: {
"ModalTextMsg" : "../app/metricator-for-nmon/components/modaltextmsg/modaltextmsg"
}
});
require([
"/static/app/metricator-for-nmon/components/modaltextmsg/wrapper.js"
], function() { /* do nothing */ }, function(err) {
// error callback
// the error has a list of modules that failed
var failedId = err.requireModules && err.requireModules[0];
console.error("Error when loading Modal Text Message dependencies: ", err);
});
}).call(this);