@openui5/sap.ui.core
Version:
OpenUI5 Core Library sap.ui.core
19 lines (16 loc) • 696 B
JavaScript
/**
* @fileoverview
* @deprecated As of version 1.20, replaced by sap/ui/thirdparty/jqueryui/jquery-ui-effect-transfer.js
*/
(function(jQuery, sap) {
var MESSAGE = "The file sap/ui/thirdparty/jqueryui/jquery-effects-transfer.js has been renamed to sap/ui/thirdparty/jqueryui/jquery-ui-effect-transfer.js! Please update the dependencies accordingly.";
if (sap && sap.ui && sap.ui.define) {
// if sap.ui.define is available, define the new module and log a warning
sap.ui.define(["sap/ui/thirdparty/jqueryui/jquery-ui-effect-transfer"], function(jQuery) {
return jQuery;
});
jQuery.sap.log.warning(MESSAGE);
} else {
throw new Error(MESSAGE);
}
})(window.jQuery, window.sap);