This commit is contained in:
2020-01-24 17:53:26 -05:00
parent 7f3e301b7d
commit a77f69912d
1264 changed files with 339035 additions and 0 deletions
@@ -0,0 +1,20 @@
/*=========================================================================================
File Name: user-settings.js
Description: User Settings jQuery Plugin Intialization
--------------------------------------------------------------------------------------
Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
Author: PIXINVENT
Author URL: http://www.themeforest.net/user/pixinvent
==========================================================================================*/
// profile picture upload
Dropzone.options.profilePicUpload = {
paramName: "file", // The name that will be used to transfer the file
maxFiles: 1,
init: function () {
this.on("maxfilesexceeded", function (file) {
this.removeAllFiles();
this.addFile(file);
});
}
};