12345678910111213141516171819 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * @deprecated since version 2.2.0
- */
- define([
- 'jquery',
- 'jquery/ui'
- ], function ($) {
- 'use strict';
- //Widget Wrapper
- $.widget('mage.tooltip', $.ui.tooltip, {});
- return $.mage.tooltip;
- });
|