SemanticResultFormats (KM-A) (#727)

Changed function name to avoid conflicts

Co-authored-by: Bernhard Krabina <bernhard.krabina@km-a.net>
这个提交包含在:
thomas-topway-it 2022-09-21 15:36:26 +04:00 提交者 GitHub
父节点 ad5ea25c9d
当前提交 ee30d469bc
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有 2 个文件被更改,包括 3 次插入3 次删除

查看文件

@ -55,7 +55,7 @@
// Iterate over available container objects
container.each( function() {
$( this ).carousel( {
$( this ).dynamicCarousel( {
namespace: 'srf-pagewidget-carousel',
slider: '.slider',
slide: '.slide'

查看文件

@ -25,7 +25,7 @@
return this;
};
$.fn.carousel = function(config) {
$.fn.dynamicCarousel = function(config) {
// Prevent re-init:
if( this.data( "carousel-initialized" ) ) { return; }
@ -523,4 +523,4 @@ $.event.special.dragSnap = {
});
});
}
};
};