Skip to content

Commit

Permalink
1.1.02 (#37)
Browse files Browse the repository at this point in the history
* Refactor code
* Bugs fixs
* Goodies
* add dynamic port call API (#34)
* remove file & build:dev
* Add Beta Logical (#35)
  • Loading branch information
fouille authored Oct 1, 2024
1 parent 48479be commit c822938
Show file tree
Hide file tree
Showing 13 changed files with 41,097 additions and 1,329 deletions.
1,217 changes: 617 additions & 600 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"tippy.js": "^6.3.7",
"webpack-auto-inject-version-next": "^1.2.4"
},
"version": "1.1.01",
"version": "1.1.02",
"description": "Wazo Plugin Deploy FMW",
"name": "wazo-plugin-deploy-fmw",
"scripts": {
Expand All @@ -31,9 +31,10 @@
"express": "^4.21.0",
"html-webpack-plugin": "^5.6.0",
"jquery": "^3.7.1",
"js-confetti": "^0.12.0",
"micromatch": "^4.0.8",
"mini-css-extract-plugin": "^2.9.1",
"popper.js": "^1.16.1",
"webpack-dev-server": "^5.0.0"
"webpack-dev-server": "^5.1.0"
}
}
21 changes: 20 additions & 1 deletion public/assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,23 @@
.flags {
display: none;
}
}
}

.server_stun_wda,
.server_port_stun_wda,
.server_turn_ma,
.server_port_turn_ma,
.server_username_turn_ma,
.server_password_turn_ma {
transition: height 0.5s ease, opacity 0.5s ease;
overflow: hidden;
height: auto; /* Fixer la hauteur initiale */
opacity: 1; /* Opacité pleine par défaut */
visibility: visible; /* Visible par défaut */
}

.hide {
height: 0 !important;
opacity: 0 !important;
visibility: hidden !important;
}
Loading

0 comments on commit c822938

Please sign in to comment.