Откройте файл osx.js и удалите следующую строку (код начинается со строки 14)
init: function () {
****$("input.osx, a.osx").click(function (e) { << delete this line
e.preventDefault();**** << delete this line
$("#osx-modal-content").modal({
overlayId: 'osx-overlay',
containerId: 'osx-container',
closeHTML: null,
minHeight: 80,
opacity: 65,
position: ['0',],
overlayClose: true,
onOpen: OSX.open,
onClose: OSX.close
});
}); <<< delete this line
},
, чтобы стать
init: function () {
$("#osx-modal-content").modal({
overlayId: 'osx-overlay',
containerId: 'osx-container',
closeHTML: null,
minHeight: 80,
opacity: 65,
position: ['0',],
overlayClose: true,
onOpen: OSX.open,
onClose: OSX.close
});
},