Browser compatibility in onsen
-
My app is working fine in chrome browser but not in default browser of mobile and mozilla.
Functionalities like drag and drop i have used sharing the code below
$(’.sortable-list’).sortable({
axis: ‘y’,
handle: ‘.list__header’,
cancel: ‘.RemoveSection’,
stop: function( event, ui ) {
// IE doesn’t register the blur when sorting
// so trigger focusout handlers to remove .ui-state-focus
ui.item.children( '.list__header ’ ).triggerHandler( ‘focusout’ );
}
});