25 lines
752 B
JavaScript
25 lines
752 B
JavaScript
/*
|
|
Template Name: Minton - Responsive Bootstrap 4 Admin Dashboard
|
|
Author: CoderThemes
|
|
Website: https://coderthemes.com/
|
|
Contact: support@coderthemes.com
|
|
File: Add New Product
|
|
*/
|
|
|
|
$(document).ready(function(){
|
|
// wizard
|
|
$('#addproduct-nav-pills-wizard').bootstrapWizard({
|
|
'tabClass': 'nav nav-pills nav-justified'
|
|
});
|
|
|
|
// Summernote
|
|
$('#product-description').summernote({
|
|
height: 180, // set editor height
|
|
minHeight: null, // set minimum height of editor
|
|
maxHeight: null, // set maximum height of editor
|
|
focus: false // set focus to editable area after initializing summernote
|
|
});
|
|
|
|
// Select2
|
|
$('.select2').select2();
|
|
}); |