убедитесь, что загрузка чаевых после модальной анимации выполняется следующим образом:
откройте файл osx.js, найдите этот фрагмент кода и добавьте вызов tip, как показано ниже:
open: function (d) {
var self = this;
self.container = d.container[0];
d.overlay.fadeIn('slow', function () {
$("#osx-modal-content", self.container).show();
var title = $("#osx-modal-title", self.container);
title.show();
d.container.slideDown('slow', function () {
setTimeout(function () {
var h = $("#osx-modal-data", self.container).height()
+ title.height()
+ 20; // padding
d.container.animate(
{height: h},
200,
function () {
$("div.close", self.container).show();
$("#osx-modal-data", self.container).show();
// add this line of code...
$("form input").tipTip({defaultPosition: "right", activation: "focus", delay: "10", fadeIn: 1});
}
);
}, 300);
});
})
},