Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fib-maxup

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fib-maxup - npm Package Compare versions

Comparing version 1.4.48 to 1.4.49

js/navbar.js

132

js/MaxUp.js
const PostFileProgress = (InputFile, ProgressBar, path) => {
const formData = new FormData();
formData.append(InputFile, document.getElementById(InputFile)[0].files[0]);
const request = new XMLHttpRequest();
request.upload.addEventListener('progress', function (e){
const fileSize = document.getElementById(InputFile)[0].files[0].size;
// const PostFileProgress = (InputFile, ProgressBar, path) => {
// const formData = new FormData();
// formData.append(InputFile, document.getElementById(InputFile)[0].files[0]);
// const request = new XMLHttpRequest();
// request.upload.addEventListener('progress', function (e){
// const fileSize = document.getElementById(InputFile)[0].files[0].size;
if (e.loaded <= fileSize){
const percent = Math.round(e.loaded / fileSize * 100);
document.getElementById(ProgressBar).innerWidth = percent+'%';
}
if (e.loaded === e.total){
document.getElementById(ProgressBar).innerWidth = 100+'%';
}
// if (e.loaded <= fileSize){
// const percent = Math.round(e.loaded / fileSize * 100);
// document.getElementById(ProgressBar).innerWidth = percent+'%';
// }
// if (e.loaded === e.total){
// document.getElementById(ProgressBar).innerWidth = 100+'%';
// }
});
request.open('post', path);
request.timeout = 45000;
request.send(formData);
}
// });
// request.open('post', path);
// request.timeout = 45000;
// request.send(formData);
// }

@@ -42,49 +42,49 @@ export class nav {

}
export class xSelect{
constructor(select= '.xSelect') {
this.registerValriables(select);
this.label.addEventListener('click', this.ToggleSelect.bind(this))
this.options.forEach((option)=>{
option.querySelector('.xSelect__option__name').addEventListener('click', this.chooseOption.bind(this));
})
this.searchBar.addEventListener('keyup', this.search.bind(this))
document.addEventListener('click', this.checkClick.bind(this));
// (this.close) && this.closeSelect.bind(this);
}
registerValriables(select){
this.select = document.querySelector(select);
this.label = this.select.querySelector('.xSelect__label');
this.title = this.label.querySelector('.xSelect__label__title');
this.arrow = this.label.querySelector('.xSelect__label__icon');
this.optionsBox = this.select.querySelector('.xSelect__options');
this.searchBar = this.select.querySelector('.xSelect__search');
this.options = this.optionsBox.querySelectorAll('.xSelect__option');
// this.close = false;
this.arr = [];
}
ToggleSelect(){
this.optionsBox.classList.toggle('xToggle');
this.arrow.classList.toggle('xToggleArrow');
}
closeSelect(){
this.optionsBox.classList.remove('xToggle');
this.arrow.classList.remove('xToggleArrow');
}
replaceLabel(labelName){
this.title.innerHTML = labelName.path[0].innerText
}
chooseOption(labelName){
this.ToggleSelect()
this.replaceLabel(labelName)
}
search(){
const searchBarValue = this.searchBar.value.toUpperCase()
this.options.forEach((option)=>{
const optionName = option.querySelector('.xSelect__option__name').innerHTML;
option.style.display = (optionName.toUpperCase().indexOf(searchBarValue) > -1) ? '' : 'none'
})
}
checkClick(el){
(!el.contains(e.target)) && this.closeSelect()
}
}
// export class xSelect{
// constructor(select= '.xSelect') {
// this.registerValriables(select);
// this.label.addEventListener('click', this.ToggleSelect.bind(this))
// this.options.forEach((option)=>{
// option.querySelector('.xSelect__option__name').addEventListener('click', this.chooseOption.bind(this));
// })
// this.searchBar.addEventListener('keyup', this.search.bind(this))
// document.addEventListener('click', this.checkClick.bind(this));
// // (this.close) && this.closeSelect.bind(this);
// }
// registerValriables(select){
// this.select = document.querySelector(select);
// this.label = this.select.querySelector('.xSelect__label');
// this.title = this.label.querySelector('.xSelect__label__title');
// this.arrow = this.label.querySelector('.xSelect__label__icon');
// this.optionsBox = this.select.querySelector('.xSelect__options');
// this.searchBar = this.select.querySelector('.xSelect__search');
// this.options = this.optionsBox.querySelectorAll('.xSelect__option');
// // this.close = false;
// this.arr = [];
// }
// ToggleSelect(){
// this.optionsBox.classList.toggle('xToggle');
// this.arrow.classList.toggle('xToggleArrow');
// }
// closeSelect(){
// this.optionsBox.classList.remove('xToggle');
// this.arrow.classList.remove('xToggleArrow');
// }
// replaceLabel(labelName){
// this.title.innerHTML = labelName.path[0].innerText
// }
// chooseOption(labelName){
// this.ToggleSelect()
// this.replaceLabel(labelName)
// }
// search(){
// const searchBarValue = this.searchBar.value.toUpperCase()
// this.options.forEach((option)=>{
// const optionName = option.querySelector('.xSelect__option__name').innerHTML;
// option.style.display = (optionName.toUpperCase().indexOf(searchBarValue) > -1) ? '' : 'none'
// })
// }
// checkClick(el){
// (!el.contains(e.target)) && this.closeSelect()
// }
// }
{
"name": "fib-maxup",
"style": "css/index.css",
"version": "1.4.48",
"version": "1.4.49",
"description": "a css framework",

@@ -6,0 +6,0 @@ "main": "js/MaxUp.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc