Вход Регистрация
Файл: framework/admin/javascript/LeftAndMain.FieldHelp.js
Строк: 65
<?php
(function($) {
    $.
entwine('ss', function($) {
        
/**
         * Converts an inline field description into a tooltip
         * which is shown on hover over any part of the field container,
         * as well as when focusing into an input element within the field container.
         *
         * Note that some fields don't have distinct focusable
         * input fields (e.g. GridField), and aren't compatible
         * with showing tooltips.
         */
        
$(".cms .field.cms-description-tooltip").entwine({
            
onmatch: function() {
                
this._super();

                var 
descriptionEl this.find('.description'), inputEltooltipEl;
                if(
descriptionEl.length) {
                    
this
                        
// TODO Remove title setting, shouldn't be necessary
                        
.attr('title'descriptionEl.text())
                        .
tooltip({contentdescriptionEl.html()});
                    
descriptionEl.remove();
                }
            },
        });

        $(
".cms .field.cms-description-tooltip :input").entwine({
            
onfocusin: function(e) {
                
this.closest('.field').tooltip('open');
            },
            
onfocusout: function(e) {
                
this.closest('.field').tooltip('close');
                }
        });

        });
}(
jQuery));
?>
Онлайн: 0
Реклама