You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 11, 2020. It is now read-only.
Hello Sir,
I have successfully integrated insert plugin in Medium Editor. I am using PHP for saving technology. After Uploading multiple images, when I hit play button for slideshow, it works fine in editor. Is there a way to dynamically change the images while fetching data(i.e. slideshow image remains static when image is fetched)
Hello Sir,
I have successfully integrated insert plugin in Medium Editor. I am using PHP for saving technology. After Uploading multiple images, when I hit play button for slideshow, it works fine in editor. Is there a way to dynamically change the images while fetching data(i.e. slideshow image remains static when image is fetched)
I have added my medium editor code:
/* ====================== For Image Grid Play functionality: Start ====================== */
$(function () {
$('.editable').mediumInsert({
editor: editor,
addons: {
images: {
uploadScript: null,
deleteScript: null,
//captionPlaceholder: 'Type caption for image',
styles: {
slideshow: {
label: '',
added: function ($el) {
$el
.data('cycle-center-vert', true)
.cycle({
slides: 'figure'
});
},
removed: function ($el) {
$el.cycle('destroy');
}
}
},
actions: null
}
}
});
});
The text was updated successfully, but these errors were encountered: