diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 000000000..0daad8615
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,2 @@
+public/
+vendor/
diff --git a/.prettierrc b/.prettierrc
new file mode 100644
index 000000000..edc17868b
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,6 @@
+{
+ "printWidth": 100,
+ "singleQuote": true,
+ "tabWidth": 4,
+ "trailingComma": "es5"
+}
diff --git a/Changelog b/Changelog
index f8aae1f74..09709ee90 100755
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,7 @@
2019-02-01 DariusIII
- * Chg: Update sebastian/environment (4.0.2 => 4.1.0)
- * Chg: Update phpunit/phpunit (7.5.2 => 7.5.3)
+ * Chg: Add prettier for css/js/vue files code style fixes
+ * Chg: Update sebastian/environment (4.0.2 => 4.1.0)
+ * Chg: Update phpunit/phpunit (7.5.2 => 7.5.3)
2019-01-31 DariusIII
* Chg: Update .styleci config file
* Chg: Update and fix code with php-cs-fixer
diff --git a/README.md b/README.md
index 262258ac3..0dae71ae1 100755
--- a/README.md
+++ b/README.md
@@ -7,6 +7,7 @@
+
diff --git a/package.json b/package.json
index 1d7c4f6f6..d31ba5978 100644
--- a/package.json
+++ b/package.json
@@ -7,7 +7,8 @@
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
- "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
+ "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
+ "format": "prettier --write 'resources/**/*.{css,js,vue}'"
},
"devDependencies": {
"axios": "^0.18",
@@ -16,6 +17,7 @@
"laravel-mix": "^4.0.14",
"lodash": "^4.17.11",
"popper.js": "^1.14.7",
+ "prettier": "1.16.3",
"vue": "^2.5.22"
},
"dependencies": {
diff --git a/resources/assets/css/custom.css b/resources/assets/css/custom.css
index 8a889935e..b9239bd1c 100755
--- a/resources/assets/css/custom.css
+++ b/resources/assets/css/custom.css
@@ -1,77 +1,94 @@
@charset "UTF-8";
.left_col {
- background: #2A3F54; }
+ background: #2a3f54;
+}
.nav-sm .container.body .col-md-3.left_col {
min-height: 100%;
width: 70px;
padding: 0;
z-index: 9999;
- position: absolute; }
+ position: absolute;
+}
.nav-sm .container.body .col-md-3.left_col.menu_fixed {
position: fixed;
- height: 100%; }
+ height: 100%;
+}
.nav-sm .container.body .col-md-3.left_col .mCSB_container,
.nav-sm .container.body .col-md-3.left_col .mCustomScrollBox {
- overflow: visible; }
+ overflow: visible;
+}
.nav-sm .hidden-small {
- visibility: hidden; }
+ visibility: hidden;
+}
.nav-sm .container.body .right_col {
padding: 10px 20px;
margin-left: 70px;
- z-index: 2; }
+ z-index: 2;
+}
.nav-sm .navbar.nav_title {
- width: 70px; }
+ width: 70px;
+}
.nav-sm .navbar.nav_title a span {
- display: none; }
+ display: none;
+}
.nav-sm .navbar.nav_title a i {
font-size: 27px;
- margin: 13px 0 0 3px; }
+ margin: 13px 0 0 3px;
+}
.site_title i {
- border: 1px solid #EAEAEA;
+ border: 1px solid #eaeaea;
padding: 5px 6px;
- border-radius: 50%; }
+ border-radius: 50%;
+}
.nav-sm .main_container .top_nav {
display: block;
margin-left: 70px;
- z-index: 2; }
+ z-index: 2;
+}
.nav-sm .nav.side-menu li a {
text-align: center !important;
font-weight: 400;
font-size: 10px;
- padding: 10px 5px; }
+ padding: 10px 5px;
+}
.nav-sm .nav.child_menu li.active,
.nav-sm .nav.side-menu li.active-sm {
- border-right: 5px solid #1ABB9C; }
+ border-right: 5px solid #1abb9c;
+}
.nav-sm ul.nav.child_menu ul,
.nav-sm .nav.side-menu li.active-sm ul ul {
position: static;
width: 200px;
- background: none; }
+ background: none;
+}
.nav-sm > .nav.side-menu > li.active-sm > a {
- color: #1ABB9C !important; }
+ color: #1abb9c !important;
+}
.nav-sm .nav.side-menu li a i.toggle-up {
- display: none !important; }
+ display: none !important;
+}
.nav-sm .nav.side-menu li a i {
font-size: 25px !important;
text-align: center;
width: 100% !important;
- margin-bottom: 5px; }
+ margin-bottom: 5px;
+}
.nav-sm ul.nav.child_menu {
left: 100%;
@@ -79,38 +96,46 @@
top: 0;
width: 210px;
z-index: 4000;
- background: #3E5367;
- display: none; }
+ background: #3e5367;
+ display: none;
+}
.nav-sm ul.nav.child_menu li {
- padding: 0 10px; }
+ padding: 0 10px;
+}
.nav-sm ul.nav.child_menu li a {
- text-align: left !important; }
+ text-align: left !important;
+}
.nav-sm .profile {
- display: none; }
+ display: none;
+}
.menu_section {
- margin-bottom: 35px; }
+ margin-bottom: 35px;
+}
.menu_section h3 {
padding-left: 23px;
color: #fff;
text-transform: uppercase;
- letter-spacing: .5px;
+ letter-spacing: 0.5px;
font-weight: bold;
font-size: 11px;
margin-bottom: 0;
margin-top: 0;
- text-shadow: 1px 1px #000; }
+ text-shadow: 1px 1px #000;
+}
.menu_section > ul {
- margin-top: 10px; }
+ margin-top: 10px;
+}
.profile_pic {
width: 35%;
- float: left; }
+ float: left;
+}
.img-circle.profile_img {
width: 70%;
@@ -120,39 +145,47 @@
position: inherit;
margin-top: 20px;
border: 1px solid rgba(52, 73, 94, 0.44);
- padding: 4px; }
+ padding: 4px;
+}
.profile_info {
padding: 25px 10px 10px;
width: 65%;
- float: left; }
+ float: left;
+}
.profile_info span {
font-size: 13px;
line-height: 30px;
- color: #BAB8B8; }
+ color: #bab8b8;
+}
.profile_info h2 {
font-size: 14px;
- color: #ECF0F1;
+ color: #ecf0f1;
margin: 0;
- font-weight: 300; }
+ font-weight: 300;
+}
.profile.img_2 {
- text-align: center; }
+ text-align: center;
+}
.profile.img_2 .profile_pic {
- width: 100%; }
+ width: 100%;
+}
.profile.img_2 .profile_pic .img-circle.profile_img {
width: 50%;
- margin: 10px 0 0; }
+ margin: 10px 0 0;
+}
.profile.img_2 .profile_info {
padding: 15px 10px 0;
width: 100%;
margin-bottom: 10px;
- float: left; }
+ float: left;
+}
.main_menu span.fa {
float: right;
@@ -160,33 +193,41 @@
margin-top: 5px;
font-size: 10px;
min-width: inherit;
- color: #C4CFDA; }
+ color: #c4cfda;
+}
.active a span.fa {
text-align: right !important;
- margin-right: 4px; }
+ margin-right: 4px;
+}
.nav-sm .menu_section {
- margin: 0; }
+ margin: 0;
+}
.nav-sm span.fa,
.nav-sm .menu_section h3 {
- display: none; }
+ display: none;
+}
.nav-sm li li span.fa {
- display: inline-block; }
+ display: inline-block;
+}
.nav_menu {
float: left;
- background: #EDEDED;
- border-bottom: 1px solid #D9DEE4;
+ background: #ededed;
+ border-bottom: 1px solid #d9dee4;
margin-bottom: 10px;
width: 100%;
- position: relative; }
+ position: relative;
+}
@media (min-width: 480px) {
.nav_menu {
- position: static; } }
+ position: static;
+ }
+}
.nav-md .container.body .col-md-3.left_col {
min-height: 100%;
width: 230px;
@@ -194,321 +235,488 @@
position: absolute;
display: -ms-flexbox;
display: flex;
- z-index: 1; }
+ z-index: 1;
+}
.nav-md .container.body .col-md-3.left_col.menu_fixed {
height: 100%;
- position: fixed; }
+ position: fixed;
+}
body .container.body .right_col {
- background: #F7F7F7; }
+ background: #f7f7f7;
+}
.nav-md .container.body .right_col {
padding: 10px 20px 0;
- margin-left: 230px; }
+ margin-left: 230px;
+}
.nav_title {
width: 230px;
float: left;
- background: #2A3F54;
+ background: #2a3f54;
border-radius: 0;
- height: 57px; }
+ height: 57px;
+}
@media (max-width: 991px) {
- .nav-md .container.body .right_col, .nav-md .container.body .top_nav {
+ .nav-md .container.body .right_col,
+ .nav-md .container.body .top_nav {
width: 100%;
- margin: 0; }
+ margin: 0;
+ }
.nav-md .container.body .col-md-3.left_col {
- display: none; }
+ display: none;
+ }
.nav-md .container.body .right_col {
width: 100%;
- padding-right: 0; }
+ padding-right: 0;
+ }
.right_col {
- padding: 10px !important; } }
+ padding: 10px !important;
+ }
+}
@media (max-width: 1200px) {
.x_title h2 {
width: 62%;
- font-size: 17px; }
+ font-size: 17px;
+ }
- .tile, .graph {
+ .tile,
+ .graph {
zoom: 85%;
- height: inherit; } }
+ height: inherit;
+ }
+}
@media (max-width: 1270px) and (min-width: 192px) {
.x_title h2 small {
- display: none; } }
+ display: none;
+ }
+}
.left_col .mCSB_scrollTools {
- width: 6px; }
+ width: 6px;
+}
.left_col .mCSB_dragger {
- max-height: 400px !important; }
+ max-height: 400px !important;
+}
/** ------------------------------------------ **/
.blue {
- color: #3498DB; }
+ color: #3498db;
+}
.purple {
- color: #9B59B6; }
+ color: #9b59b6;
+}
.green {
- color: #1ABB9C; }
+ color: #1abb9c;
+}
.aero {
- color: #9CC2CB; }
+ color: #9cc2cb;
+}
.red {
- color: #E74C3C; }
+ color: #e74c3c;
+}
.dark {
- color: #34495E; }
+ color: #34495e;
+}
.border-blue {
- border-color: #3498DB !important; }
+ border-color: #3498db !important;
+}
.border-purple {
- border-color: #9B59B6 !important; }
+ border-color: #9b59b6 !important;
+}
.border-green {
- border-color: #1ABB9C !important; }
+ border-color: #1abb9c !important;
+}
.border-aero {
- border-color: #9CC2CB !important; }
+ border-color: #9cc2cb !important;
+}
.border-red {
- border-color: #E74C3C !important; }
+ border-color: #e74c3c !important;
+}
.border-dark {
- border-color: #34495E !important; }
+ border-color: #34495e !important;
+}
.bg-white {
background: #fff !important;
border: 1px solid #fff !important;
- color: #73879C; }
+ color: #73879c;
+}
.bg-green {
- background: #1ABB9C !important;
- border: 1px solid #1ABB9C !important;
- color: #fff; }
+ background: #1abb9c !important;
+ border: 1px solid #1abb9c !important;
+ color: #fff;
+}
.bg-red {
- background: #E74C3C !important;
- border: 1px solid #E74C3C !important;
- color: #fff; }
+ background: #e74c3c !important;
+ border: 1px solid #e74c3c !important;
+ color: #fff;
+}
.bg-blue {
- background: #3498DB !important;
- border: 1px solid #3498DB !important;
- color: #fff; }
+ background: #3498db !important;
+ border: 1px solid #3498db !important;
+ color: #fff;
+}
.bg-orange {
- background: #F39C12 !important;
- border: 1px solid #F39C12 !important;
- color: #fff; }
+ background: #f39c12 !important;
+ border: 1px solid #f39c12 !important;
+ color: #fff;
+}
.bg-purple {
- background: #9B59B6 !important;
- border: 1px solid #9B59B6 !important;
- color: #fff; }
+ background: #9b59b6 !important;
+ border: 1px solid #9b59b6 !important;
+ color: #fff;
+}
.bg-blue-sky {
- background: #50C1CF !important;
- border: 1px solid #50C1CF !important;
- color: #fff; }
+ background: #50c1cf !important;
+ border: 1px solid #50c1cf !important;
+ color: #fff;
+}
.container {
width: 100%;
- padding: 0; }
+ padding: 0;
+}
-.navbar-nav > li > a, .navbar-brand, .navbar-nav > li > a {
- color: #fff !important; }
+.navbar-nav > li > a,
+.navbar-brand,
+.navbar-nav > li > a {
+ color: #fff !important;
+}
-.top_nav .nav > li > a:focus, .top_nav .nav > li > a:hover, .top_nav .nav .open > a, .top_nav .nav .open > a:focus, .top_nav .nav .open > a:hover {
- background: #D9DEE4; }
+.top_nav .nav > li > a:focus,
+.top_nav .nav > li > a:hover,
+.top_nav .nav .open > a,
+.top_nav .nav .open > a:focus,
+.top_nav .nav .open > a:hover {
+ background: #d9dee4;
+}
body {
- color: #73879C;
- background: #2A3F54;
- font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
+ color: #73879c;
+ background: #2a3f54;
+ font-family: 'Helvetica Neue', Roboto, Arial, 'Droid Sans', sans-serif;
font-size: 13px;
font-weight: 400;
- line-height: 1.471; }
+ line-height: 1.471;
+}
.main_container .top_nav {
display: block;
- margin-left: 230px; }
+ margin-left: 230px;
+}
.no-padding {
- padding: 0 !important; }
+ padding: 0 !important;
+}
.page-title {
width: 100%;
height: 65px;
- padding: 10px 0; }
+ padding: 10px 0;
+}
.page-title .title_left {
width: 45%;
float: left;
- display: block; }
+ display: block;
+}
.page-title .title_left h3 {
- margin: 9px 0; }
+ margin: 9px 0;
+}
.page-title .title_right {
width: 55%;
float: left;
- display: block; }
+ display: block;
+}
.page-title .title_right .pull-right {
- margin: 10px 0; }
+ margin: 10px 0;
+}
.fixed_height_320 {
- height: 320px; }
+ height: 320px;
+}
.fixed_height_390 {
- height: 390px; }
+ height: 390px;
+}
.fixed_height_200 {
- height: 200px; }
+ height: 200px;
+}
.overflow_hidden {
- overflow: hidden; }
+ overflow: hidden;
+}
.bg-dark {
- background-color: #34495E !important; }
+ background-color: #34495e !important;
+}
.bg-gray {
- background-color: #BDC3C7 !important; }
+ background-color: #bdc3c7 !important;
+}
table.no-margin .progress {
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
.main_content {
- padding: 10px 20px; }
+ padding: 10px 20px;
+}
.col-md-55 {
width: 50%;
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
@media (min-width: 768px) {
.col-md-55 {
- width: 20%; } }
+ width: 20%;
+ }
+}
@media (min-width: 992px) {
.col-md-55 {
- width: 20%; } }
+ width: 20%;
+ }
+}
@media (min-width: 1200px) {
.col-md-55 {
- width: 20%; } }
+ width: 20%;
+ }
+}
@media (min-width: 192px) and (max-width: 1270px) {
table.tile_info span.right {
margin-right: 7px;
- float: left; } }
+ float: left;
+ }
+}
.center-margin {
margin: 0 auto;
- float: none !important; }
+ float: none !important;
+}
-.col-md-55, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
+.col-md-55,
+.col-xs-1,
+.col-sm-1,
+.col-md-1,
+.col-lg-1,
+.col-xs-2,
+.col-sm-2,
+.col-md-2,
+.col-lg-2,
+.col-xs-3,
+.col-sm-3,
+.col-md-3,
+.col-lg-3,
+.col-xs-4,
+.col-sm-4,
+.col-md-4,
+.col-lg-4,
+.col-xs-5,
+.col-sm-5,
+.col-md-5,
+.col-lg-5,
+.col-xs-6,
+.col-sm-6,
+.col-md-6,
+.col-lg-6,
+.col-xs-7,
+.col-sm-7,
+.col-md-7,
+.col-lg-7,
+.col-xs-8,
+.col-sm-8,
+.col-md-8,
+.col-lg-8,
+.col-xs-9,
+.col-sm-9,
+.col-md-9,
+.col-lg-9,
+.col-xs-10,
+.col-sm-10,
+.col-md-10,
+.col-lg-10,
+.col-xs-11,
+.col-sm-11,
+.col-md-11,
+.col-lg-11,
+.col-xs-12,
+.col-sm-12,
+.col-md-12,
+.col-lg-12 {
position: relative;
min-height: 1px;
float: left;
padding-right: 10px;
- padding-left: 10px; }
+ padding-left: 10px;
+}
.row {
margin-right: -10px;
- margin-left: -10px; }
+ margin-left: -10px;
+}
.grid_slider .col-md-6 {
- padding: 0 40px; }
+ padding: 0 40px;
+}
-h1, .h1, h2, .h2, h3, .h3 {
+h1,
+.h1,
+h2,
+.h2,
+h3,
+.h3 {
margin-top: 10px;
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
a {
- color: #5A738E;
- text-decoration: none; }
+ color: #5a738e;
+ text-decoration: none;
+}
-a, a:visited, a:focus, a:active, :visited, :focus, :active, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
- outline: 0; }
+a,
+a:visited,
+a:focus,
+a:active,
+:visited,
+:focus,
+:active,
+.btn:focus,
+.btn:active:focus,
+.btn.active:focus,
+.btn.focus,
+.btn:active.focus,
+.btn.active.focus {
+ outline: 0;
+}
-a:hover, a:focus {
- text-decoration: none; }
+a:hover,
+a:focus {
+ text-decoration: none;
+}
.navbar {
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
.navbar-header {
- background: #34495E; }
+ background: #34495e;
+}
.navbar-right {
- margin-right: 0; }
+ margin-right: 0;
+}
.top_nav .navbar-right {
margin: 0;
width: 70%;
- float: right; }
+ float: right;
+}
.top_nav .navbar-right li {
display: inline-block;
float: right;
- position: static; }
+ position: static;
+}
@media (min-width: 480px) {
.top_nav .navbar-right li {
- position: relative; } }
+ position: relative;
+ }
+}
.top_nav .dropdown-menu li {
- width: 100%; }
+ width: 100%;
+}
.top_nav .dropdown-menu li a {
width: 100%;
- padding: 12px 20px; }
+ padding: 12px 20px;
+}
.top_nav li a i {
- font-size: 15px; }
+ font-size: 15px;
+}
.navbar-static-top {
position: fixed;
top: 0;
- width: 100%; }
+ width: 100%;
+}
.sidebar-header {
border-bottom: 0;
- margin-top: 46px; }
+ margin-top: 46px;
+}
.sidebar-header:first-of-type {
- margin-top: 0; }
+ margin-top: 0;
+}
.nav.side-menu > li {
position: relative;
display: block;
- cursor: pointer; }
+ cursor: pointer;
+}
.nav.side-menu > li > a {
- margin-bottom: 6px; }
+ margin-bottom: 6px;
+}
.nav.side-menu > li > a:hover {
- color: #F2F5F7 !important; }
+ color: #f2f5f7 !important;
+}
-.nav.side-menu > li > a:hover, .nav > li > a:focus {
+.nav.side-menu > li > a:hover,
+.nav > li > a:focus {
text-decoration: none;
- background: transparent; }
+ background: transparent;
+}
.nav.child_menu {
- display: none; }
+ display: none;
+}
.nav.child_menu li:hover,
.nav.child_menu li.active {
- background-color: rgba(255, 255, 255, 0.06); }
+ background-color: rgba(255, 255, 255, 0.06);
+}
.nav.child_menu li {
- padding-left: 36px; }
+ padding-left: 36px;
+}
.nav-md ul.nav.child_menu li:before {
background: #425668;
bottom: auto;
- content: "";
+ content: '';
height: 8px;
left: 23px;
margin-top: 15px;
@@ -516,58 +724,74 @@ a:hover, a:focus {
right: auto;
width: 8px;
z-index: 1;
- border-radius: 50%; }
+ border-radius: 50%;
+}
.nav-md ul.nav.child_menu li:after {
border-left: 1px solid #425668;
bottom: 0;
- content: "";
+ content: '';
left: 27px;
position: absolute;
- top: 0; }
+ top: 0;
+}
.nav-md ul.nav.child_menu li:last-child::after {
- bottom: 50%; }
+ bottom: 50%;
+}
-.nav.side-menu > li > a, .nav.child_menu > li > a {
- color: #E7E7E7;
- font-weight: 500; }
+.nav.side-menu > li > a,
+.nav.child_menu > li > a {
+ color: #e7e7e7;
+ font-weight: 500;
+}
.nav.child_menu li li:hover,
.nav.child_menu li li.active {
- background: none; }
+ background: none;
+}
.nav.child_menu li li a:hover,
.nav.child_menu li li a.active {
- color: #fff; }
+ color: #fff;
+}
.nav > li > a {
position: relative;
display: block;
- padding: 13px 15px 12px; }
+ padding: 13px 15px 12px;
+}
-.nav.side-menu > li.current-page, .nav.side-menu > li.active {
- border-right: 5px solid #1ABB9C; }
+.nav.side-menu > li.current-page,
+.nav.side-menu > li.active {
+ border-right: 5px solid #1abb9c;
+}
.nav li.current-page {
- background: rgba(255, 255, 255, 0.05); }
+ background: rgba(255, 255, 255, 0.05);
+}
.nav li li li.current-page {
- background: none; }
+ background: none;
+}
.nav li li.current-page a {
- color: #fff; }
+ color: #fff;
+}
.nav.side-menu > li.active > a {
text-shadow: rgba(0, 0, 0, 0.25) 0 -1px 0;
- background: linear-gradient(#334556, #2C4257), #2A3F54;
- box-shadow: rgba(0, 0, 0, 0.25) 0 1px 0, inset rgba(255, 255, 255, 0.16) 0 1px 0; }
+ background: linear-gradient(#334556, #2c4257), #2a3f54;
+ box-shadow: rgba(0, 0, 0, 0.25) 0 1px 0, inset rgba(255, 255, 255, 0.16) 0 1px 0;
+}
-.navbar-brand, .navbar-nav > li > a {
+.navbar-brand,
+.navbar-nav > li > a {
font-weight: 500;
- color: #ECF0F1 !important;
+ color: #ecf0f1 !important;
margin-left: 0 !important;
- line-height: 32px; }
+ line-height: 32px;
+}
.site_title {
text-overflow: ellipsis;
@@ -575,235 +799,293 @@ a:hover, a:focus {
font-weight: 400;
font-size: 22px;
width: 100%;
- color: #ECF0F1 !important;
+ color: #ecf0f1 !important;
margin-left: 0 !important;
line-height: 59px;
display: block;
height: 55px;
margin: 0;
- padding-left: 10px; }
+ padding-left: 10px;
+}
-.site_title:hover, .site_title:focus {
- text-decoration: none; }
+.site_title:hover,
+.site_title:focus {
+ text-decoration: none;
+}
.nav.navbar-nav > li > a {
- color: #515356 !important; }
+ color: #515356 !important;
+}
.nav.top_menu > li > a {
position: relative;
display: block;
padding: 10px 15px;
- color: #34495E !important; }
+ color: #34495e !important;
+}
-.nav > li > a:hover, .nav > li > a:focus {
- background-color: transparent; }
+.nav > li > a:hover,
+.nav > li > a:focus {
+ background-color: transparent;
+}
.top_search {
- padding: 0; }
+ padding: 0;
+}
.top_search .form-control {
border-right: 0;
box-shadow: inset 0 1px 0px rgba(0, 0, 0, 0.075);
border-radius: 25px 0px 0px 25px;
padding-left: 20px;
- border: 1px solid rgba(221, 226, 232, 0.49); }
+ border: 1px solid rgba(221, 226, 232, 0.49);
+}
.top_search .form-control:focus {
border: 1px solid rgba(221, 226, 232, 0.49);
- border-right: 0; }
+ border-right: 0;
+}
.top_search .input-group-btn button {
border-radius: 0px 25px 25px 0px;
border: 1px solid rgba(221, 226, 232, 0.49);
border-left: 0;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- color: #93A2B2;
- margin-bottom: 0 !important; }
+ color: #93a2b2;
+ margin-bottom: 0 !important;
+}
.toggle {
float: left;
margin: 0;
padding-top: 16px;
- width: 70px; }
+ width: 70px;
+}
.toggle a {
padding: 15px 15px 0;
margin: 0;
- cursor: pointer; }
+ cursor: pointer;
+}
.toggle a i {
- font-size: 26px; }
+ font-size: 26px;
+}
.nav.child_menu > li > a {
color: rgba(255, 255, 255, 0.75);
font-size: 12px;
- padding: 9px; }
+ padding: 9px;
+}
.panel_toolbox {
float: right;
- min-width: 70px; }
+ min-width: 70px;
+}
.panel_toolbox > li {
float: left;
- cursor: pointer; }
+ cursor: pointer;
+}
.panel_toolbox > li > a {
padding: 5px;
- color: #C5C7CB;
- font-size: 14px; }
+ color: #c5c7cb;
+ font-size: 14px;
+}
.panel_toolbox > li > a:hover {
- background: #F5F7FA; }
+ background: #f5f7fa;
+}
.line_30 {
- line-height: 30px; }
+ line-height: 30px;
+}
.main_menu_side {
- padding: 0; }
+ padding: 0;
+}
.bs-docs-sidebar .nav > li > a {
display: block;
- padding: 4px 6px; }
+ padding: 4px 6px;
+}
footer {
background: #fff;
padding: 10px 20px;
- display: block; }
+ display: block;
+}
.nav-sm footer {
- margin-left: 70px; }
+ margin-left: 70px;
+}
.footer_fixed footer {
position: fixed;
left: 0px;
bottom: 0px;
- width: 100%; }
+ width: 100%;
+}
@media (min-width: 768px) {
.footer_fixed footer {
- margin-left: 0; } }
+ margin-left: 0;
+ }
+}
@media (min-width: 768px) {
.footer_fixed .nav-sm footer {
- margin-left: 0; } }
+ margin-left: 0;
+ }
+}
.tile-stats.sparkline {
padding: 10px;
- text-align: center; }
+ text-align: center;
+}
.jqstooltip {
- background: #34495E !important;
+ background: #34495e !important;
width: 30px !important;
height: 22px !important;
- text-decoration: none; }
+ text-decoration: none;
+}
.tooltip {
- display: block !important; }
+ display: block !important;
+}
.tiles {
border-top: 1px solid #ccc;
margin-top: 15px;
padding-top: 5px;
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
.tile {
- overflow: hidden; }
+ overflow: hidden;
+}
.top_tiles {
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
.top_tiles .tile h2 {
font-size: 30px;
line-height: 30px;
margin: 3px 0 7px;
- font-weight: bold; }
+ font-weight: bold;
+}
article.media {
- width: 100%; }
+ width: 100%;
+}
/* ********* custom accordion **************************** */
-*, *:before, *:after {
- box-sizing: border-box; }
+*,
+*:before,
+*:after {
+ box-sizing: border-box;
+}
#integration-list {
width: 100%;
margin: 0 auto;
- display: table; }
+ display: table;
+}
#integration-list ul {
padding: 0;
margin: 20px 0;
- color: #555; }
+ color: #555;
+}
#integration-list ul > li {
list-style: none;
border-top: 1px solid #ddd;
display: block;
padding: 15px;
- overflow: hidden; }
+ overflow: hidden;
+}
#integration-list ul:last-child {
- border-bottom: 1px solid #ddd; }
+ border-bottom: 1px solid #ddd;
+}
#integration-list ul > li:hover {
- background: #efefef; }
+ background: #efefef;
+}
.expand {
display: block;
text-decoration: none;
color: #555;
- cursor: pointer; }
+ cursor: pointer;
+}
.expand h2 {
width: 85%;
- float: left; }
+ float: left;
+}
h2 {
font-size: 18px;
- font-weight: 400; }
+ font-weight: 400;
+}
-#left, #right {
- display: table; }
+#left,
+#right {
+ display: table;
+}
#sup {
display: table-cell;
vertical-align: middle;
- width: 80%; }
+ width: 80%;
+}
.detail a {
text-decoration: none;
- color: #C0392B;
- border: 1px solid #C0392B;
+ color: #c0392b;
+ border: 1px solid #c0392b;
padding: 6px 10px 5px;
font-size: 13px;
- margin-right: 7px; }
+ margin-right: 7px;
+}
.detail {
margin: 10px 0 10px 0px;
display: none;
line-height: 22px;
- height: 150px; }
+ height: 150px;
+}
.detail span {
- margin: 0; }
+ margin: 0;
+}
.right-arrow {
width: 10px;
float: right;
font-weight: bold;
- font-size: 20px; }
+ font-size: 20px;
+}
.accordion .panel {
margin-bottom: 5px;
border-radius: 0;
- border-bottom: 1px solid #efefef; }
+ border-bottom: 1px solid #efefef;
+}
.accordion .panel-heading {
- background: #F2F5F7;
+ background: #f2f5f7;
padding: 13px;
width: 100%;
- display: block; }
+ display: block;
+}
.accordion .panel:hover {
- background: #F2F5F7; }
+ background: #f2f5f7;
+}
.x_panel {
position: relative;
@@ -812,20 +1094,23 @@ h2 {
padding: 10px 17px;
display: inline-block;
background: #fff;
- border: 1px solid #E6E9ED;
+ border: 1px solid #e6e9ed;
-moz-column-break-inside: avoid;
column-break-inside: avoid;
opacity: 1;
- transition: all .2s ease; }
+ transition: all 0.2s ease;
+}
.x_title {
- border-bottom: 2px solid #E6E9ED;
+ border-bottom: 2px solid #e6e9ed;
padding: 1px 5px 6px;
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
.x_title .filter {
width: 40%;
- float: right; }
+ float: right;
+}
.x_title h2 {
margin: 5px 0 6px;
@@ -833,13 +1118,16 @@ h2 {
display: block;
text-overflow: ellipsis;
overflow: hidden;
- white-space: nowrap; }
+ white-space: nowrap;
+}
.x_title h2 small {
- margin-left: 10px; }
+ margin-left: 10px;
+}
.x_title span {
- color: #BDBDBD; }
+ color: #bdbdbd;
+}
.x_content {
padding: 0 5px 6px;
@@ -847,233 +1135,293 @@ h2 {
width: 100%;
float: left;
clear: both;
- margin-top: 5px; }
+ margin-top: 5px;
+}
.x_content h4 {
font-size: 16px;
- font-weight: 500; }
+ font-weight: 500;
+}
legend {
- padding-bottom: 7px; }
+ padding-bottom: 7px;
+}
.demo-placeholder {
- height: 280px; }
+ height: 280px;
+}
/** Contacts **/
.profile_details:nth-child(3n) {
- clear: both; }
+ clear: both;
+}
.profile_details .profile_view {
display: inline-block;
padding: 10px 0 0;
- background: #fff; }
+ background: #fff;
+}
.profile_details .profile_view .divider {
border-top: 1px solid #e5e5e5;
padding-top: 5px;
- margin-top: 5px; }
+ margin-top: 5px;
+}
.profile_details .profile_view .ratings {
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
.profile_details .profile_view .bottom {
- background: #F2F5F7;
+ background: #f2f5f7;
padding: 9px 0;
- border-top: 1px solid #E6E9ED; }
+ border-top: 1px solid #e6e9ed;
+}
.profile_details .profile_view .left {
- margin-top: 20px; }
+ margin-top: 20px;
+}
.profile_details .profile_view .left p {
- margin-bottom: 3px; }
+ margin-bottom: 3px;
+}
.profile_details .profile_view .right {
margin-top: 0px;
- padding: 10px; }
+ padding: 10px;
+}
.profile_details .profile_view .img-circle {
- border: 1px solid #E6E9ED;
- padding: 2px; }
+ border: 1px solid #e6e9ed;
+ padding: 2px;
+}
.profile_details .profile_view h2 {
- margin: 5px 0; }
+ margin: 5px 0;
+}
.profile_details .profile_view .ratings {
text-align: left;
- font-size: 16px; }
+ font-size: 16px;
+}
.profile_details .profile_view .brief {
margin: 0;
- font-weight: 300; }
+ font-weight: 300;
+}
.profile_details .profile_left {
- background: white; }
+ background: white;
+}
.pagination.pagination-split li {
display: inline-block;
- margin-right: 3px; }
+ margin-right: 3px;
+}
.pagination.pagination-split li a {
border-radius: 4px;
color: #768399;
-moz-border-radius: 4px;
- -webkit-border-radius: 4px; }
+ -webkit-border-radius: 4px;
+}
/** Contacts **/
/* ********* /custom accordion **************************** */
/* ********* dashboard widget **************************** */
-table.tile h3, table.tile h4, table.tile span {
+table.tile h3,
+table.tile h4,
+table.tile span {
font-weight: bold;
- vertical-align: middle !important; }
+ vertical-align: middle !important;
+}
-table.tile th, table.tile td {
- text-align: center; }
+table.tile th,
+table.tile td {
+ text-align: center;
+}
table.tile th {
- border-bottom: 1px solid #E6ECEE; }
+ border-bottom: 1px solid #e6ecee;
+}
table.tile td {
- padding: 5px 0; }
+ padding: 5px 0;
+}
table.tile td ul {
text-align: left;
- padding-left: 0; }
+ padding-left: 0;
+}
table.tile td ul li {
list-style: none;
- width: 100%; }
+ width: 100%;
+}
table.tile td ul li a {
- width: 100%; }
+ width: 100%;
+}
table.tile td ul li a big {
right: 0;
float: right;
- margin-right: 13px; }
+ margin-right: 13px;
+}
table.tile_info {
- width: 100%; }
+ width: 100%;
+}
table.tile_info td {
text-align: left;
padding: 1px;
- font-size: 15px; }
+ font-size: 15px;
+}
table.tile_info td p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin: 0;
- line-height: 28px; }
+ line-height: 28px;
+}
table.tile_info td i {
margin-right: 8px;
font-size: 17px;
float: left;
width: 18px;
- line-height: 28px; }
+ line-height: 28px;
+}
table.tile_info td:first-child {
- width: 83%; }
+ width: 83%;
+}
td span {
- line-height: 28px; }
+ line-height: 28px;
+}
.sidebar-widget {
- overflow: hidden; }
+ overflow: hidden;
+}
.error-number {
font-size: 90px;
line-height: 90px;
- margin: 20px 0; }
+ margin: 20px 0;
+}
.col-middle {
- margin-top: 5%; }
+ margin-top: 5%;
+}
.mid_center {
width: 370px;
margin: 0 auto;
text-align: center;
- padding: 10px 20px; }
+ padding: 10px 20px;
+}
h3.degrees {
font-size: 22px;
font-weight: 400;
- text-align: center; }
+ text-align: center;
+}
.degrees:after {
- content: "o";
+ content: 'o';
position: relative;
top: -12px;
font-size: 13px;
- font-weight: 300; }
+ font-weight: 300;
+}
.daily-weather .day {
font-size: 14px;
border-top: 2px solid rgba(115, 135, 156, 0.36);
text-align: center;
border-bottom: 2px solid rgba(115, 135, 156, 0.36);
- padding: 5px 0; }
+ padding: 5px 0;
+}
.weather-days .col-sm-2 {
overflow: hidden;
- width: 16.66666667%; }
+ width: 16.66666667%;
+}
.weather .row {
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
/* ********* tables styling ******************************* */
.bulk-actions {
- display: none; }
+ display: none;
+}
table.countries_list {
- width: 100%; }
+ width: 100%;
+}
table.countries_list td {
padding: 0 10px;
line-height: 30px;
- border-top: 1px solid #eeeeee; }
+ border-top: 1px solid #eeeeee;
+}
.dataTables_paginate a {
padding: 6px 9px !important;
background: #ddd !important;
- border-color: #ddd !important; }
+ border-color: #ddd !important;
+}
.paging_full_numbers a.paginate_active {
background-color: rgba(38, 185, 154, 0.59) !important;
- border-color: rgba(38, 185, 154, 0.59) !important; }
+ border-color: rgba(38, 185, 154, 0.59) !important;
+}
-button.DTTT_button, div.DTTT_button, a.DTTT_button {
- border: 1px solid #E7E7E7 !important;
- background: #E7E7E7 !important;
- box-shadow: none !important; }
+button.DTTT_button,
+div.DTTT_button,
+a.DTTT_button {
+ border: 1px solid #e7e7e7 !important;
+ background: #e7e7e7 !important;
+ box-shadow: none !important;
+}
table.jambo_table {
- border: 1px solid rgba(221, 221, 221, 0.78); }
+ border: 1px solid rgba(221, 221, 221, 0.78);
+}
table.jambo_table thead {
background: rgba(52, 73, 94, 0.94);
- color: #ECF0F1; }
+ color: #ecf0f1;
+}
table.jambo_table tbody tr:hover td {
background: rgba(38, 185, 154, 0.07);
border-top: 1px solid rgba(38, 185, 154, 0.11);
- border-bottom: 1px solid rgba(38, 185, 154, 0.11); }
+ border-bottom: 1px solid rgba(38, 185, 154, 0.11);
+}
table.jambo_table tbody tr.selected {
- background: rgba(38, 185, 154, 0.16); }
+ background: rgba(38, 185, 154, 0.16);
+}
table.jambo_table tbody tr.selected td {
border-top: 1px solid rgba(38, 185, 154, 0.4);
- border-bottom: 1px solid rgba(38, 185, 154, 0.4); }
+ border-bottom: 1px solid rgba(38, 185, 154, 0.4);
+}
.dataTables_paginate a {
- background: #ff0000; }
+ background: #ff0000;
+}
.dataTables_wrapper {
position: relative;
clear: both;
- zoom: 1; }
+ zoom: 1;
+}
.dataTables_processing {
position: absolute;
@@ -1088,135 +1436,170 @@ table.jambo_table tbody tr.selected td {
text-align: center;
color: #999;
font-size: 14px;
- background-color: white; }
+ background-color: white;
+}
.dataTables_length {
width: 40%;
- float: left; }
+ float: left;
+}
.dataTables_filter {
width: 50%;
float: right;
- text-align: right; }
+ text-align: right;
+}
.dataTables_info {
width: 60%;
- float: left; }
+ float: left;
+}
.dataTables_paginate {
float: right;
- text-align: right; }
+ text-align: right;
+}
table.dataTable th.focus,
table.dataTable td.focus {
- outline: 2px solid #1ABB9C !important;
- outline-offset: -1px; }
+ outline: 2px solid #1abb9c !important;
+ outline-offset: -1px;
+}
table.display {
margin: 0 auto;
clear: both;
- width: 100%; }
+ width: 100%;
+}
table.display thead th {
padding: 8px 18px 8px 10px;
border-bottom: 1px solid black;
font-weight: bold;
- cursor: pointer; }
+ cursor: pointer;
+}
table.display tfoot th {
padding: 3px 18px 3px 10px;
border-top: 1px solid black;
- font-weight: bold; }
+ font-weight: bold;
+}
table.display tr.heading2 td {
- border-bottom: 1px solid #aaa; }
+ border-bottom: 1px solid #aaa;
+}
table.display td {
- padding: 3px 10px; }
+ padding: 3px 10px;
+}
table.display td.center {
- text-align: center; }
+ text-align: center;
+}
-table.display thead th:active, table.display thead td:active {
- outline: none; }
+table.display thead th:active,
+table.display thead td:active {
+ outline: none;
+}
.dataTables_scroll {
- clear: both; }
+ clear: both;
+}
.dataTables_scrollBody {
*margin-top: -1px;
- -webkit-overflow-scrolling: touch; }
+ -webkit-overflow-scrolling: touch;
+}
.top .dataTables_info {
- float: none; }
+ float: none;
+}
.clear {
- clear: both; }
+ clear: both;
+}
.dataTables_empty {
- text-align: center; }
+ text-align: center;
+}
tfoot input {
margin: 0.5em 0;
width: 100%;
- color: #444; }
+ color: #444;
+}
tfoot input.search_init {
- color: #999; }
+ color: #999;
+}
td.group {
background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E; }
+ border-bottom: 2px solid #a19b9e;
+ border-top: 2px solid #a19b9e;
+}
td.details {
background-color: #d1cfd0;
- border: 2px solid #A19B9E; }
+ border: 2px solid #a19b9e;
+}
.example_alt_pagination div.dataTables_info {
- width: 40%; }
+ width: 40%;
+}
.paging_full_numbers {
width: 400px;
height: 22px;
- line-height: 22px; }
+ line-height: 22px;
+}
.paging_full_numbers a:active {
- outline: none; }
+ outline: none;
+}
.paging_full_numbers a:hover {
- text-decoration: none; }
+ text-decoration: none;
+}
-.paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active {
+.paging_full_numbers a.paginate_button,
+.paging_full_numbers a.paginate_active {
border: 1px solid #aaa;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
padding: 2px 5px;
margin: 0 3px;
- cursor: pointer; }
+ cursor: pointer;
+}
.paging_full_numbers a.paginate_button {
- background-color: #ddd; }
+ background-color: #ddd;
+}
.paging_full_numbers a.paginate_button:hover {
background-color: #ccc;
- text-decoration: none !important; }
+ text-decoration: none !important;
+}
.paging_full_numbers a.paginate_active {
- background-color: #99B3FF; }
+ background-color: #99b3ff;
+}
table.display tr.even.row_selected td {
- background-color: #B0BED9; }
+ background-color: #b0bed9;
+}
table.display tr.odd.row_selected td {
- background-color: #9FAFD1; }
+ background-color: #9fafd1;
+}
div.box {
height: 100px;
padding: 10px;
overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF; }
+ border: 1px solid #8080ff;
+ background-color: #e5e5ff;
+}
/* ********* /tables styling ****************************** */
/* ********* /dashboard widget **************************** */
@@ -1227,34 +1610,41 @@ ul.msg_list li {
display: -ms-flexbox;
display: flex;
margin: 6px 6px 0;
- width: 96% !important; }
+ width: 96% !important;
+}
ul.msg_list li:last-child {
- margin-bottom: 6px; }
+ margin-bottom: 6px;
+}
ul.msg_list li a {
- padding: 3px 5px !important; }
+ padding: 3px 5px !important;
+}
ul.msg_list li a .image img {
border-radius: 2px 2px 2px 2px;
-webkit-border-radius: 2px 2px 2px 2px;
float: left;
margin-right: 10px;
- width: 11%; }
+ width: 11%;
+}
ul.msg_list li a .time {
font-size: 11px;
font-style: italic;
font-weight: bold;
position: absolute;
- right: 35px; }
+ right: 35px;
+}
ul.msg_list li a .message {
display: block !important;
- font-size: 11px; }
+ font-size: 11px;
+}
.dropdown-menu.msg_list span {
- white-space: normal; }
+ white-space: normal;
+}
.dropdown-menu {
border: medium none;
@@ -1269,25 +1659,29 @@ ul.msg_list li a .message {
text-shadow: none;
top: 100%;
z-index: 9998;
- border: 1px solid #D9DEE4;
+ border: 1px solid #d9dee4;
border-top-left-radius: 0;
- border-top-right-radius: 0; }
+ border-top-right-radius: 0;
+}
.dropdown-menu > li > a {
- color: #5A738E; }
+ color: #5a738e;
+}
.navbar-nav .open .dropdown-menu {
position: absolute;
background: #fff;
margin-top: 0;
- border: 1px solid #D9DEE4;
+ border: 1px solid #d9dee4;
-webkit-box-shadow: none;
right: 0;
left: auto;
- width: 220px; }
+ width: 220px;
+}
.navbar-nav .open .dropdown-menu.msg_list {
- width: 300px; }
+ width: 300px;
+}
.info-number .badge {
font-size: 10px;
@@ -1296,10 +1690,12 @@ ul.msg_list li a .message {
padding: 2px 6px;
position: absolute;
right: 2px;
- top: 8px; }
+ top: 8px;
+}
ul.to_do {
- padding: 0; }
+ padding: 0;
+}
ul.to_do li {
background: #f3f3f3;
@@ -1307,16 +1703,19 @@ ul.to_do li {
position: relative;
padding: 7px;
margin-bottom: 5px;
- list-style: none; }
+ list-style: none;
+}
ul.to_do p {
- margin: 0; }
+ margin: 0;
+}
.dashboard-widget {
background: #f6f6f6;
- border-top: 5px solid #79C3DF;
+ border-top: 5px solid #79c3df;
border-radius: 3px;
- padding: 5px 10px 10px; }
+ padding: 5px 10px 10px;
+}
.dashboard-widget .dashboard-widget-title {
font-weight: normal;
@@ -1324,7 +1723,8 @@ ul.to_do p {
margin: 0 0 10px 0;
padding-bottom: 5px;
padding-left: 40px;
- line-height: 30px; }
+ line-height: 30px;
+}
.dashboard-widget .dashboard-widget-title i {
font-size: 100%;
@@ -1334,12 +1734,14 @@ ul.to_do p {
padding: 3px 6px;
border: 1px solid #abd9ea;
border-radius: 5px;
- background: #fff; }
+ background: #fff;
+}
ul.quick-list {
width: 45%;
padding-left: 0;
- display: inline-block; }
+ display: inline-block;
+}
ul.quick-list li {
padding-left: 10px;
@@ -1349,14 +1751,17 @@ ul.quick-list li {
padding-top: 4px;
white-space: nowrap;
text-overflow: ellipsis;
- overflow: hidden; }
+ overflow: hidden;
+}
ul.quick-list li i {
padding-right: 10px;
- color: #757679; }
+ color: #757679;
+}
.dashboard-widget-content {
- padding-top: 9px; }
+ padding-top: 9px;
+}
.dashboard-widget-content .sidebar-widget {
width: 50%;
@@ -1368,50 +1773,63 @@ ul.quick-list li i {
text-align: center;
float: right;
padding: 2px;
- margin-top: 10px; }
+ margin-top: 10px;
+}
.widget_summary {
width: 100%;
display: -ms-inline-flexbox;
- display: inline-flex; }
+ display: inline-flex;
+}
.widget_summary .w_left {
float: left;
- text-align: left; }
+ text-align: left;
+}
.widget_summary .w_center {
- float: left; }
+ float: left;
+}
.widget_summary .w_right {
float: left;
- text-align: right; }
+ text-align: right;
+}
.widget_summary .w_right span {
- font-size: 20px; }
+ font-size: 20px;
+}
.w_20 {
- width: 20%; }
+ width: 20%;
+}
.w_25 {
- width: 25%; }
+ width: 25%;
+}
.w_55 {
- width: 55%; }
+ width: 55%;
+}
h5.graph_title {
text-align: left;
- margin-left: 10px; }
+ margin-left: 10px;
+}
h5.graph_title i {
margin-right: 10px;
- font-size: 17px; }
+ font-size: 17px;
+}
span.right {
float: right;
- font-size: 14px !important; }
+ font-size: 14px !important;
+}
.tile_info a {
- text-overflow: ellipsis; }
+ text-overflow: ellipsis;
+}
.sidebar-footer {
bottom: 0px;
@@ -1420,7 +1838,8 @@ span.right {
padding: 5px 0 0 0;
position: fixed;
width: 230px;
- background: #2A3F54; }
+ background: #2a3f54;
+}
.sidebar-footer a {
padding: 7px 0 3px;
@@ -1429,90 +1848,118 @@ span.right {
font-size: 17px;
display: block;
float: left;
- background: #172D44; }
+ background: #172d44;
+}
.sidebar-footer a:hover {
- background: #425567; }
+ background: #425567;
+}
/** top tiles */
.tile_count {
margin-bottom: 20px;
- margin-top: 20px; }
+ margin-top: 20px;
+}
.tile_count .tile_stats_count {
- border-bottom: 1px solid #D9DEE4;
+ border-bottom: 1px solid #d9dee4;
padding: 0 10px 0 20px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
- position: relative; }
+ position: relative;
+}
@media (min-width: 992px) {
footer {
- margin-left: 230px; } }
+ margin-left: 230px;
+ }
+}
@media (min-width: 992px) {
.tile_count .tile_stats_count {
margin-bottom: 10px;
border-bottom: 0;
- padding-bottom: 10px; } }
+ padding-bottom: 10px;
+ }
+}
.tile_count .tile_stats_count:before {
- content: "";
+ content: '';
position: absolute;
left: 0;
height: 65px;
- border-left: 2px solid #ADB2B5;
- margin-top: 10px; }
+ border-left: 2px solid #adb2b5;
+ margin-top: 10px;
+}
@media (min-width: 992px) {
.tile_count .tile_stats_count:first-child:before {
- border-left: 0; } }
+ border-left: 0;
+ }
+}
.tile_count .tile_stats_count .count {
font-size: 30px;
line-height: 47px;
- font-weight: 600; }
+ font-weight: 600;
+}
@media (min-width: 768px) {
.tile_count .tile_stats_count .count {
- font-size: 40px; } }
+ font-size: 40px;
+ }
+}
@media (min-width: 992px) and (max-width: 1100px) {
.tile_count .tile_stats_count .count {
- font-size: 30px; } }
+ font-size: 30px;
+ }
+}
.tile_count .tile_stats_count span {
- font-size: 12px; }
+ font-size: 12px;
+}
@media (min-width: 768px) {
.tile_count .tile_stats_count span {
- font-size: 13px; } }
+ font-size: 13px;
+ }
+}
.tile_count .tile_stats_count .count_bottom i {
- width: 12px; }
+ width: 12px;
+}
/** /top tiles **/
.dashboard_graph {
background: #fff;
- padding: 7px 10px; }
+ padding: 7px 10px;
+}
-.dashboard_graph .col-md-9, .dashboard_graph .col-md-3 {
- padding: 0; }
+.dashboard_graph .col-md-9,
+.dashboard_graph .col-md-3 {
+ padding: 0;
+}
a.user-profile {
- color: #5E6974 !important; }
+ color: #5e6974 !important;
+}
.user-profile img {
width: 29px;
height: 29px;
border-radius: 50%;
- margin-right: 10px; }
+ margin-right: 10px;
+}
ul.top_profiles {
height: 330px;
- width: 100%; }
+ width: 100%;
+}
ul.top_profiles li {
margin: 0;
- padding: 3px 5px; }
+ padding: 3px 5px;
+}
ul.top_profiles li:nth-child(odd) {
- background-color: #eee; }
+ background-color: #eee;
+}
.media .profile_thumb {
border: 1px solid;
@@ -1520,22 +1967,26 @@ ul.top_profiles li:nth-child(odd) {
height: 50px;
margin: 5px 10px 5px 0;
border-radius: 50%;
- padding: 9px 12px; }
+ padding: 9px 12px;
+}
.media .profile_thumb i {
- font-size: 30px; }
+ font-size: 30px;
+}
.media .date {
background: #ccc;
width: 52px;
margin-right: 10px;
border-radius: 10px;
- padding: 5px; }
+ padding: 5px;
+}
.media .date .month {
margin: 0;
text-align: center;
- color: #fff; }
+ color: #fff;
+}
.media .date .day {
text-align: center;
@@ -1543,53 +1994,62 @@ ul.top_profiles li:nth-child(odd) {
font-size: 27px;
margin: 0;
line-height: 27px;
- font-weight: bold; }
+ font-weight: bold;
+}
.event .media-body a.title {
- font-weight: bold; }
+ font-weight: bold;
+}
.event .media-body p {
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
h4.graph_title {
margin: 7px;
- text-align: center; }
+ text-align: center;
+}
/* ********* /widgets *************************************** */
/* ********* iconts-display **************************** */
.fontawesome-icon-list .fa-hover a:hover {
- background-color: #B7B7B7;
+ background-color: #b7b7b7;
color: #fff;
- text-decoration: none; }
+ text-decoration: none;
+}
.fontawesome-icon-list .fa-hover a {
display: block;
line-height: 32px;
height: 32px;
padding-left: 10px;
- border-radius: 4px; }
+ border-radius: 4px;
+}
.fontawesome-icon-list .fa-hover a:hover .fa {
font-size: 28px;
- vertical-align: -6px; }
+ vertical-align: -6px;
+}
.fontawesome-icon-list .fa-hover a .fa {
width: 32px;
font-size: 16px;
display: inline-block;
text-align: right;
- margin-right: 10px; }
+ margin-right: 10px;
+}
.main_menu .fa {
width: 26px;
- opacity: .99;
+ opacity: 0.99;
display: inline-block;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
font-size: 18px;
-webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale; }
+ -moz-osx-font-smoothing: grayscale;
+}
/* ********* /iconts-display *********************** */
/** tile stats **/
@@ -1597,7 +2057,7 @@ h4.graph_title {
position: relative;
display: block;
margin-bottom: 12px;
- border: 1px solid #E4E4E4;
+ border: 1px solid #e4e4e4;
-webkit-border-radius: 5px;
overflow: hidden;
padding-bottom: 5px;
@@ -1606,61 +2066,71 @@ h4.graph_title {
-moz-background-clip: padding;
border-radius: 5px;
background-clip: padding-box;
- background: #FFF;
- transition: all 300ms ease-in-out; }
+ background: #fff;
+ transition: all 300ms ease-in-out;
+}
.tile-stats:hover .icon i {
animation-name: tansformAnimation;
- animation-duration: .5s;
+ animation-duration: 0.5s;
animation-iteration-count: 1;
color: rgba(58, 58, 58, 0.41);
animation-timing-function: ease;
animation-fill-mode: forwards;
-webkit-animation-name: tansformAnimation;
- -webkit-animation-duration: .5s;
+ -webkit-animation-duration: 0.5s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease;
-webkit-animation-fill-mode: forwards;
-moz-animation-name: tansformAnimation;
- -moz-animation-duration: .5s;
+ -moz-animation-duration: 0.5s;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: ease;
- -moz-animation-fill-mode: forwards; }
+ -moz-animation-fill-mode: forwards;
+}
.tile-stats .icon {
width: 20px;
height: 20px;
- color: #BAB8B8;
+ color: #bab8b8;
position: absolute;
right: 53px;
top: 22px;
- z-index: 1; }
+ z-index: 1;
+}
.tile-stats .icon i {
margin: 0;
font-size: 60px;
line-height: 0;
vertical-align: bottom;
- padding: 0; }
+ padding: 0;
+}
.tile-stats .count {
font-size: 38px;
font-weight: bold;
- line-height: 1.65857; }
+ line-height: 1.65857;
+}
-.tile-stats .count, .tile-stats h3, .tile-stats p {
+.tile-stats .count,
+.tile-stats h3,
+.tile-stats p {
position: relative;
margin: 0;
margin-left: 10px;
z-index: 5;
- padding: 0; }
+ padding: 0;
+}
.tile-stats h3 {
- color: #BAB8B8; }
+ color: #bab8b8;
+}
.tile-stats p {
margin-top: 5px;
- font-size: 12px; }
+ font-size: 12px;
+}
.tile-stats > .dash-box-footer {
position: relative;
@@ -1672,172 +2142,209 @@ h4.graph_title {
display: block;
z-index: 10;
background: rgba(0, 0, 0, 0.1);
- text-decoration: none; }
+ text-decoration: none;
+}
.tile-stats > .dash-box-footer:hover {
color: #fff;
- background: rgba(0, 0, 0, 0.15); }
+ background: rgba(0, 0, 0, 0.15);
+}
.tile-stats > .dash-box-footer:hover {
color: #fff;
- background: rgba(0, 0, 0, 0.15); }
+ background: rgba(0, 0, 0, 0.15);
+}
table.tile_info {
- padding: 10px 15px; }
+ padding: 10px 15px;
+}
table.tile_info span.right {
margin-right: 0;
float: right;
position: absolute;
- right: 4%; }
+ right: 4%;
+}
.tile:hover {
- text-decoration: none; }
+ text-decoration: none;
+}
.tile_header {
border-bottom: transparent;
padding: 7px 15px;
margin-bottom: 15px;
- background: #E7E7E7; }
+ background: #e7e7e7;
+}
.tile_head h4 {
margin-top: 0;
- margin-bottom: 5px; }
+ margin-bottom: 5px;
+}
.tiles-bottom {
padding: 5px 10px;
margin-top: 10px;
background: rgba(194, 194, 194, 0.3);
- text-align: left; }
+ text-align: left;
+}
/** /tile stats **/
/** inbox **/
a.star {
- color: #428bca !important; }
+ color: #428bca !important;
+}
.mail_content {
- background: none repeat scroll 0 0 #FFFFFF;
+ background: none repeat scroll 0 0 #ffffff;
border-radius: 4px;
margin-top: 20px;
min-height: 500px;
padding: 10px 11px;
- width: 100%; }
+ width: 100%;
+}
.list-btn-mail {
- margin-bottom: 15px; }
+ margin-bottom: 15px;
+}
.list-btn-mail.active {
- border-bottom: 1px solid #39B3D7;
- padding: 0 0 14px; }
+ border-bottom: 1px solid #39b3d7;
+ padding: 0 0 14px;
+}
.list-btn-mail > i {
float: left;
font-size: 18px;
font-style: normal;
- width: 33px; }
+ width: 33px;
+}
.list-btn-mail > .cn {
- background: none repeat scroll 0 0 #39B3D7;
+ background: none repeat scroll 0 0 #39b3d7;
border-radius: 12px;
- color: #FFFFFF;
+ color: #ffffff;
float: right;
font-style: normal;
- padding: 0 5px; }
+ padding: 0 5px;
+}
.button-mail {
margin: 0 0 15px !important;
text-align: left;
- width: 100%; }
+ width: 100%;
+}
button,
.buttons,
.btn,
.modal-footer .btn + .btn {
margin-bottom: 5px;
- margin-right: 5px; }
+ margin-right: 5px;
+}
-.btn-group-vertical .btn, .btn-group .btn {
+.btn-group-vertical .btn,
+.btn-group .btn {
margin-bottom: 0;
- margin-right: 0; }
+ margin-right: 0;
+}
.mail_list_column {
- border-left: 1px solid #DBDBDB; }
+ border-left: 1px solid #dbdbdb;
+}
.mail_view {
- border-left: 1px solid #DBDBDB; }
+ border-left: 1px solid #dbdbdb;
+}
.mail_list {
width: 100%;
- border-bottom: 1px solid #DBDBDB;
+ border-bottom: 1px solid #dbdbdb;
margin-bottom: 2px;
- display: inline-block; }
+ display: inline-block;
+}
.mail_list .left {
width: 5%;
float: left;
- margin-right: 3%; }
+ margin-right: 3%;
+}
.mail_list .right {
width: 90%;
- float: left; }
+ float: left;
+}
.mail_list h3 {
font-size: 15px;
font-weight: bold;
- margin: 0px 0 6px; }
+ margin: 0px 0 6px;
+}
.mail_list h3 small {
float: right;
- color: #ADABAB;
+ color: #adabab;
font-size: 11px;
- line-height: 20px; }
+ line-height: 20px;
+}
.mail_list .badge {
padding: 3px 6px;
font-size: 8px;
- background: #BAB7B7; }
+ background: #bab7b7;
+}
@media (max-width: 767px) {
.mail_list {
margin-bottom: 5px;
- display: inline-block; } }
+ display: inline-block;
+ }
+}
.mail_heading h4 {
font-size: 18px;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
- margin-top: 20px; }
+ margin-top: 20px;
+}
.attachment {
- margin-top: 30px; }
+ margin-top: 30px;
+}
.attachment ul {
width: 100%;
list-style: none;
padding-left: 0;
display: inline-block;
- margin-bottom: 30px; }
+ margin-bottom: 30px;
+}
.attachment ul li {
float: left;
width: 150px;
margin-right: 10px;
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
.attachment ul li img {
height: 150px;
border: 1px solid #ddd;
padding: 5px;
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
.attachment ul li span {
- float: right; }
+ float: right;
+}
.attachment .file-name {
- float: left; }
+ float: left;
+}
.attachment .links {
width: 100%;
- display: inline-block; }
+ display: inline-block;
+}
.compose {
padding: 0;
@@ -1845,25 +2352,29 @@ button,
bottom: 0;
right: 0;
background: #fff;
- border: 1px solid #D9DEE4;
+ border: 1px solid #d9dee4;
border-right: 0;
border-bottom: 0;
border-top-left-radius: 5px;
z-index: 9999;
- display: none; }
+ display: none;
+}
.compose .compose-header {
padding: 5px;
- background: #169F85;
+ background: #169f85;
color: #fff;
- border-top-left-radius: 5px; }
+ border-top-left-radius: 5px;
+}
.compose .compose-header .close {
text-shadow: 0 1px 0 #ffffff;
- line-height: .8; }
+ line-height: 0.8;
+}
.compose .compose-body .editor.btn-toolbar {
- margin: 0; }
+ margin: 0;
+}
.compose .compose-body .editor-wrapper {
height: 100%;
@@ -1872,29 +2383,34 @@ button,
border-radius: 0;
border-left: none;
border-right: none;
- overflow: auto; }
+ overflow: auto;
+}
.compose .compose-footer {
- padding: 10px; }
+ padding: 10px;
+}
/** /inbox **/
/* ********* form design **************************** */
.editor.btn-toolbar {
zoom: 1;
- background: #F7F7F7;
+ background: #f7f7f7;
margin: 5px 2px;
padding: 3px 0;
- border: 1px solid #EFEFEF; }
+ border: 1px solid #efefef;
+}
.input-group {
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
.ln_solid {
border-top: 1px solid #e5e5e5;
color: #ffffff;
background-color: #ffffff;
height: 1px;
- margin: 20px 0; }
+ margin: 20px 0;
+}
span.section {
display: block;
@@ -1905,128 +2421,159 @@ span.section {
line-height: inherit;
color: #333;
border: 0;
- border-bottom: 1px solid #e5e5e5; }
+ border-bottom: 1px solid #e5e5e5;
+}
.form-control {
border-radius: 0;
- width: 100%; }
+ width: 100%;
+}
.form-horizontal .control-label {
- padding-top: 8px; }
+ padding-top: 8px;
+}
.form-control:focus {
- border-color: #CCD0D7;
- box-shadow: none !important; }
+ border-color: #ccd0d7;
+ box-shadow: none !important;
+}
legend {
font-size: 18px;
- color: inherit; }
+ color: inherit;
+}
.form-horizontal .form-group {
margin-right: 0;
- margin-left: 0; }
+ margin-left: 0;
+}
.form-control-feedback {
margin-top: 8px;
height: 23px;
color: #bbb;
line-height: 24px;
- font-size: 15px; }
+ font-size: 15px;
+}
.form-control-feedback.left {
border-right: 1px solid #ccc;
- left: 13px; }
+ left: 13px;
+}
.form-control-feedback.right {
border-left: 1px solid #ccc;
- right: 13px; }
+ right: 13px;
+}
.form-control.has-feedback-left {
- padding-left: 45px; }
+ padding-left: 45px;
+}
.form-control.has-feedback-right {
- padding-right: 45px; }
+ padding-right: 45px;
+}
.form-group {
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
.validate {
- margin-top: 10px; }
+ margin-top: 10px;
+}
.invalid-form-error-message {
margin-top: 10px;
- padding: 5px; }
+ padding: 5px;
+}
.invalid-form-error-message.filled {
- border-left: 2px solid #E74C3C; }
+ border-left: 2px solid #e74c3c;
+}
p.parsley-success {
color: #468847;
- background-color: #DFF0D8;
- border: 1px solid #D6E9C6; }
+ background-color: #dff0d8;
+ border: 1px solid #d6e9c6;
+}
p.parsley-error {
- color: #B94A48;
- background-color: #F2DEDE;
- border: 1px solid #EED3D7; }
+ color: #b94a48;
+ background-color: #f2dede;
+ border: 1px solid #eed3d7;
+}
ul.parsley-errors-list {
list-style: none;
- color: #E74C3C;
- padding-left: 0; }
+ color: #e74c3c;
+ padding-left: 0;
+}
-input.parsley-error, textarea.parsley-error, select.parsley-error {
- background: #FAEDEC;
- border: 1px solid #E85445; }
+input.parsley-error,
+textarea.parsley-error,
+select.parsley-error {
+ background: #faedec;
+ border: 1px solid #e85445;
+}
.btn-group .parsley-errors-list {
- display: none; }
+ display: none;
+}
-.bad input, .bad select, .bad textarea {
- border: 1px solid #CE5454;
- box-shadow: 0 0 4px -2px #CE5454;
+.bad input,
+.bad select,
+.bad textarea {
+ border: 1px solid #ce5454;
+ box-shadow: 0 0 4px -2px #ce5454;
position: relative;
left: 0;
- -moz-animation: .7s 1 shake linear;
- -webkit-animation: 0.7s 1 shake linear; }
+ -moz-animation: 0.7s 1 shake linear;
+ -webkit-animation: 0.7s 1 shake linear;
+}
-.item input, .item textarea {
- transition: 0.42s; }
+.item input,
+.item textarea {
+ transition: 0.42s;
+}
/* alerts (when validation fails) */
.item .alert {
float: left;
margin: 0 0 0 20px;
padding: 3px 10px;
- color: #FFF;
+ color: #fff;
border-radius: 3px 4px 4px 3px;
- background-color: #CE5454;
+ background-color: #ce5454;
max-width: 170px;
white-space: pre;
position: relative;
left: -15px;
opacity: 0;
z-index: 1;
- transition: 0.15s ease-out; }
+ transition: 0.15s ease-out;
+}
.item .alert::after {
content: '';
display: block;
height: 0;
width: 0;
- border-color: transparent #CE5454 transparent transparent;
+ border-color: transparent #ce5454 transparent transparent;
border-style: solid;
border-width: 11px 7px;
position: absolute;
left: -13px;
- top: 1px; }
+ top: 1px;
+}
.item.bad .alert {
left: 0;
- opacity: 1; }
+ opacity: 1;
+}
.inl-bl {
- display: inline-block; }
+ display: inline-block;
+}
.well .markup {
background: #fff;
@@ -2036,10 +2583,11 @@ input.parsley-error, textarea.parsley-error, select.parsley-error {
margin: 15px 0 0 0;
background-color: #fff;
border-radius: 0 0 4px 4px;
- box-shadow: none; }
+ box-shadow: none;
+}
.well .markup::after {
- content: "Example";
+ content: 'Example';
position: absolute;
top: 15px;
left: 15px;
@@ -2047,56 +2595,79 @@ input.parsley-error, textarea.parsley-error, select.parsley-error {
font-weight: bold;
color: #bbb;
text-transform: uppercase;
- letter-spacing: 1px; }
+ letter-spacing: 1px;
+}
/* ***** autocomplete ***** */
.autocomplete-suggestions {
border: 1px solid #e4e4e4;
- background: #F4F4F4;
+ background: #f4f4f4;
cursor: default;
- overflow: auto; }
+ overflow: auto;
+}
.autocomplete-suggestion {
padding: 2px 5px;
font-size: 1.2em;
white-space: nowrap;
- overflow: hidden; }
+ overflow: hidden;
+}
.autocomplete-selected {
- background: #f0f0f0; }
+ background: #f0f0f0;
+}
.autocomplete-suggestions strong {
font-weight: normal;
color: #3399ff;
- font-weight: bolder; }
+ font-weight: bolder;
+}
/* ***** /autocomplete *****/
/* ***** buttons ********/
.btn {
- border-radius: 3px; }
+ border-radius: 3px;
+}
-a.btn-success, a.btn-primary, a.btn-warning, a.btn-danger {
- color: #fff; }
+a.btn-success,
+a.btn-primary,
+a.btn-warning,
+a.btn-danger {
+ color: #fff;
+}
.btn-success {
- background: #26B99A;
- border: 1px solid #169F85; }
+ background: #26b99a;
+ border: 1px solid #169f85;
+}
-.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
- background: #169F85; }
+.btn-success:hover,
+.btn-success:focus,
+.btn-success:active,
+.btn-success.active,
+.open .dropdown-toggle.btn-success {
+ background: #169f85;
+}
.btn-dark {
- color: #E9EDEF;
- background-color: #4B5F71;
- border-color: #364B5F; }
+ color: #e9edef;
+ background-color: #4b5f71;
+ border-color: #364b5f;
+}
-.btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-dark.active, .open .dropdown-toggle.btn-dark {
- color: #FFFFFF;
- background-color: #394D5F;
- border-color: #394D5F; }
+.btn-dark:hover,
+.btn-dark:focus,
+.btn-dark:active,
+.btn-dark.active,
+.open .dropdown-toggle.btn-dark {
+ color: #ffffff;
+ background-color: #394d5f;
+ border-color: #394d5f;
+}
.btn-round {
- border-radius: 30px; }
+ border-radius: 30px;
+}
.btn.btn-app {
position: relative;
@@ -2110,26 +2681,34 @@ a.btn-success, a.btn-primary, a.btn-warning, a.btn-danger {
color: #666;
border: 1px solid #ddd;
background-color: #fafafa;
- font-size: 12px; }
+ font-size: 12px;
+}
-.btn.btn-app > .fa, .btn.btn-app > .glyphicon, .btn.btn-app > .ion {
+.btn.btn-app > .fa,
+.btn.btn-app > .glyphicon,
+.btn.btn-app > .ion {
font-size: 20px;
- display: block; }
+ display: block;
+}
.btn.btn-app:hover {
background: #f4f4f4;
color: #444;
- border-color: #aaa; }
+ border-color: #aaa;
+}
-.btn.btn-app:active, .btn.btn-app:focus {
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
+.btn.btn-app:active,
+.btn.btn-app:focus {
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+}
.btn.btn-app > .badge {
position: absolute;
top: -3px;
right: -10px;
font-size: 10px;
- font-weight: 400; }
+ font-weight: 400;
+}
/* ***** /buttons *******/
/* ********* /form design **************************** */
@@ -2137,11 +2716,13 @@ a.btn-success, a.btn-primary, a.btn-warning, a.btn-danger {
textarea {
padding: 10px;
vertical-align: top;
- width: 200px; }
+ width: 200px;
+}
textarea:focus {
outline-style: solid;
- outline-width: 2px; }
+ outline-width: 2px;
+}
.btn_ {
display: inline-block;
@@ -2160,21 +2741,24 @@ textarea:focus {
filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0)";
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
+ filter: 'progid:DXImageTransform.Microsoft.gradient(enabled=false)';
border: 1px solid #cccccc;
border-bottom-color: #b3b3b3;
border-radius: 4px;
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+}
/* ********* /form textarea **************************** */
/* ********* glyphicons **************************** */
.bs-glyphicons {
margin: 0 -10px 20px;
- overflow: hidden; }
+ overflow: hidden;
+}
.bs-glyphicons-list {
padding-left: 0;
- list-style: none; }
+ list-style: none;
+}
.bs-glyphicons li {
float: left;
@@ -2185,38 +2769,46 @@ textarea:focus {
line-height: 1.4;
text-align: center;
background-color: #f9f9f9;
- border: 1px solid #fff; }
+ border: 1px solid #fff;
+}
.bs-glyphicons .glyphicon {
margin-top: 5px;
margin-bottom: 10px;
- font-size: 24px; }
+ font-size: 24px;
+}
.bs-glyphicons .glyphicon-class {
display: block;
text-align: center;
- word-wrap: break-word; }
+ word-wrap: break-word;
+}
.bs-glyphicons li:hover {
color: #fff;
- background-color: #1ABB9C; }
+ background-color: #1abb9c;
+}
@media (min-width: 768px) {
.bs-glyphicons {
margin-right: 0;
- margin-left: 0; }
+ margin-left: 0;
+ }
.bs-glyphicons li {
width: 12.5%;
- font-size: 12px; } }
+ font-size: 12px;
+ }
+}
/* ********* /glyphicons **************************** */
/* ********* form tags input **************************** */
.tagsinput {
- border: 1px solid #CCC;
- background: #FFF;
+ border: 1px solid #ccc;
+ background: #fff;
padding: 6px 6px 0;
width: 300px;
- overflow-y: auto; }
+ overflow-y: auto;
+}
span.tag {
-moz-border-radius: 2px;
@@ -2225,21 +2817,24 @@ span.tag {
float: left;
padding: 5px 9px;
text-decoration: none;
- background: #1ABB9C;
- color: #F1F6F7;
+ background: #1abb9c;
+ color: #f1f6f7;
margin-right: 5px;
font-weight: 500;
margin-bottom: 5px;
- font-family: helvetica; }
+ font-family: helvetica;
+}
span.tag a {
- color: #F1F6F7 !important; }
+ color: #f1f6f7 !important;
+}
.tagsinput span.tag a {
font-weight: bold;
color: #82ad2b;
text-decoration: none;
- font-size: 11px; }
+ font-size: 11px;
+}
.tagsinput input {
width: 80px;
@@ -2250,116 +2845,137 @@ span.tag a {
padding: 3px;
background: transparent;
color: #000;
- outline: 0px; }
+ outline: 0px;
+}
.tagsinput div {
display: block;
- float: left; }
+ float: left;
+}
.tags_clear {
clear: both;
width: 100%;
- height: 0px; }
+ height: 0px;
+}
.not_valid {
- background: #FBD8DB !important;
- color: #90111A !important; }
+ background: #fbd8db !important;
+ color: #90111a !important;
+}
/* ********* /form tags input **************************** */
/** Tabs **/
ul.bar_tabs {
overflow: visible;
- background: #F5F7FA;
+ background: #f5f7fa;
height: 25px;
margin: 21px 0 14px;
padding-left: 14px;
position: relative;
z-index: 1;
width: 100%;
- border-bottom: 1px solid #E6E9ED; }
+ border-bottom: 1px solid #e6e9ed;
+}
ul.bar_tabs > li {
- border: 1px solid #E6E9ED;
+ border: 1px solid #e6e9ed;
color: #333 !important;
margin-top: -17px;
margin-left: 8px;
background: #fff;
border-bottom: none;
- border-radius: 4px 4px 0 0; }
+ border-radius: 4px 4px 0 0;
+}
ul.bar_tabs > li.active {
- border-right: 6px solid #D3D6DA;
+ border-right: 6px solid #d3d6da;
border-top: 0;
- margin-top: -15px; }
+ margin-top: -15px;
+}
ul.bar_tabs > li a {
padding: 10px 17px;
- background: #F5F7FA;
+ background: #f5f7fa;
margin: 0;
- border-top-right-radius: 0; }
+ border-top-right-radius: 0;
+}
ul.bar_tabs > li a:hover {
- border: 1px solid transparent; }
+ border: 1px solid transparent;
+}
ul.bar_tabs > li.active a {
- border-bottom: none; }
+ border-bottom: none;
+}
ul.bar_tabs.right {
- padding-right: 14px; }
+ padding-right: 14px;
+}
ul.bar_tabs.right li {
- float: right; }
+ float: right;
+}
a:focus {
- outline: none; }
+ outline: none;
+}
/** /Tabs **/
/* ********* timeline **************************** */
ul.timeline li {
position: relative;
border-bottom: 1px solid #e8e8e8;
- clear: both; }
+ clear: both;
+}
.timeline .block {
margin: 0;
border-left: 3px solid #e8e8e8;
overflow: visible;
padding: 10px 15px;
- margin-left: 105px; }
+ margin-left: 105px;
+}
.timeline.widget {
min-width: 0;
- max-width: inherit; }
+ max-width: inherit;
+}
.timeline.widget .block {
- margin-left: 5px; }
+ margin-left: 5px;
+}
.timeline .tags {
position: absolute;
top: 15px;
left: 0;
- width: 84px; }
+ width: 84px;
+}
.timeline .tag {
display: block;
height: 30px;
font-size: 13px;
- padding: 8px; }
+ padding: 8px;
+}
.timeline .tag span {
display: block;
overflow: hidden;
width: 100%;
white-space: nowrap;
- text-overflow: ellipsis; }
+ text-overflow: ellipsis;
+}
.tag {
line-height: 1;
- background: #1ABB9C;
- color: #fff !important; }
+ background: #1abb9c;
+ color: #fff !important;
+}
.tag:after {
- content: " ";
+ content: ' ';
height: 30px;
width: 0;
position: absolute;
@@ -2369,15 +2985,17 @@ ul.timeline li {
pointer-events: none;
border-top: 14px solid transparent;
border-bottom: 14px solid transparent;
- border-left: 11px solid #1ABB9C; }
+ border-left: 11px solid #1abb9c;
+}
.timeline h2.title {
position: relative;
font-size: 16px;
- margin: 0; }
+ margin: 0;
+}
.timeline h2.title:before {
- content: "";
+ content: '';
position: absolute;
left: -23px;
top: 3px;
@@ -2386,43 +3004,53 @@ ul.timeline li {
height: 14px;
border: 3px solid #d2d3d2;
border-radius: 14px;
- background: #f9f9f9; }
+ background: #f9f9f9;
+}
.timeline .byline {
- padding: .25em 0; }
+ padding: 0.25em 0;
+}
.byline {
-webkit-font-smoothing: antialiased;
font-style: italic;
- font-size: .9375em;
+ font-size: 0.9375em;
line-height: 1.3;
- color: #aab6aa; }
+ color: #aab6aa;
+}
ul.social li {
- border: 0; }
+ border: 0;
+}
/* ********* /timeline **************************** */
/* ********* profile/social **************************** */
-.social-sidebar, .social-body {
- float: right; }
+.social-sidebar,
+.social-body {
+ float: right;
+}
.social-sidebar {
- background: #EDEDED;
- width: 22%; }
+ background: #ededed;
+ width: 22%;
+}
.social-body {
border: 1px solid #ccc;
- width: 78%; }
+ width: 78%;
+}
.thumb img {
width: 50px;
height: 50px;
- border-radius: 50%; }
+ border-radius: 50%;
+}
.chat .thumb img {
width: 27px;
height: 27px;
- border-radius: 50%; }
+ border-radius: 50%;
+}
.chat .status {
float: left;
@@ -2432,30 +3060,37 @@ ul.social li {
width: 12px;
height: 12px;
display: block;
- border: 2px solid #FFF;
+ border: 2px solid #fff;
z-index: 12312;
- border-radius: 50%; }
+ border-radius: 50%;
+}
.chat .status.online {
- background: #1ABB9C; }
+ background: #1abb9c;
+}
.chat .status.away {
- background: #F39C12; }
+ background: #f39c12;
+}
.chat .status.offline {
- background: #ccc; }
+ background: #ccc;
+}
.chat .media-body {
- padding-top: 5px; }
+ padding-top: 5px;
+}
/* ********* /profile/social **************************** */
/* ********* widgets **************************** */
.dashboard_graph .x_title {
- padding: 5px 5px 7px; }
+ padding: 5px 5px 7px;
+}
.dashboard_graph .x_title h3 {
margin: 0;
- font-weight: normal; }
+ font-weight: normal;
+}
.chart {
position: relative;
@@ -2464,72 +3099,88 @@ ul.social li {
height: 110px;
margin-top: 5px;
margin-bottom: 5px;
- text-align: center; }
+ text-align: center;
+}
.chart canvas {
position: absolute;
top: 0;
- left: 0; }
+ left: 0;
+}
.percent {
display: inline-block;
line-height: 110px;
z-index: 2;
- font-size: 18px; }
+ font-size: 18px;
+}
.percent:after {
content: '%';
margin-left: 0.1em;
- font-size: .8em; }
+ font-size: 0.8em;
+}
.angular {
- margin-top: 100px; }
+ margin-top: 100px;
+}
.angular .chart {
- margin-top: 0; }
+ margin-top: 0;
+}
.widget {
min-width: 250px;
- max-width: 310px; }
+ max-width: 310px;
+}
.widget_tally_box .btn-group button {
- text-align: center; }
+ text-align: center;
+}
.widget_tally_box .btn-group button {
color: inherit;
font-weight: 500;
background-color: #f5f5f5;
- border: 1px solid #e7e7e7; }
+ border: 1px solid #e7e7e7;
+}
-ul.widget_tally, ul.widget_tally li {
- width: 100%; }
+ul.widget_tally,
+ul.widget_tally li {
+ width: 100%;
+}
ul.widget_tally li {
padding: 2px 10px;
- border-bottom: 1px solid #ECECEC;
- padding-bottom: 4px; }
+ border-bottom: 1px solid #ececec;
+ padding-bottom: 4px;
+}
ul.widget_tally .month {
width: 70%;
- float: left; }
+ float: left;
+}
ul.widget_tally .count {
width: 30%;
float: left;
- text-align: right; }
+ text-align: right;
+}
.pie_bg {
border-bottom: 1px solid rgba(101, 204, 182, 0.16);
padding-bottom: 15px;
border-radius: 4px;
filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0)";
- filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
+ filter: 'progid:DXImageTransform.Microsoft.gradient(enabled=false)';
padding-bottom: 10px;
- box-shadow: 0 4px 6px -6px #222; }
+ box-shadow: 0 4px 6px -6px #222;
+}
.widget_tally_box .flex {
display: -ms-flexbox;
- display: flex; }
+ display: flex;
+}
ul.widget_profile_box {
width: 100%;
@@ -2537,21 +3188,26 @@ ul.widget_profile_box {
padding: 3px;
background: #ececec;
margin-top: 40px;
- margin-left: 1px; }
+ margin-left: 1px;
+}
ul.widget_profile_box li:first-child {
width: 25%;
- float: left; }
+ float: left;
+}
ul.widget_profile_box li:first-child a {
- float: left; }
+ float: left;
+}
ul.widget_profile_box li:last-child {
width: 25%;
- float: right; }
+ float: right;
+}
ul.widget_profile_box li:last-child a {
- float: right; }
+ float: right;
+}
ul.widget_profile_box li a {
font-size: 22px;
@@ -2561,56 +3217,71 @@ ul.widget_profile_box li a {
border: 1px solid rgba(52, 73, 94, 0.44);
display: block;
border-radius: 50%;
- padding: 0px; }
+ padding: 0px;
+}
ul.widget_profile_box li a:hover {
- color: #1ABB9C !important;
- border: 1px solid #26b99a; }
+ color: #1abb9c !important;
+ border: 1px solid #26b99a;
+}
ul.widget_profile_box li .profile_img {
width: 85px;
height: 85px;
margin: 0;
- margin-top: -28px; }
+ margin-top: -28px;
+}
-.widget_tally_box p, .widget_tally_box span {
- text-align: center; }
+.widget_tally_box p,
+.widget_tally_box span {
+ text-align: center;
+}
.widget_tally_box .name {
text-align: center;
- margin: 25px; }
+ margin: 25px;
+}
.widget_tally_box .name_title {
text-align: center;
- margin: 5px; }
+ margin: 5px;
+}
.widget_tally_box ul.legend {
- margin: 0; }
+ margin: 0;
+}
-.widget_tally_box ul.legend p, .widget_tally_box ul.legend span {
- text-align: left; }
+.widget_tally_box ul.legend p,
+.widget_tally_box ul.legend span {
+ text-align: left;
+}
.widget_tally_box ul.legend li .icon {
font-size: 20px;
float: left;
- width: 14px; }
+ width: 14px;
+}
.widget_tally_box ul.legend li .name {
font-size: 14px;
margin: 5px 0 0 14px;
text-overflow: ellipsis;
- float: left; }
+ float: left;
+}
.widget_tally_box ul.legend p {
display: inline-block;
- margin: 0; }
+ margin: 0;
+}
.widget_tally_box ul.verticle_bars li {
height: 140px;
- width: 23%; }
+ width: 23%;
+}
.widget .verticle_bars li .progress.vertical.progress_wide {
- width: 65%; }
+ width: 65%;
+}
ul.count2 {
width: 100%;
@@ -2618,39 +3289,49 @@ ul.count2 {
border: 1px solid #ddd;
border-left: 0;
border-right: 0;
- padding: 10px 0; }
+ padding: 10px 0;
+}
ul.count2 li {
width: 30%;
- text-align: center; }
+ text-align: center;
+}
ul.count2 li h3 {
font-weight: 400;
- margin: 0; }
+ margin: 0;
+}
ul.count2 li span {
- font-weight: 300; }
+ font-weight: 300;
+}
/* ********* /widgets **************************** */
.divider {
border-bottom: 1px solid #ddd;
- margin: 10px; }
+ margin: 10px;
+}
.divider-dashed {
border-top: 1px dashed #e7eaec;
background-color: #ffffff;
height: 1px;
- margin: 10px 0; }
+ margin: 10px 0;
+}
ul.messages {
padding: 0;
- list-style: none; }
+ list-style: none;
+}
-ul.messages li, .tasks li {
+ul.messages li,
+.tasks li {
border-bottom: 1px dotted #e6e6e6;
- padding: 8px 0; }
+ padding: 8px 0;
+}
-ul.messages li img.avatar, img.avatar {
+ul.messages li img.avatar,
+img.avatar {
height: 32px;
width: 32px;
float: left;
@@ -2658,55 +3339,67 @@ ul.messages li img.avatar, img.avatar {
border-radius: 2px;
padding: 2px;
background: #f7f7f7;
- border: 1px solid #e6e6e6; }
+ border: 1px solid #e6e6e6;
+}
ul.messages li .message_date {
float: right;
- text-align: right; }
+ text-align: right;
+}
ul.messages li .message_wrapper {
margin-left: 50px;
- margin-right: 40px; }
+ margin-right: 40px;
+}
ul.messages li .message_wrapper h4.heading {
font-weight: 600;
margin: 0;
cursor: pointer;
margin-bottom: 10px;
- line-height: 100%; }
+ line-height: 100%;
+}
ul.messages li .message_wrapper blockquote {
padding: 0px 10px;
margin: 0;
- border-left: 5px solid #eee; }
+ border-left: 5px solid #eee;
+}
ul.user_data li {
- margin-bottom: 6px; }
+ margin-bottom: 6px;
+}
ul.user_data li p {
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
ul.user_data li .progress {
- width: 90%; }
+ width: 90%;
+}
.project_progress .progress {
margin-bottom: 3px !important;
- margin-top: 5px; }
+ margin-top: 5px;
+}
.projects .list-inline {
- margin: 0; }
+ margin: 0;
+}
.profile_title {
- background: #F5F7FA;
+ background: #f5f7fa;
border: 0;
padding: 7px 0;
display: -ms-flexbox;
- display: flex; }
+ display: flex;
+}
ul.stats-overview {
border-bottom: 1px solid #e8e8e8;
padding-bottom: 10px;
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
ul.stats-overview li {
display: inline-block;
@@ -2714,73 +3407,90 @@ ul.stats-overview li {
padding: 0 15px;
width: 30%;
font-size: 14px;
- border-right: 1px solid #e8e8e8; }
+ border-right: 1px solid #e8e8e8;
+}
ul.stats-overview li:last-child {
- border-right: 0; }
+ border-right: 0;
+}
ul.stats-overview li .name {
- font-size: 12px; }
+ font-size: 12px;
+}
ul.stats-overview li .value {
font-size: 14px;
font-weight: bold;
- display: block; }
+ display: block;
+}
ul.stats-overview li:first-child {
- padding-left: 0; }
+ padding-left: 0;
+}
ul.project_files li {
- margin-bottom: 5px; }
+ margin-bottom: 5px;
+}
ul.project_files li a i {
- width: 20px; }
+ width: 20px;
+}
.project_detail p {
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
.project_detail p.title {
font-weight: bold;
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
.avatar img {
border-radius: 50%;
- max-width: 45px; }
+ max-width: 45px;
+}
/* ********* pricing **************************** */
.pricing {
- background: #fff; }
+ background: #fff;
+}
.pricing .title {
- background: #1ABB9C;
+ background: #1abb9c;
height: 110px;
color: #fff;
padding: 15px 0 0;
- text-align: center; }
+ text-align: center;
+}
.pricing .title h2 {
text-transform: capitalize;
font-size: 18px;
border-radius: 5px 5px 0 0;
margin: 0;
- font-weight: 400; }
+ font-weight: 400;
+}
.pricing .title h1 {
font-size: 30px;
- margin: 12px; }
+ margin: 12px;
+}
.pricing .title span {
background: rgba(51, 51, 51, 0.28);
- padding: 2px 5px; }
+ padding: 2px 5px;
+}
.pricing_features {
- background: #FAFAFA;
+ background: #fafafa;
padding: 20px 15px;
min-height: 230px;
- font-size: 13.5px; }
+ font-size: 13.5px;
+}
.pricing_features ul li {
- margin-top: 10px; }
+ margin-top: 10px;
+}
.pricing_footer {
padding: 10px 15px;
@@ -2788,15 +3498,18 @@ ul.project_files li a i {
border-top: 1px solid #ddd;
text-align: center;
border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px; }
+ border-bottom-left-radius: 3px;
+}
.pricing_footer p {
font-size: 13px;
padding: 10px 0 2px;
- display: block; }
+ display: block;
+}
.ui-ribbon-container {
- position: relative; }
+ position: relative;
+}
.ui-ribbon-container .ui-ribbon-wrapper {
position: absolute;
@@ -2804,10 +3517,12 @@ ul.project_files li a i {
width: 85px;
height: 88px;
top: -3px;
- right: -3px; }
+ right: -3px;
+}
.ui-ribbon-container.ui-ribbon-primary .ui-ribbon {
- background-color: #5b90bf; }
+ background-color: #5b90bf;
+}
.ui-ribbon-container .ui-ribbon {
position: relative;
@@ -2823,60 +3538,75 @@ ul.project_files li a i {
width: 120px;
line-height: 20px;
background-color: #555;
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); }
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
+}
-.ui-ribbon-container.ui-ribbon-primary .ui-ribbon:after, .ui-ribbon-container.ui-ribbon-primary .ui-ribbon:before {
- border-top: 2px solid #5b90bf; }
+.ui-ribbon-container.ui-ribbon-primary .ui-ribbon:after,
+.ui-ribbon-container.ui-ribbon-primary .ui-ribbon:before {
+ border-top: 2px solid #5b90bf;
+}
.ui-ribbon-container .ui-ribbon:before {
left: 0;
- bottom: -1px; }
+ bottom: -1px;
+}
.ui-ribbon-container .ui-ribbon:before {
- right: 0; }
+ right: 0;
+}
-.ui-ribbon-container .ui-ribbon:after, .ui-ribbon-container .ui-ribbon:before {
+.ui-ribbon-container .ui-ribbon:after,
+.ui-ribbon-container .ui-ribbon:before {
position: absolute;
- content: " ";
+ content: ' ';
line-height: 0;
border-top: 2px solid #555;
border-left: 2px solid transparent;
- border-right: 2px solid transparent; }
+ border-right: 2px solid transparent;
+}
/* ********* /pricing **************************** */
/* ********* media gallery **************************** */
.thumbnail .image {
height: 120px;
- overflow: hidden; }
+ overflow: hidden;
+}
.caption {
padding: 9px 5px;
- background: #F7F7F7; }
+ background: #f7f7f7;
+}
.caption p {
- margin-bottom: 5px; }
+ margin-bottom: 5px;
+}
.thumbnail {
height: 190px;
- overflow: hidden; }
+ overflow: hidden;
+}
.view {
overflow: hidden;
position: relative;
text-align: center;
box-shadow: 1px 1px 2px #e6e6e6;
- cursor: default; }
+ cursor: default;
+}
-.view .mask, .view .content {
+.view .mask,
+.view .content {
position: absolute;
width: 100%;
overflow: hidden;
top: 0;
- left: 0; }
+ left: 0;
+}
.view img {
display: block;
- position: relative; }
+ position: relative;
+}
.view .tools {
text-transform: uppercase;
@@ -2886,17 +3616,20 @@ ul.project_files li a i {
font-size: 17px;
padding: 3px;
background: rgba(0, 0, 0, 0.35);
- margin: 43px 0 0 0; }
+ margin: 43px 0 0 0;
+}
.mask.no-caption .tools {
- margin: 90px 0 0 0; }
+ margin: 90px 0 0 0;
+}
.view .tools a {
display: inline-block;
- color: #FFF;
+ color: #fff;
font-size: 18px;
font-weight: 400;
- padding: 0 4px; }
+ padding: 0 4px;
+}
.view p {
font-family: Georgia, serif;
@@ -2905,7 +3638,8 @@ ul.project_files li a i {
position: relative;
color: #fff;
padding: 10px 20px 20px;
- text-align: center; }
+ text-align: center;
+}
.view a.info {
display: inline-block;
@@ -2914,38 +3648,48 @@ ul.project_files li a i {
background: #000;
color: #fff;
text-transform: uppercase;
- box-shadow: 0 0 1px #000; }
+ box-shadow: 0 0 1px #000;
+}
.view-first img {
- transition: all 0.2s linear; }
+ transition: all 0.2s linear;
+}
.view-first .mask {
opacity: 0;
background-color: rgba(0, 0, 0, 0.5);
- transition: all 0.4s ease-in-out; }
+ transition: all 0.4s ease-in-out;
+}
.view-first .tools {
transform: translateY(-100px);
opacity: 0;
- transition: all 0.2s ease-in-out; }
+ transition: all 0.2s ease-in-out;
+}
.view-first p {
transform: translateY(100px);
opacity: 0;
- transition: all 0.2s linear; }
+ transition: all 0.2s linear;
+}
.view-first:hover img {
- transform: scale(1.1); }
+ transform: scale(1.1);
+}
.view-first:hover .mask {
- opacity: 1; }
-
-.view-first:hover .tools, .view-first:hover p {
opacity: 1;
- transform: translateY(0px); }
+}
+
+.view-first:hover .tools,
+.view-first:hover p {
+ opacity: 1;
+ transform: translateY(0px);
+}
.view-first:hover p {
- transition-delay: 0.1s; }
+ transition-delay: 0.1s;
+}
/* ********* /media gallery **************************** */
/* ********* verticle tabs **************************** */
@@ -2956,87 +3700,114 @@ ul.project_files li a i {
* Copyright (c) 2014 ─░smail Demirbilek
* License: MIT
*/
-.tabs-left, .tabs-right {
+.tabs-left,
+.tabs-right {
border-bottom: none;
- padding-top: 2px; }
+ padding-top: 2px;
+}
.tabs-left {
- border-right: 1px solid #F7F7F7; }
+ border-right: 1px solid #f7f7f7;
+}
.tabs-right {
- border-left: 1px solid #F7F7F7; }
+ border-left: 1px solid #f7f7f7;
+}
-.tabs-left > li, .tabs-right > li {
+.tabs-left > li,
+.tabs-right > li {
float: none;
- margin-bottom: 2px; }
+ margin-bottom: 2px;
+}
.tabs-left > li {
- margin-right: -1px; }
+ margin-right: -1px;
+}
.tabs-right > li {
- margin-left: -1px; }
+ margin-left: -1px;
+}
-.tabs-left > li.active > a, .tabs-left > li.active > a:hover, .tabs-left > li.active > a:focus {
- border-bottom-color: #F7F7F7;
- border-right-color: transparent; }
+.tabs-left > li.active > a,
+.tabs-left > li.active > a:hover,
+.tabs-left > li.active > a:focus {
+ border-bottom-color: #f7f7f7;
+ border-right-color: transparent;
+}
-.tabs-right > li.active > a, .tabs-right > li.active > a:hover, .tabs-right > li.active > a:focus {
- border-bottom: 1px solid #F7F7F7;
- border-left-color: transparent; }
+.tabs-right > li.active > a,
+.tabs-right > li.active > a:hover,
+.tabs-right > li.active > a:focus {
+ border-bottom: 1px solid #f7f7f7;
+ border-left-color: transparent;
+}
.tabs-left > li > a {
border-radius: 4px 0 0 4px;
margin-right: 0;
display: block;
- background: #F7F7F7;
+ background: #f7f7f7;
text-overflow: ellipsis;
- overflow: hidden; }
+ overflow: hidden;
+}
.tabs-right > li > a {
border-radius: 0 4px 4px 0;
margin-right: 0;
- background: #F7F7F7;
+ background: #f7f7f7;
text-overflow: ellipsis;
- overflow: hidden; }
+ overflow: hidden;
+}
.sideways {
margin-top: 50px;
border: none;
- position: relative; }
+ position: relative;
+}
.sideways > li {
height: 20px;
width: 120px;
- margin-bottom: 100px; }
+ margin-bottom: 100px;
+}
.sideways > li > a {
border-bottom: 1px solid #ddd;
border-right-color: transparent;
text-align: center;
- border-radius: 4px 4px 0px 0px; }
+ border-radius: 4px 4px 0px 0px;
+}
-.sideways > li.active > a, .sideways > li.active > a:hover, .sideways > li.active > a:focus {
+.sideways > li.active > a,
+.sideways > li.active > a:hover,
+.sideways > li.active > a:focus {
border-bottom-color: transparent;
border-right-color: #ddd;
- border-left-color: #ddd; }
+ border-left-color: #ddd;
+}
.sideways.tabs-left {
- left: -50px; }
+ left: -50px;
+}
.sideways.tabs-right {
- right: -50px; }
+ right: -50px;
+}
.sideways.tabs-right > li {
- transform: rotate(90deg); }
+ transform: rotate(90deg);
+}
.sideways.tabs-left > li {
- transform: rotate(-90deg); }
+ transform: rotate(-90deg);
+}
/* ********* /verticle tabs **************************** */
/* ********* moris **************************** */
.morris-hover {
position: absolute;
- z-index: 1000; }
+ z-index: 1000;
+}
.morris-hover.morris-default-style {
padding: 6px;
@@ -3045,116 +3816,144 @@ ul.project_files li a i {
border: solid 2px rgba(195, 194, 196, 0.8);
font-family: sans-serif;
font-size: 12px;
- text-align: center; }
+ text-align: center;
+}
.morris-hover.morris-default-style .morris-hover-row-label {
font-weight: bold;
- margin: 0.25em 0; }
+ margin: 0.25em 0;
+}
.morris-hover.morris-default-style .morris-hover-point {
white-space: nowrap;
- margin: 0.1em 0; }
+ margin: 0.1em 0;
+}
/* ********* /moris **************************** */
/* ********* ecommerce **************************** */
.price {
font-size: 40px;
font-weight: 400;
- color: #26B99A;
- margin: 0; }
+ color: #26b99a;
+ margin: 0;
+}
.prod_title {
- border-bottom: 1px solid #DFDFDF;
+ border-bottom: 1px solid #dfdfdf;
padding-bottom: 5px;
margin: 30px 0;
font-size: 20px;
- font-weight: 400; }
+ font-weight: 400;
+}
.product-image img {
- width: 90%; }
+ width: 90%;
+}
.prod_color li {
- margin: 0 10px; }
+ margin: 0 10px;
+}
.prod_color li p {
- margin-bottom: 0; }
+ margin-bottom: 0;
+}
.prod_size li {
- padding: 0; }
+ padding: 0;
+}
.prod_color .color {
width: 25px;
height: 25px;
border: 2px solid rgba(51, 51, 51, 0.28) !important;
padding: 2px;
- border-radius: 50px; }
+ border-radius: 50px;
+}
.product_gallery a {
width: 100px;
height: 100px;
float: left;
margin: 10px;
- border: 1px solid #e5e5e5; }
+ border: 1px solid #e5e5e5;
+}
.product_gallery a img {
width: 100%;
- margin-top: 15px; }
+ margin-top: 15px;
+}
.product_price {
margin: 20px 0;
padding: 5px 10px;
- background-color: #FFFFFF;
+ background-color: #ffffff;
text-align: left;
- border: 2px dashed #E0E0E0; }
+ border: 2px dashed #e0e0e0;
+}
.price-tax {
- font-size: 18px; }
+ font-size: 18px;
+}
.product_social {
- margin: 20px 0; }
+ margin: 20px 0;
+}
.product_social ul li a i {
- font-size: 35px; }
+ font-size: 35px;
+}
/* ********* /ecommerce **************************** */
/** login **/
.login {
- background: #F7F7F7; }
+ background: #f7f7f7;
+}
.login .fa-paw {
- font-size: 26px; }
+ font-size: 26px;
+}
a.hiddenanchor {
- display: none; }
+ display: none;
+}
.login_wrapper {
right: 0px;
margin: 0px auto;
margin-top: 5%;
max-width: 350px;
- position: relative; }
+ position: relative;
+}
-.registration_form, .login_form {
+.registration_form,
+.login_form {
position: absolute;
top: 0px;
- width: 100%; }
+ width: 100%;
+}
.registration_form {
z-index: 21;
opacity: 0;
- width: 100%; }
+ width: 100%;
+}
.login_form {
- z-index: 22; }
+ z-index: 22;
+}
-#signup:target ~ .login_wrapper .registration_form, #signin:target ~ .login_wrapper .login_form {
+#signup:target ~ .login_wrapper .registration_form,
+#signin:target ~ .login_wrapper .login_form {
z-index: 22;
animation-name: fadeInLeft;
- animation-delay: .1s; }
+ animation-delay: 0.1s;
+}
-#signup:target ~ .login_wrapper .login_form, #signin:target ~ .login_wrapper .registration_form {
+#signup:target ~ .login_wrapper .login_form,
+#signin:target ~ .login_wrapper .registration_form {
animation-name: fadeOutLeft;
- pointer-events: none; }
+ pointer-events: none;
+}
.animate {
-webkit-animation-duration: 0.5s;
@@ -3171,34 +3970,42 @@ a.hiddenanchor {
-ms-animation-fill-mode: both;
animation-duration: 0.5s;
animation-timing-function: ease;
- animation-fill-mode: both; }
+ animation-fill-mode: both;
+}
/** /login **/
/** signup **/
.login_box {
padding: 20px;
- margin: auto; }
+ margin: auto;
+}
.left {
- float: left; }
+ float: left;
+}
.calendar.left {
- float: initial !important; }
+ float: initial !important;
+}
.alignleft {
float: left;
- margin-right: 15px; }
+ margin-right: 15px;
+}
.alignright {
float: right;
- margin-left: 15px; }
+ margin-left: 15px;
+}
-.clearfix:after, form:after {
- content: ".";
+.clearfix:after,
+form:after {
+ content: '.';
display: block;
height: 0;
clear: both;
- visibility: hidden; }
+ visibility: hidden;
+}
.login_content {
margin: 0 auto;
@@ -3206,60 +4013,75 @@ a.hiddenanchor {
position: relative;
text-align: center;
text-shadow: 0 1px 0 #fff;
- min-width: 280px; }
+ min-width: 280px;
+}
.login_content a,
.login_content .btn-default:hover {
- text-decoration: none; }
+ text-decoration: none;
+}
.login_content a:hover {
- text-decoration: underline; }
+ text-decoration: underline;
+}
.login_content h1 {
font: normal 25px Helvetica, Arial, sans-serif;
letter-spacing: -0.05em;
line-height: 20px;
- margin: 10px 0 30px; }
+ margin: 10px 0 30px;
+}
-.login_content h1:before, .login_content h1:after {
- content: "";
+.login_content h1:before,
+.login_content h1:after {
+ content: '';
height: 1px;
position: absolute;
top: 10px;
- width: 27%; }
+ width: 27%;
+}
.login_content h1:after {
background: #7e7e7e;
background: linear-gradient(to right, #7e7e7e 0%, white 100%);
- right: 0; }
+ right: 0;
+}
.login_content h1:before {
background: #7e7e7e;
background: linear-gradient(to left, #7e7e7e 0%, white 100%);
- left: 0; }
+ left: 0;
+}
-.login_content h1:before, .login_content h1:after {
- content: "";
+.login_content h1:before,
+.login_content h1:after {
+ content: '';
height: 1px;
position: absolute;
top: 10px;
- width: 20%; }
+ width: 20%;
+}
.login_content h1:after {
background: #7e7e7e;
background: linear-gradient(to right, #7e7e7e 0%, white 100%);
- right: 0; }
+ right: 0;
+}
.login_content h1:before {
background: #7e7e7e;
background: linear-gradient(to left, #7e7e7e 0%, white 100%);
- left: 0; }
+ left: 0;
+}
.login_content form {
margin: 20px 0;
- position: relative; }
+ position: relative;
+}
-.login_content form input[type="text"], .login_content form input[type="email"], .login_content form input[type="password"] {
+.login_content form input[type='text'],
+.login_content form input[type='email'],
+.login_content form input[type='password'] {
border-radius: 3px;
-ms-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, 0.08) inset;
-o-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, 0.08) inset;
@@ -3267,38 +4089,48 @@ a.hiddenanchor {
border: 1px solid #c8c8c8;
color: #777;
margin: 0 0 20px;
- width: 100%; }
+ width: 100%;
+}
-.login_content form input[type="text"]:focus, .login_content form input[type="email"]:focus, .login_content form input[type="password"]:focus {
+.login_content form input[type='text']:focus,
+.login_content form input[type='email']:focus,
+.login_content form input[type='password']:focus {
-ms-box-shadow: 0 0 2px #ed1c24 inset;
-o-box-shadow: 0 0 2px #ed1c24 inset;
- box-shadow: 0 0 2px #A97AAD inset;
+ box-shadow: 0 0 2px #a97aad inset;
background-color: #fff;
- border: 1px solid #A878AF;
- outline: none; }
+ border: 1px solid #a878af;
+ outline: none;
+}
#username {
- background-position: 10px 10px !important; }
+ background-position: 10px 10px !important;
+}
#password {
- background-position: 10px -53px !important; }
+ background-position: 10px -53px !important;
+}
.login_content form div a {
font-size: 12px;
- margin: 10px 15px 0 0; }
+ margin: 10px 15px 0 0;
+}
.reset_pass {
- margin-top: 10px !important; }
+ margin-top: 10px !important;
+}
.login_content div .reset_pass {
margin-top: 13px !important;
margin-right: 39px;
- float: right; }
+ float: right;
+}
.separator {
- border-top: 1px solid #D8D8D8;
+ border-top: 1px solid #d8d8d8;
margin-top: 10px;
- padding-top: 10px; }
+ padding-top: 10px;
+}
.button {
background: #f7f9fa;
@@ -3308,39 +4140,48 @@ a.hiddenanchor {
-o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
border-radius: 0 0 5px 5px;
- border-top: 1px solid #CFD5D9;
- padding: 15px 0; }
+ border-top: 1px solid #cfd5d9;
+ padding: 15px 0;
+}
-.login_content form input[type="submit"], #content form .submit {
+.login_content form input[type='submit'],
+#content form .submit {
float: left;
- margin-left: 38px; }
+ margin-left: 38px;
+}
.button a {
background: url(http://cssdeck.com/uploads/media/items/8/8bcLQqF.png) 0 -112px no-repeat;
- color: #7E7E7E;
+ color: #7e7e7e;
font-size: 17px;
padding: 2px 0 2px 40px;
text-decoration: none;
- transition: all 0.3s ease; }
+ transition: all 0.3s ease;
+}
.button a:hover {
background-position: 0 -135px;
- color: #00aeef; }
+ color: #00aeef;
+}
header {
- width: 100%; }
+ width: 100%;
+}
/** signup **/
/** NProgress **/
#nprogress .bar {
- background: #1ABB9C; }
+ background: #1abb9c;
+}
#nprogress .peg {
- box-shadow: 0 0 10px #1ABB9C, 0 0 5px #1ABB9C; }
+ box-shadow: 0 0 10px #1abb9c, 0 0 5px #1abb9c;
+}
#nprogress .spinner-icon {
- border-top-color: #1ABB9C;
- border-left-color: #1ABB9C; }
+ border-top-color: #1abb9c;
+ border-left-color: #1abb9c;
+}
/** /NProgress **/
/** bootstrap-wysiwyg **/
@@ -3357,7 +4198,8 @@ header {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
overflow: scroll;
- outline: none; }
+ outline: none;
+}
.voiceBtn {
width: 20px;
@@ -3369,16 +4211,19 @@ header {
border: transparent;
cursor: pointer;
box-shadow: none;
- -webkit-box-shadow: none; }
+ -webkit-box-shadow: none;
+}
-div[data-role="editor-toolbar"] {
+div[data-role='editor-toolbar'] {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
- user-select: none; }
+ user-select: none;
+}
.dropdown-menu a {
- cursor: pointer; }
+ cursor: pointer;
+}
/** /bootstrap-wysiwyg **/
/** Select2 **/
@@ -3387,44 +4232,53 @@ div[data-role="editor-toolbar"] {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 0;
- min-height: 38px; }
+ min-height: 38px;
+}
.select2-container--default .select2-selection--single .select2-selection__rendered {
- color: #73879C;
- padding-top: 5px; }
+ color: #73879c;
+ padding-top: 5px;
+}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
- padding-top: 3px; }
+ padding-top: 3px;
+}
.select2-container--default .select2-selection--single .select2-selection__arrow {
- height: 36px; }
+ height: 36px;
+}
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__clear {
margin-top: 2px;
border: none;
border-radius: 0;
- padding: 3px 5px; }
+ padding: 3px 5px;
+}
.select2-container--default.select2-container--focus .select2-selection--multiple {
- border: 1px solid #ccc; }
+ border: 1px solid #ccc;
+}
/** /Select2 **/
/** Switchery **/
.switchery {
width: 32px;
- height: 20px; }
+ height: 20px;
+}
.switchery > small {
width: 20px;
- height: 20px; }
+ height: 20px;
+}
/** /Switchery **/
/** Normalize.css **/
fieldset {
border: none;
margin: 0;
- padding: 0; }
+ padding: 0;
+}
/** /Normalize.css **/
/** Cropper **/
@@ -3432,128 +4286,163 @@ fieldset {
.cropper .img-preview {
background-color: #f7f7f7;
width: 100%;
- text-align: center; }
+ text-align: center;
+}
.cropper .img-container {
min-height: 200px;
max-height: 516px;
- margin-bottom: 20px; }
+ margin-bottom: 20px;
+}
@media (min-width: 768px) {
.cropper .img-container {
- min-height: 516px; } }
+ min-height: 516px;
+ }
+}
.cropper .img-container > img {
- max-width: 100%; }
+ max-width: 100%;
+}
.cropper .docs-preview {
- margin-right: -15px; }
+ margin-right: -15px;
+}
.cropper .img-preview {
float: left;
margin-right: 10px;
margin-bottom: 10px;
- overflow: hidden; }
+ overflow: hidden;
+}
.cropper .img-preview > img {
- max-width: 100%; }
+ max-width: 100%;
+}
.cropper .preview-lg {
width: 263px;
- height: 148px; }
+ height: 148px;
+}
.cropper .preview-md {
width: 139px;
- height: 78px; }
+ height: 78px;
+}
.cropper .preview-sm {
width: 69px;
- height: 39px; }
+ height: 39px;
+}
.cropper .preview-xs {
width: 35px;
height: 20px;
- margin-right: 0; }
+ margin-right: 0;
+}
.cropper .docs-data > .input-group {
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
.cropper .docs-data > .input-group > label {
- min-width: 80px; }
+ min-width: 80px;
+}
.cropper .docs-data > .input-group > span {
- min-width: 50px; }
+ min-width: 50px;
+}
.cropper .docs-buttons > .btn,
.cropper .docs-buttons > .btn-group,
.cropper .docs-buttons > .form-control {
margin-right: 5px;
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
.cropper .docs-toggles > .btn,
.cropper .docs-toggles > .btn-group,
.cropper .docs-toggles > .dropdown {
- margin-bottom: 10px; }
+ margin-bottom: 10px;
+}
.cropper .docs-tooltip {
display: block;
margin: -6px -12px;
- padding: 6px 12px; }
+ padding: 6px 12px;
+}
.cropper .docs-tooltip > .icon {
margin: 0 -3px;
- vertical-align: top; }
+ vertical-align: top;
+}
.cropper .tooltip-inner {
- white-space: normal; }
+ white-space: normal;
+}
.cropper .btn-upload .tooltip-inner,
.cropper .btn-toggle .tooltip-inner {
- white-space: nowrap; }
+ white-space: nowrap;
+}
.cropper .btn-toggle {
- padding: 6px; }
+ padding: 6px;
+}
.cropper .btn-toggle > .docs-tooltip {
margin: -6px;
- padding: 6px; }
+ padding: 6px;
+}
@media (max-width: 400px) {
.cropper .btn-group-crop {
- margin-right: -15px !important; }
+ margin-right: -15px !important;
+ }
.cropper .btn-group-crop > .btn {
padding-left: 5px;
- padding-right: 5px; }
+ padding-right: 5px;
+ }
.cropper .btn-group-crop .docs-tooltip {
margin-left: -5px;
margin-right: -5px;
padding-left: 5px;
- padding-right: 5px; } }
+ padding-right: 5px;
+ }
+}
.cropper .docs-options .dropdown-menu {
- width: 100%; }
+ width: 100%;
+}
.cropper .docs-options .dropdown-menu > li {
- padding: 3px 20px; }
+ padding: 3px 20px;
+}
.cropper .docs-options .dropdown-menu > li:hover {
- background-color: #f7f7f7; }
+ background-color: #f7f7f7;
+}
.cropper .docs-options .dropdown-menu > li > label {
- display: block; }
+ display: block;
+}
.cropper .docs-cropped .modal-body {
- text-align: center; }
+ text-align: center;
+}
.cropper .docs-cropped .modal-body > img,
.cropper .docs-cropped .modal-body > canvas {
- max-width: 100%; }
+ max-width: 100%;
+}
.cropper .docs-diagram .modal-dialog {
- max-width: 352px; }
+ max-width: 352px;
+}
.cropper .docs-cropped canvas {
- max-width: 100%; }
+ max-width: 100%;
+}
/** /Cropper **/
/** jQuery Smart Wizard **/
@@ -3562,40 +4451,47 @@ fieldset {
position: relative;
margin: 0;
padding: 0;
- border: 0 solid #CCC;
- overflow-x: hidden; }
+ border: 0 solid #ccc;
+ overflow-x: hidden;
+}
.wizard_horizontal ul.wizard_steps {
display: table;
list-style: none;
position: relative;
width: 100%;
- margin: 0 0 20px; }
+ margin: 0 0 20px;
+}
.wizard_horizontal ul.wizard_steps li {
display: table-cell;
- text-align: center; }
+ text-align: center;
+}
-.wizard_horizontal ul.wizard_steps li a, .wizard_horizontal ul.wizard_steps li:hover {
+.wizard_horizontal ul.wizard_steps li a,
+.wizard_horizontal ul.wizard_steps li:hover {
display: block;
position: relative;
-moz-opacity: 1;
filter: alpha(opacity=100);
opacity: 1;
- color: #666; }
+ color: #666;
+}
.wizard_horizontal ul.wizard_steps li a:before {
- content: "";
+ content: '';
position: absolute;
height: 4px;
background: #ccc;
top: 20px;
width: 100%;
z-index: 4;
- left: 0; }
+ left: 0;
+}
.wizard_horizontal ul.wizard_steps li a.disabled .step_no {
- background: #ccc; }
+ background: #ccc;
+}
.wizard_horizontal ul.wizard_steps li a .step_no {
width: 40px;
@@ -3607,50 +4503,62 @@ fieldset {
font-size: 16px;
text-align: center;
position: relative;
- z-index: 5; }
+ z-index: 5;
+}
-.wizard_horizontal ul.wizard_steps li a.selected:before, .step_no {
- background: #34495E;
- color: #fff; }
+.wizard_horizontal ul.wizard_steps li a.selected:before,
+.step_no {
+ background: #34495e;
+ color: #fff;
+}
-.wizard_horizontal ul.wizard_steps li a.done:before, .wizard_horizontal ul.wizard_steps li a.done .step_no {
- background: #1ABB9C;
- color: #fff; }
+.wizard_horizontal ul.wizard_steps li a.done:before,
+.wizard_horizontal ul.wizard_steps li a.done .step_no {
+ background: #1abb9c;
+ color: #fff;
+}
.wizard_horizontal ul.wizard_steps li:first-child a:before {
- left: 50%; }
+ left: 50%;
+}
.wizard_horizontal ul.wizard_steps li:last-child a:before {
right: 50%;
width: 50%;
- left: auto; }
+ left: auto;
+}
.wizard_verticle .stepContainer {
width: 80%;
float: left;
- padding: 0 10px; }
+ padding: 0 10px;
+}
.actionBar {
width: 100%;
border-top: 1px solid #ddd;
padding: 10px 5px;
text-align: right;
- margin-top: 10px; }
+ margin-top: 10px;
+}
.actionBar .buttonDisabled {
cursor: not-allowed;
pointer-events: none;
- opacity: .65;
+ opacity: 0.65;
filter: alpha(opacity=65);
- box-shadow: none; }
+ box-shadow: none;
+}
.actionBar a {
- margin: 0 3px; }
+ margin: 0 3px;
+}
.wizard_verticle .wizard_content {
width: 80%;
float: left;
- padding-left: 20px; }
+ padding-left: 20px;
+}
.wizard_verticle ul.wizard_steps {
display: table;
@@ -3658,38 +4566,46 @@ fieldset {
position: relative;
width: 20%;
float: left;
- margin: 0 0 20px; }
+ margin: 0 0 20px;
+}
.wizard_verticle ul.wizard_steps li {
display: list-item;
- text-align: center; }
+ text-align: center;
+}
.wizard_verticle ul.wizard_steps li a {
- height: 80px; }
+ height: 80px;
+}
.wizard_verticle ul.wizard_steps li a:first-child {
- margin-top: 20px; }
+ margin-top: 20px;
+}
-.wizard_verticle ul.wizard_steps li a, .wizard_verticle ul.wizard_steps li:hover {
+.wizard_verticle ul.wizard_steps li a,
+.wizard_verticle ul.wizard_steps li:hover {
display: block;
position: relative;
-moz-opacity: 1;
filter: alpha(opacity=100);
opacity: 1;
- color: #666; }
+ color: #666;
+}
.wizard_verticle ul.wizard_steps li a:before {
- content: "";
+ content: '';
position: absolute;
height: 100%;
background: #ccc;
top: 20px;
width: 4px;
z-index: 4;
- left: 49%; }
+ left: 49%;
+}
.wizard_verticle ul.wizard_steps li a.disabled .step_no {
- background: #ccc; }
+ background: #ccc;
+}
.wizard_verticle ul.wizard_steps li a .step_no {
width: 40px;
@@ -3701,120 +4617,151 @@ fieldset {
font-size: 16px;
text-align: center;
position: relative;
- z-index: 5; }
+ z-index: 5;
+}
-.wizard_verticle ul.wizard_steps li a.selected:before, .step_no {
- background: #34495E;
- color: #fff; }
+.wizard_verticle ul.wizard_steps li a.selected:before,
+.step_no {
+ background: #34495e;
+ color: #fff;
+}
-.wizard_verticle ul.wizard_steps li a.done:before, .wizard_verticle ul.wizard_steps li a.done .step_no {
- background: #1ABB9C;
- color: #fff; }
+.wizard_verticle ul.wizard_steps li a.done:before,
+.wizard_verticle ul.wizard_steps li a.done .step_no {
+ background: #1abb9c;
+ color: #fff;
+}
.wizard_verticle ul.wizard_steps li:first-child a:before {
- left: 49%; }
+ left: 49%;
+}
.wizard_verticle ul.wizard_steps li:last-child a:before {
left: 49%;
left: auto;
- width: 0; }
+ width: 0;
+}
.form_wizard .loader {
- display: none; }
+ display: none;
+}
.form_wizard .msgBox {
- display: none; }
+ display: none;
+}
/** jQuery Smart Wizard **/
/** bootstrap-progressbar **/
.progress {
- border-radius: 0; }
+ border-radius: 0;
+}
.bg-info {
- background-color: #3498DB; }
+ background-color: #3498db;
+}
.bg-success {
- background-color: #26B99A; }
+ background-color: #26b99a;
+}
.progress_summary .progress {
- margin: 5px 0 12px !important; }
+ margin: 5px 0 12px !important;
+}
.progress_summary .row {
- margin-bottom: 5px; }
+ margin-bottom: 5px;
+}
.progress_summary .row .col-xs-2 {
- padding: 0; }
+ padding: 0;
+}
.progress_summary .more_info span {
text-align: right;
- float: right; }
+ float: right;
+}
.progress_summary .data span {
text-align: right;
- float: right; }
+ float: right;
+}
.progress_summary p {
margin-bottom: 3px;
- width: 100%; }
+ width: 100%;
+}
.progress_title .left {
float: left;
- text-align: left; }
+ text-align: left;
+}
.progress_title .right {
float: right;
text-align: right;
- font-weight: 300; }
+ font-weight: 300;
+}
.progress.progress_sm {
border-radius: 0;
margin-bottom: 18px;
- height: 10px !important; }
+ height: 10px !important;
+}
.progress.progress_sm .progress-bar {
- height: 10px !important; }
+ height: 10px !important;
+}
.dashboard_graph p {
- margin: 0 0 4px; }
+ margin: 0 0 4px;
+}
ul.verticle_bars {
- width: 100%; }
+ width: 100%;
+}
ul.verticle_bars li {
width: 23%;
height: 200px;
- margin: 0; }
+ margin: 0;
+}
.progress.vertical.progress_wide {
- width: 35px; }
+ width: 35px;
+}
/** bootstrap-progressbar **/
/** PNotify **/
.alert-success {
color: #ffffff;
background-color: rgba(38, 185, 154, 0.88);
- border-color: rgba(38, 185, 154, 0.88); }
+ border-color: rgba(38, 185, 154, 0.88);
+}
.alert-info {
- color: #E9EDEF;
+ color: #e9edef;
background-color: rgba(52, 152, 219, 0.88);
- border-color: rgba(52, 152, 219, 0.88); }
+ border-color: rgba(52, 152, 219, 0.88);
+}
.alert-warning {
- color: #E9EDEF;
+ color: #e9edef;
background-color: rgba(243, 156, 18, 0.88);
- border-color: rgba(243, 156, 18, 0.88); }
+ border-color: rgba(243, 156, 18, 0.88);
+}
.alert-danger,
.alert-error {
- color: #E9EDEF;
+ color: #e9edef;
background-color: rgba(231, 76, 60, 0.88);
- border-color: rgba(231, 76, 60, 0.88); }
+ border-color: rgba(231, 76, 60, 0.88);
+}
.ui-pnotify.dark .ui-pnotify-container {
- color: #E9EDEF;
+ color: #e9edef;
background-color: rgba(52, 73, 94, 0.88);
- border-color: rgba(52, 73, 94, 0.88); }
+ border-color: rgba(52, 73, 94, 0.88);
+}
.custom-notifications {
position: fixed;
@@ -3823,39 +4770,46 @@ ul.verticle_bars li {
float: right;
width: 400px;
z-index: 4000;
- bottom: 0; }
+ bottom: 0;
+}
ul.notifications {
float: right;
display: block;
margin-bottom: 7px;
padding: 0;
- width: 100%; }
+ width: 100%;
+}
.notifications li {
float: right;
margin: 3px;
width: 36px;
- box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3); }
+ box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
+}
.notifications li:last-child {
- margin-left: 0; }
+ margin-left: 0;
+}
.notifications a {
display: block;
text-align: center;
text-decoration: none;
text-transform: uppercase;
- padding: 9px 8px; }
+ padding: 9px 8px;
+}
.tabbed_notifications .text {
padding: 5px 15px;
height: 140px;
border-radius: 7px;
- box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3); }
+ box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3);
+}
.tabbed_notifications div p {
- display: inline-block; }
+ display: inline-block;
+}
.tabbed_notifications h2 {
font-weight: bold;
@@ -3865,111 +4819,153 @@ ul.notifications {
height: 20px;
text-overflow: ellipsis;
overflow: hidden;
- display: block; }
+ display: block;
+}
.tabbed_notifications .close {
padding: 5px;
- color: #E9EDEF;
+ color: #e9edef;
float: right;
- opacity: 1; }
+ opacity: 1;
+}
/** /PNotify **/
/** FullCalendar **/
.fc-state-default {
background: #f5f5f5;
- color: #73879C; }
+ color: #73879c;
+}
.fc-state-down,
.fc-state-active {
color: #333;
- background: #ccc; }
+ background: #ccc;
+}
/** /FullCalendar **/
/** Dropzone.js **/
.dropzone {
min-height: 300px;
- border: 1px solid #e5e5e5; }
+ border: 1px solid #e5e5e5;
+}
/** /Dropzone.js **/
@media (max-width: 767px) {
.x_panel .dropdown-menu {
left: initial;
- right: 0; } }
+ right: 0;
+ }
+}
.daterangepicker .ranges li {
- color: #73879C; }
-.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
- background: #536A7F;
- border: 1px solid #536A7F;
- color: #fff; }
+ color: #73879c;
+}
+.daterangepicker .ranges li.active,
+.daterangepicker .ranges li:hover {
+ background: #536a7f;
+ border: 1px solid #536a7f;
+ color: #fff;
+}
.daterangepicker .input-mini {
background-color: #eee;
border: 1px solid #ccc;
- box-shadow: none !important; }
+ box-shadow: none !important;
+}
.daterangepicker .input-mini.active {
- border: 1px solid #ccc; }
-.daterangepicker select.monthselect, .daterangepicker select.yearselect, .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
+ border: 1px solid #ccc;
+}
+.daterangepicker select.monthselect,
+.daterangepicker select.yearselect,
+.daterangepicker select.hourselect,
+.daterangepicker select.minuteselect,
+.daterangepicker select.secondselect,
+.daterangepicker select.ampmselect {
font-size: 12px;
padding: 1px;
height: auto;
margin: 0;
cursor: default;
height: 30px;
- border: 1px solid #ADB2B5;
+ border: 1px solid #adb2b5;
line-height: 30px;
- border-radius: 0px !important; }
+ border-radius: 0px !important;
+}
.daterangepicker select.monthselect {
- margin-right: 2%; }
+ margin-right: 2%;
+}
.daterangepicker td.in-range {
- background: #E4E7EA;
- color: #73879C; }
-.daterangepicker td.active, .daterangepicker td.active:hover {
- background-color: #536A7F;
- color: #fff; }
+ background: #e4e7ea;
+ color: #73879c;
+}
+.daterangepicker td.active,
+.daterangepicker td.active:hover {
+ background-color: #536a7f;
+ color: #fff;
+}
.daterangepicker th.available:hover {
background: #eee;
- color: #34495E; }
-.daterangepicker:before, .daterangepicker:after {
- content: none; }
+ color: #34495e;
+}
+.daterangepicker:before,
+.daterangepicker:after {
+ content: none;
+}
.daterangepicker .calendar.single {
- margin: 0 0 4px 0; }
+ margin: 0 0 4px 0;
+}
.daterangepicker .calendar.single .calendar-table {
width: 224px;
- padding: 0 0 4px 0 !important; }
+ padding: 0 0 4px 0 !important;
+}
.daterangepicker .calendar.single .calendar-table thead tr:first-child th {
- padding: 8px 5px; }
+ padding: 8px 5px;
+}
.daterangepicker .calendar.single .calendar-table thead th {
- border-radius: 0; }
+ border-radius: 0;
+}
.daterangepicker.picker_1 {
color: #fff;
- background: #34495E; }
+ background: #34495e;
+}
.daterangepicker.picker_1 .calendar-table {
- background: #34495E; }
+ background: #34495e;
+}
.daterangepicker.picker_1 .calendar-table thead tr {
- background: #213345; }
+ background: #213345;
+}
.daterangepicker.picker_1 .calendar-table thead tr:first-child {
- background: #1ABB9C; }
+ background: #1abb9c;
+}
.daterangepicker.picker_1 .calendar-table td.off {
- background: #34495E;
- color: #999; }
+ background: #34495e;
+ color: #999;
+}
.daterangepicker.picker_1 .calendar-table td.available:hover {
- color: #34495E; }
+ color: #34495e;
+}
.daterangepicker.picker_2 .calendar-table thead tr {
- color: #1ABB9C; }
+ color: #1abb9c;
+}
.daterangepicker.picker_2 .calendar-table thead tr:first-child {
- color: #73879C; }
+ color: #73879c;
+}
.daterangepicker.picker_3 .calendar-table thead tr:first-child {
color: #fff;
- background: #1ABB9C; }
+ background: #1abb9c;
+}
.daterangepicker.picker_4 .calendar-table thead tr:first-child {
color: #fff;
- background: #34495E; }
-.daterangepicker.picker_4 .calendar-table td, .daterangepicker.picker_4 .calendar-table td.off {
- background: #ECF0F1;
+ background: #34495e;
+}
+.daterangepicker.picker_4 .calendar-table td,
+.daterangepicker.picker_4 .calendar-table td.off {
+ background: #ecf0f1;
border: 1px solid #fff;
- border-radius: 0; }
+ border-radius: 0;
+}
.daterangepicker.picker_4 .calendar-table td.active {
- background: #34495E; }
+ background: #34495e;
+}
.calendar-exibit .show-calendar {
float: none;
@@ -3979,10 +4975,14 @@ ul.notifications {
border: 1px solid #ccc;
margin-bottom: 20px;
border: 1px solid rgba(0, 0, 0, 0.15);
- overflow: hidden; }
+ overflow: hidden;
+}
.calendar-exibit .show-calendar .calendar {
- margin: 0 0 4px 0; }
+ margin: 0 0 4px 0;
+}
.calendar-exibit .show-calendar.picker_1 {
- background: #34495E; }
+ background: #34495e;
+}
.calendar-exibit .calendar-table {
- padding: 0 0 4px 0; }
+ padding: 0 0 4px 0;
+}
diff --git a/resources/assets/js/app.js b/resources/assets/js/app.js
index 98eca79fd..4bb0ed194 100644
--- a/resources/assets/js/app.js
+++ b/resources/assets/js/app.js
@@ -1,4 +1,3 @@
-
/**
* First we will load all of this project's JavaScript dependencies which
* includes Vue and other libraries. It is a great starting point when
@@ -18,5 +17,5 @@ window.Vue = require('vue');
Vue.component('example-component', require('./components/ExampleComponent.vue'));
const app = new Vue({
- el: '#app'
+ el: '#app',
});
diff --git a/resources/assets/js/components/ExampleComponent.vue b/resources/assets/js/components/ExampleComponent.vue
index 601e61cf8..0f77cc39e 100644
--- a/resources/assets/js/components/ExampleComponent.vue
+++ b/resources/assets/js/components/ExampleComponent.vue
@@ -15,9 +15,9 @@
diff --git a/resources/assets/js/custom.js b/resources/assets/js/custom.js
index fc17f9440..87ffe15db 100755
--- a/resources/assets/js/custom.js
+++ b/resources/assets/js/custom.js
@@ -6,33 +6,32 @@
* // code here
* });
*/
-(function($,sr){
+(function($, sr) {
// debouncing function from John Hann
// http://unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods/
- var debounce = function (func, threshold, execAsap) {
+ var debounce = function(func, threshold, execAsap) {
var timeout;
- return function debounced () {
- var obj = this, args = arguments;
- function delayed () {
- if (!execAsap)
- func.apply(obj, args);
+ return function debounced() {
+ var obj = this,
+ args = arguments;
+ function delayed() {
+ if (!execAsap) func.apply(obj, args);
timeout = null;
}
- if (timeout)
- clearTimeout(timeout);
- else if (execAsap)
- func.apply(obj, args);
+ if (timeout) clearTimeout(timeout);
+ else if (execAsap) func.apply(obj, args);
timeout = setTimeout(delayed, threshold || 100);
};
};
// smartresize
- jQuery.fn[sr] = function(fn){ return fn ? this.bind('resize', debounce(fn)) : this.trigger(sr); };
-
-})(jQuery,'smartresize');
+ jQuery.fn[sr] = function(fn) {
+ return fn ? this.bind('resize', debounce(fn)) : this.trigger(sr);
+ };
+})(jQuery, 'smartresize');
/**
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
@@ -43,7 +42,7 @@
$(document).ready(function() {
// TODO: This is some kind of easy fix, maybe we can improve this
- var setContentHeight = function () {
+ var setContentHeight = function() {
// reset height
$RIGHT_COL.css('min-height', $(window).height());
@@ -65,17 +64,13 @@ $(document).ready(function() {
$('ul:first', $li).slideUp(function() {
setContentHeight();
});
- }
- else
- {
+ } else {
// prevent closing menu if we are on child menu
if (!$li.parent().is('.child_menu')) {
$SIDEBAR_MENU.find('li').removeClass('active active-sm');
$SIDEBAR_MENU.find('li ul').slideUp();
- }else
- {
- if ( $BODY.is( ".nav-sm" ) )
- {
+ } else {
+ if ($BODY.is('.nav-sm')) {
if (!$li.parent().is('.child_menu')) {
$SIDEBAR_MENU.find('li').removeClass('active active-sm');
$SIDEBAR_MENU.find('li ul').slideUp();
@@ -84,57 +79,74 @@ $(document).ready(function() {
}
$li.addClass('active');
- $('ul:first', $li).slideDown(function() {
-
- });
+ $('ul:first', $li).slideDown(function() {});
}
});
-
// toggle small or large menu
$MENU_TOGGLE.on('click', function() {
if ($BODY.hasClass('nav-md')) {
$SIDEBAR_MENU.find('li.active ul').hide();
- $SIDEBAR_MENU.find('li.active').addClass('active-sm').removeClass('active');
+ $SIDEBAR_MENU
+ .find('li.active')
+ .addClass('active-sm')
+ .removeClass('active');
} else {
$SIDEBAR_MENU.find('li.active-sm ul').show();
- $SIDEBAR_MENU.find('li.active-sm').addClass('active').removeClass('active-sm');
+ $SIDEBAR_MENU
+ .find('li.active-sm')
+ .addClass('active')
+ .removeClass('active-sm');
}
$BODY.toggleClass('nav-md nav-sm');
setContentHeight();
- $('.dataTable').each ( function () { $(this).dataTable().fnDraw(); });
+ $('.dataTable').each(function() {
+ $(this)
+ .dataTable()
+ .fnDraw();
+ });
});
// check active menu
- var $cur_menu = $SIDEBAR_MENU.find('a').filter(function () { // find nav element with exact match
+ var $cur_menu = $SIDEBAR_MENU.find('a').filter(function() {
+ // find nav element with exact match
return this.href == CURRENT_URL;
});
- if ($cur_menu.length == 0) { // if no exact match, try to find best match
- var $cur_menu = $SIDEBAR_MENU.find('a').filter(function () {
+ if ($cur_menu.length == 0) {
+ // if no exact match, try to find best match
+ var $cur_menu = $SIDEBAR_MENU.find('a').filter(function() {
return CURRENT_URL.startsWith(this.href) && this.href != '';
});
- if ($cur_menu.length > 1) { // get ONLY one with longest href as best match
+ if ($cur_menu.length > 1) {
+ // get ONLY one with longest href as best match
var l = 0;
for (var i = 0; i < $cur_menu.length; i++) {
- if ($cur_menu.eq(l).attr('href').length < $cur_menu.eq(i).attr('href').length) l = i;
+ if ($cur_menu.eq(l).attr('href').length < $cur_menu.eq(i).attr('href').length)
+ l = i;
}
$cur_menu = $cur_menu.eq(l);
}
}
// original code below, but executed for $cur_menu
- $cur_menu.parent('li').addClass('current-page').parents('ul').slideDown(function() {
- setContentHeight();
- }).parent().addClass('active');
+ $cur_menu
+ .parent('li')
+ .addClass('current-page')
+ .parents('ul')
+ .slideDown(function() {
+ setContentHeight();
+ })
+ .parent()
+ .addClass('active');
// recompute content when resizing
- $(window).smartresize(function(){
+ $(window).smartresize(function() {
setContentHeight();
});
@@ -145,111 +157,130 @@ $(document).ready(function() {
$('.menu_fixed').mCustomScrollbar({
autoHideScrollbar: true,
theme: 'minimal',
- mouseWheel:{ preventDefault: true }
+ mouseWheel: { preventDefault: true },
});
}
});
-
/* SIDEBAR - end */
function countChecked() {
- "all" === checkState && $(".bulk_action input[name='table_records']").iCheck("check"), "none" === checkState && $(".bulk_action input[name='table_records']").iCheck("uncheck");
+ 'all' === checkState && $(".bulk_action input[name='table_records']").iCheck('check'),
+ 'none' === checkState && $(".bulk_action input[name='table_records']").iCheck('uncheck');
var a = $(".bulk_action input[name='table_records']:checked").length;
- a ? ($(".column-title").hide(), $(".bulk-actions").show(), $(".action-cnt").html(a + " Records Selected")) : ($(".column-title").show(), $(".bulk-actions").hide())
+ a
+ ? ($('.column-title').hide(),
+ $('.bulk-actions').show(),
+ $('.action-cnt').html(a + ' Records Selected'))
+ : ($('.column-title').show(), $('.bulk-actions').hide());
}
function gd(a, b, c) {
- return new Date(a, b - 1, c).getTime()
+ return new Date(a, b - 1, c).getTime();
}
-
function init_flot_chart() {
- if ("undefined" != typeof $.plot) {
- console.log("init_flot_chart");
- for (var a = [
- [gd(2012, 1, 1), 17],
- [gd(2012, 1, 2), 74],
- [gd(2012, 1, 3), 6],
- [gd(2012, 1, 4), 39],
- [gd(2012, 1, 5), 20],
- [gd(2012, 1, 6), 85],
- [gd(2012, 1, 7), 7]
- ], b = [
- [gd(2012, 1, 1), 82],
- [gd(2012, 1, 2), 23],
- [gd(2012, 1, 3), 66],
- [gd(2012, 1, 4), 9],
- [gd(2012, 1, 5), 119],
- [gd(2012, 1, 6), 6],
- [gd(2012, 1, 7), 9]
- ], d = [], e = [
- [0, 1],
- [1, 9],
- [2, 6],
- [3, 10],
- [4, 5],
- [5, 17],
- [6, 6],
- [7, 10],
- [8, 7],
- [9, 11],
- [10, 35],
- [11, 9],
- [12, 12],
- [13, 5],
- [14, 3],
- [15, 4],
- [16, 9]
- ], f = 0; f < 30; f++) d.push([new Date(Date.today().add(f).days()).getTime(), randNum() + f + f + 10]);
+ if ('undefined' != typeof $.plot) {
+ console.log('init_flot_chart');
+ for (
+ var a = [
+ [gd(2012, 1, 1), 17],
+ [gd(2012, 1, 2), 74],
+ [gd(2012, 1, 3), 6],
+ [gd(2012, 1, 4), 39],
+ [gd(2012, 1, 5), 20],
+ [gd(2012, 1, 6), 85],
+ [gd(2012, 1, 7), 7],
+ ],
+ b = [
+ [gd(2012, 1, 1), 82],
+ [gd(2012, 1, 2), 23],
+ [gd(2012, 1, 3), 66],
+ [gd(2012, 1, 4), 9],
+ [gd(2012, 1, 5), 119],
+ [gd(2012, 1, 6), 6],
+ [gd(2012, 1, 7), 9],
+ ],
+ d = [],
+ e = [
+ [0, 1],
+ [1, 9],
+ [2, 6],
+ [3, 10],
+ [4, 5],
+ [5, 17],
+ [6, 6],
+ [7, 10],
+ [8, 7],
+ [9, 11],
+ [10, 35],
+ [11, 9],
+ [12, 12],
+ [13, 5],
+ [14, 3],
+ [15, 4],
+ [16, 9],
+ ],
+ f = 0;
+ f < 30;
+ f++
+ )
+ d.push([
+ new Date(
+ Date.today()
+ .add(f)
+ .days()
+ ).getTime(),
+ randNum() + f + f + 10,
+ ]);
var g = {
series: {
lines: {
show: !1,
- fill: !0
+ fill: !0,
},
splines: {
show: !0,
- tension: .4,
+ tension: 0.4,
lineWidth: 1,
- fill: .4
+ fill: 0.4,
},
points: {
radius: 0,
- show: !0
+ show: !0,
},
- shadowSize: 2
+ shadowSize: 2,
},
grid: {
verticalLines: !0,
hoverable: !0,
clickable: !0,
- tickColor: "#d5d5d5",
+ tickColor: '#d5d5d5',
borderWidth: 1,
- color: "#fff"
+ color: '#fff',
},
- colors: ["rgba(38, 185, 154, 0.38)", "rgba(3, 88, 106, 0.38)"],
+ colors: ['rgba(38, 185, 154, 0.38)', 'rgba(3, 88, 106, 0.38)'],
xaxis: {
- tickColor: "rgba(51, 51, 51, 0.06)",
- mode: "time",
- tickSize: [1, "day"],
- axisLabel: "Date",
+ tickColor: 'rgba(51, 51, 51, 0.06)',
+ mode: 'time',
+ tickSize: [1, 'day'],
+ axisLabel: 'Date',
axisLabelUseCanvas: !0,
axisLabelFontSizePixels: 12,
- axisLabelFontFamily: "Verdana, Arial",
- axisLabelPadding: 10
+ axisLabelFontFamily: 'Verdana, Arial',
+ axisLabelPadding: 10,
},
yaxis: {
ticks: 8,
- tickColor: "rgba(51, 51, 51, 0.06)"
+ tickColor: 'rgba(51, 51, 51, 0.06)',
},
- tooltip: !1
+ tooltip: !1,
},
h = {
grid: {
show: !0,
aboveData: !0,
- color: "#3f3f3f",
+ color: '#3f3f3f',
labelMargin: 10,
axisMargin: 0,
borderWidth: 0,
@@ -258,856 +289,1173 @@ function init_flot_chart() {
clickable: !0,
hoverable: !0,
autoHighlight: !0,
- mouseActiveRadius: 100
+ mouseActiveRadius: 100,
},
series: {
lines: {
show: !0,
fill: !0,
lineWidth: 2,
- steps: !1
+ steps: !1,
},
points: {
show: !0,
radius: 4.5,
- symbol: "circle",
- lineWidth: 3
- }
+ symbol: 'circle',
+ lineWidth: 3,
+ },
},
legend: {
- position: "ne",
+ position: 'ne',
margin: [0, -25],
noColumns: 0,
labelBoxBorderColor: null,
labelFormatter: function(a, b) {
- return a + " "
+ return a + ' ';
},
width: 40,
- height: 1
+ height: 1,
},
- colors: ["#96CA59", "#3F97EB", "#72c380", "#6f7a8a", "#f7cb38", "#5a8022", "#2c7282"],
+ colors: [
+ '#96CA59',
+ '#3F97EB',
+ '#72c380',
+ '#6f7a8a',
+ '#f7cb38',
+ '#5a8022',
+ '#2c7282',
+ ],
shadowSize: 0,
tooltip: !0,
tooltipOpts: {
- content: "%s: %y.0",
- xDateFormat: "%d/%m",
+ content: '%s: %y.0',
+ xDateFormat: '%d/%m',
shifts: {
x: -30,
- y: -50
+ y: -50,
},
- defaultTheme: !1
+ defaultTheme: !1,
},
yaxis: {
- min: 0
+ min: 0,
},
xaxis: {
- mode: "time",
- minTickSize: [1, "day"],
- timeformat: "%d/%m/%y",
+ mode: 'time',
+ minTickSize: [1, 'day'],
+ timeformat: '%d/%m/%y',
min: d[0][0],
- max: d[20][0]
- }
+ max: d[20][0],
+ },
},
i = {
series: {
curvedLines: {
apply: !0,
active: !0,
- monotonicFit: !0
- }
+ monotonicFit: !0,
+ },
},
- colors: ["#26B99A"],
+ colors: ['#26B99A'],
grid: {
borderWidth: {
top: 0,
right: 0,
bottom: 1,
- left: 1
+ left: 1,
},
borderColor: {
- bottom: "#7F8790",
- left: "#7F8790"
- }
- }
+ bottom: '#7F8790',
+ left: '#7F8790',
+ },
+ },
};
- $("#chart_plot_01").length && (console.log("Plot1"), $.plot($("#chart_plot_01"), [a, b], g)), $("#chart_plot_02").length && (console.log("Plot2"), $.plot($("#chart_plot_02"), [{
- label: "Email Sent",
- data: d,
- lines: {
- fillColor: "rgba(150, 202, 89, 0.12)"
- },
- points: {
- fillColor: "#fff"
- }
- }], h)), $("#chart_plot_03").length && (console.log("Plot3"), $.plot($("#chart_plot_03"), [{
- label: "Registrations",
- data: e,
- lines: {
- fillColor: "rgba(150, 202, 89, 0.12)"
- },
- points: {
- fillColor: "#fff"
- }
- }], i))
+ $('#chart_plot_01').length &&
+ (console.log('Plot1'), $.plot($('#chart_plot_01'), [a, b], g)),
+ $('#chart_plot_02').length &&
+ (console.log('Plot2'),
+ $.plot(
+ $('#chart_plot_02'),
+ [
+ {
+ label: 'Email Sent',
+ data: d,
+ lines: {
+ fillColor: 'rgba(150, 202, 89, 0.12)',
+ },
+ points: {
+ fillColor: '#fff',
+ },
+ },
+ ],
+ h
+ )),
+ $('#chart_plot_03').length &&
+ (console.log('Plot3'),
+ $.plot(
+ $('#chart_plot_03'),
+ [
+ {
+ label: 'Registrations',
+ data: e,
+ lines: {
+ fillColor: 'rgba(150, 202, 89, 0.12)',
+ },
+ points: {
+ fillColor: '#fff',
+ },
+ },
+ ],
+ i
+ ));
}
}
/* flot - end */
function init_starrr() {
- "undefined" != typeof starrr && (console.log("init_starrr"), $(".stars").starrr(), $(".stars-existing").starrr({
- rating: 4
- }), $(".stars").on("starrr:change", function(a, b) {
- $(".stars-count").html(b)
- }), $(".stars-existing").on("starrr:change", function(a, b) {
- $(".stars-count-existing").html(b)
- }))
+ 'undefined' != typeof starrr &&
+ (console.log('init_starrr'),
+ $('.stars').starrr(),
+ $('.stars-existing').starrr({
+ rating: 4,
+ }),
+ $('.stars').on('starrr:change', function(a, b) {
+ $('.stars-count').html(b);
+ }),
+ $('.stars-existing').on('starrr:change', function(a, b) {
+ $('.stars-count-existing').html(b);
+ }));
}
function init_JQVmap() {
- "undefined" != typeof jQuery.fn.vectorMap && (console.log("init_JQVmap"), $("#world-map-gdp").length && $("#world-map-gdp").vectorMap({
- map: "world_en",
- backgroundColor: null,
- color: "#ffffff",
- hoverOpacity: .7,
- selectedColor: "#666666",
- enableZoom: !0,
- showTooltip: !0,
- values: sample_data,
- scaleColors: ["#E6F2F0", "#149B7E"],
- normalizeFunction: "polynomial"
- }), $("#usa_map").length && $("#usa_map").vectorMap({
- map: "usa_en",
- backgroundColor: null,
- color: "#ffffff",
- hoverOpacity: .7,
- selectedColor: "#666666",
- enableZoom: !0,
- showTooltip: !0,
- values: sample_data,
- scaleColors: ["#E6F2F0", "#149B7E"],
- normalizeFunction: "polynomial"
- }))
+ 'undefined' != typeof jQuery.fn.vectorMap &&
+ (console.log('init_JQVmap'),
+ $('#world-map-gdp').length &&
+ $('#world-map-gdp').vectorMap({
+ map: 'world_en',
+ backgroundColor: null,
+ color: '#ffffff',
+ hoverOpacity: 0.7,
+ selectedColor: '#666666',
+ enableZoom: !0,
+ showTooltip: !0,
+ values: sample_data,
+ scaleColors: ['#E6F2F0', '#149B7E'],
+ normalizeFunction: 'polynomial',
+ }),
+ $('#usa_map').length &&
+ $('#usa_map').vectorMap({
+ map: 'usa_en',
+ backgroundColor: null,
+ color: '#ffffff',
+ hoverOpacity: 0.7,
+ selectedColor: '#666666',
+ enableZoom: !0,
+ showTooltip: !0,
+ values: sample_data,
+ scaleColors: ['#E6F2F0', '#149B7E'],
+ normalizeFunction: 'polynomial',
+ }));
}
function init_skycons() {
- if ("undefined" != typeof Skycons) {
- console.log("init_skycons");
- var c, a = new Skycons({
- color: "#73879C"
+ if ('undefined' != typeof Skycons) {
+ console.log('init_skycons');
+ var c,
+ a = new Skycons({
+ color: '#73879C',
}),
- b = ["clear-day", "clear-night", "partly-cloudy-day", "partly-cloudy-night", "cloudy", "rain", "sleet", "snow", "wind", "fog"];
- for (c = b.length; c--;) a.set(b[c], b[c]);
- a.play()
+ b = [
+ 'clear-day',
+ 'clear-night',
+ 'partly-cloudy-day',
+ 'partly-cloudy-night',
+ 'cloudy',
+ 'rain',
+ 'sleet',
+ 'snow',
+ 'wind',
+ 'fog',
+ ];
+ for (c = b.length; c--; ) a.set(b[c], b[c]);
+ a.play();
}
}
function init_chart_doughnut() {
- if ("undefined" != typeof Chart && (console.log("init_chart_doughnut"), $(".canvasDoughnut").length)) {
+ if (
+ 'undefined' != typeof Chart &&
+ (console.log('init_chart_doughnut'), $('.canvasDoughnut').length)
+ ) {
var a = {
- type: "doughnut",
- tooltipFillColor: "rgba(51, 51, 51, 0.55)",
+ type: 'doughnut',
+ tooltipFillColor: 'rgba(51, 51, 51, 0.55)',
data: {
- labels: ["Symbian", "Blackberry", "Other", "Android", "IOS"],
- datasets: [{
- data: [15, 20, 30, 10, 30],
- backgroundColor: ["#BDC3C7", "#9B59B6", "#E74C3C", "#26B99A", "#3498DB"],
- hoverBackgroundColor: ["#CFD4D8", "#B370CF", "#E95E4F", "#36CAAB", "#49A9EA"]
- }]
+ labels: ['Symbian', 'Blackberry', 'Other', 'Android', 'IOS'],
+ datasets: [
+ {
+ data: [15, 20, 30, 10, 30],
+ backgroundColor: ['#BDC3C7', '#9B59B6', '#E74C3C', '#26B99A', '#3498DB'],
+ hoverBackgroundColor: [
+ '#CFD4D8',
+ '#B370CF',
+ '#E95E4F',
+ '#36CAAB',
+ '#49A9EA',
+ ],
+ },
+ ],
},
options: {
legend: !1,
- responsive: !1
- }
+ responsive: !1,
+ },
};
- $(".canvasDoughnut").each(function() {
+ $('.canvasDoughnut').each(function() {
var b = $(this);
- new Chart(b, a)
- })
+ new Chart(b, a);
+ });
}
}
function init_gauge() {
- if ("undefined" != typeof Gauge) {
- console.log("init_gauge [" + $(".gauge-chart").length + "]"), console.log("init_gauge");
+ if ('undefined' != typeof Gauge) {
+ console.log('init_gauge [' + $('.gauge-chart').length + ']'), console.log('init_gauge');
var a = {
lines: 12,
angle: 0,
- lineWidth: .4,
+ lineWidth: 0.4,
pointer: {
- length: .75,
- strokeWidth: .042,
- color: "#1D212A"
+ length: 0.75,
+ strokeWidth: 0.042,
+ color: '#1D212A',
},
- limitMax: "false",
- colorStart: "#1ABC9C",
- colorStop: "#1ABC9C",
- strokeColor: "#F0F3F3",
- generateGradient: !0
+ limitMax: 'false',
+ colorStart: '#1ABC9C',
+ colorStop: '#1ABC9C',
+ strokeColor: '#F0F3F3',
+ generateGradient: !0,
};
- if ($("#chart_gauge_01").length) var b = document.getElementById("chart_gauge_01"),
- c = new Gauge(b).setOptions(a);
- if ($("#gauge-text").length && (c.maxValue = 6e3, c.animationSpeed = 32, c.set(3200), c.setTextField(document.getElementById("gauge-text"))), $("#chart_gauge_02").length) var d = document.getElementById("chart_gauge_02"),
- e = new Gauge(d).setOptions(a);
- $("#gauge-text2").length && (e.maxValue = 9e3, e.animationSpeed = 32, e.set(2400), e.setTextField(document.getElementById("gauge-text2")))
+ if ($('#chart_gauge_01').length)
+ var b = document.getElementById('chart_gauge_01'),
+ c = new Gauge(b).setOptions(a);
+ if (
+ ($('#gauge-text').length &&
+ ((c.maxValue = 6e3),
+ (c.animationSpeed = 32),
+ c.set(3200),
+ c.setTextField(document.getElementById('gauge-text'))),
+ $('#chart_gauge_02').length)
+ )
+ var d = document.getElementById('chart_gauge_02'),
+ e = new Gauge(d).setOptions(a);
+ $('#gauge-text2').length &&
+ ((e.maxValue = 9e3),
+ (e.animationSpeed = 32),
+ e.set(2400),
+ e.setTextField(document.getElementById('gauge-text2')));
}
}
function init_sparklines() {
- "undefined" != typeof jQuery.fn.sparkline && (console.log("init_sparklines"), $(".sparkline_one").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 4, 5, 6, 3, 5, 4, 5, 4, 5, 4, 3, 4, 5, 6, 7, 5, 4, 3, 5, 6], {
- type: "bar",
- height: "125",
- barWidth: 13,
- colorMap: {
- 7: "#a1a1a1"
- },
- barSpacing: 2,
- barColor: "#26B99A"
- }), $(".sparkline_two").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 7, 5, 4, 3, 5, 6], {
- type: "bar",
- height: "40",
- barWidth: 9,
- colorMap: {
- 7: "#a1a1a1"
- },
- barSpacing: 2,
- barColor: "#26B99A"
- }), $(".sparkline_three").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 7, 5, 4, 3, 5, 6], {
- type: "line",
- width: "200",
- height: "40",
- lineColor: "#26B99A",
- fillColor: "rgba(223, 223, 223, 0.57)",
- lineWidth: 2,
- spotColor: "#26B99A",
- minSpotColor: "#26B99A"
- }), $(".sparkline11").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 6, 2, 4, 3, 4, 5, 4, 5, 4, 3], {
- type: "bar",
- height: "40",
- barWidth: 8,
- colorMap: {
- 7: "#a1a1a1"
- },
- barSpacing: 2,
- barColor: "#26B99A"
- }), $(".sparkline22").sparkline([2, 4, 3, 4, 7, 5, 4, 3, 5, 6, 2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 6], {
- type: "line",
- height: "40",
- width: "200",
- lineColor: "#26B99A",
- fillColor: "#ffffff",
- lineWidth: 3,
- spotColor: "#34495E",
- minSpotColor: "#34495E"
- }), $(".sparkline_bar").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 4, 5, 6, 3, 5], {
- type: "bar",
- colorMap: {
- 7: "#a1a1a1"
- },
- barColor: "#26B99A"
- }), $(".sparkline_area").sparkline([5, 6, 7, 9, 9, 5, 3, 2, 2, 4, 6, 7], {
- type: "line",
- lineColor: "#26B99A",
- fillColor: "#26B99A",
- spotColor: "#4578a0",
- minSpotColor: "#728fb2",
- maxSpotColor: "#6d93c4",
- highlightSpotColor: "#ef5179",
- highlightLineColor: "#8ba8bf",
- spotRadius: 2.5,
- width: 85
- }), $(".sparkline_line").sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 4, 5, 6, 3, 5], {
- type: "line",
- lineColor: "#26B99A",
- fillColor: "#ffffff",
- width: 85,
- spotColor: "#34495E",
- minSpotColor: "#34495E"
- }), $(".sparkline_pie").sparkline([1, 1, 2, 1], {
- type: "pie",
- sliceColors: ["#26B99A", "#ccc", "#75BCDD", "#D66DE2"]
- }), $(".sparkline_discreet").sparkline([4, 6, 7, 7, 4, 3, 2, 1, 4, 4, 2, 4, 3, 7, 8, 9, 7, 6, 4, 3], {
- type: "discrete",
- barWidth: 3,
- lineColor: "#26B99A",
- width: "85"
- }))
+ 'undefined' != typeof jQuery.fn.sparkline &&
+ (console.log('init_sparklines'),
+ $('.sparkline_one').sparkline(
+ [
+ 2,
+ 4,
+ 3,
+ 4,
+ 5,
+ 4,
+ 5,
+ 4,
+ 3,
+ 4,
+ 5,
+ 6,
+ 4,
+ 5,
+ 6,
+ 3,
+ 5,
+ 4,
+ 5,
+ 4,
+ 5,
+ 4,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 5,
+ 4,
+ 3,
+ 5,
+ 6,
+ ],
+ {
+ type: 'bar',
+ height: '125',
+ barWidth: 13,
+ colorMap: {
+ 7: '#a1a1a1',
+ },
+ barSpacing: 2,
+ barColor: '#26B99A',
+ }
+ ),
+ $('.sparkline_two').sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 7, 5, 4, 3, 5, 6], {
+ type: 'bar',
+ height: '40',
+ barWidth: 9,
+ colorMap: {
+ 7: '#a1a1a1',
+ },
+ barSpacing: 2,
+ barColor: '#26B99A',
+ }),
+ $('.sparkline_three').sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 7, 5, 4, 3, 5, 6], {
+ type: 'line',
+ width: '200',
+ height: '40',
+ lineColor: '#26B99A',
+ fillColor: 'rgba(223, 223, 223, 0.57)',
+ lineWidth: 2,
+ spotColor: '#26B99A',
+ minSpotColor: '#26B99A',
+ }),
+ $('.sparkline11').sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 6, 2, 4, 3, 4, 5, 4, 5, 4, 3], {
+ type: 'bar',
+ height: '40',
+ barWidth: 8,
+ colorMap: {
+ 7: '#a1a1a1',
+ },
+ barSpacing: 2,
+ barColor: '#26B99A',
+ }),
+ $('.sparkline22').sparkline(
+ [2, 4, 3, 4, 7, 5, 4, 3, 5, 6, 2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 6],
+ {
+ type: 'line',
+ height: '40',
+ width: '200',
+ lineColor: '#26B99A',
+ fillColor: '#ffffff',
+ lineWidth: 3,
+ spotColor: '#34495E',
+ minSpotColor: '#34495E',
+ }
+ ),
+ $('.sparkline_bar').sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 4, 5, 6, 3, 5], {
+ type: 'bar',
+ colorMap: {
+ 7: '#a1a1a1',
+ },
+ barColor: '#26B99A',
+ }),
+ $('.sparkline_area').sparkline([5, 6, 7, 9, 9, 5, 3, 2, 2, 4, 6, 7], {
+ type: 'line',
+ lineColor: '#26B99A',
+ fillColor: '#26B99A',
+ spotColor: '#4578a0',
+ minSpotColor: '#728fb2',
+ maxSpotColor: '#6d93c4',
+ highlightSpotColor: '#ef5179',
+ highlightLineColor: '#8ba8bf',
+ spotRadius: 2.5,
+ width: 85,
+ }),
+ $('.sparkline_line').sparkline([2, 4, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 4, 5, 6, 3, 5], {
+ type: 'line',
+ lineColor: '#26B99A',
+ fillColor: '#ffffff',
+ width: 85,
+ spotColor: '#34495E',
+ minSpotColor: '#34495E',
+ }),
+ $('.sparkline_pie').sparkline([1, 1, 2, 1], {
+ type: 'pie',
+ sliceColors: ['#26B99A', '#ccc', '#75BCDD', '#D66DE2'],
+ }),
+ $('.sparkline_discreet').sparkline(
+ [4, 6, 7, 7, 4, 3, 2, 1, 4, 4, 2, 4, 3, 7, 8, 9, 7, 6, 4, 3],
+ {
+ type: 'discrete',
+ barWidth: 3,
+ lineColor: '#26B99A',
+ width: '85',
+ }
+ ));
}
function init_autocomplete() {
- if ("undefined" != typeof autocomplete) {
- console.log("init_autocomplete");
+ if ('undefined' != typeof autocomplete) {
+ console.log('init_autocomplete');
var a = {
- AD: "Andorra",
- A2: "Andorra Test",
- AE: "United Arab Emirates",
- AF: "Afghanistan",
- AG: "Antigua and Barbuda",
- AI: "Anguilla",
- AL: "Albania",
- AM: "Armenia",
- AN: "Netherlands Antilles",
- AO: "Angola",
- AQ: "Antarctica",
- AR: "Argentina",
- AS: "American Samoa",
- AT: "Austria",
- AU: "Australia",
- AW: "Aruba",
- AX: "Åland Islands",
- AZ: "Azerbaijan",
- BA: "Bosnia and Herzegovina",
- BB: "Barbados",
- BD: "Bangladesh",
- BE: "Belgium",
- BF: "Burkina Faso",
- BG: "Bulgaria",
- BH: "Bahrain",
- BI: "Burundi",
- BJ: "Benin",
- BL: "Saint Barthélemy",
- BM: "Bermuda",
- BN: "Brunei",
- BO: "Bolivia",
- BQ: "British Antarctic Territory",
- BR: "Brazil",
- BS: "Bahamas",
- BT: "Bhutan",
- BV: "Bouvet Island",
- BW: "Botswana",
- BY: "Belarus",
- BZ: "Belize",
- CA: "Canada",
- CC: "Cocos [Keeling] Islands",
- CD: "Congo - Kinshasa",
- CF: "Central African Republic",
- CG: "Congo - Brazzaville",
- CH: "Switzerland",
- CI: "Côte d’Ivoire",
- CK: "Cook Islands",
- CL: "Chile",
- CM: "Cameroon",
- CN: "China",
- CO: "Colombia",
- CR: "Costa Rica",
- CS: "Serbia and Montenegro",
- CT: "Canton and Enderbury Islands",
- CU: "Cuba",
- CV: "Cape Verde",
- CX: "Christmas Island",
- CY: "Cyprus",
- CZ: "Czech Republic",
- DD: "East Germany",
- DE: "Germany",
- DJ: "Djibouti",
- DK: "Denmark",
- DM: "Dominica",
- DO: "Dominican Republic",
- DZ: "Algeria",
- EC: "Ecuador",
- EE: "Estonia",
- EG: "Egypt",
- EH: "Western Sahara",
- ER: "Eritrea",
- ES: "Spain",
- ET: "Ethiopia",
- FI: "Finland",
- FJ: "Fiji",
- FK: "Falkland Islands",
- FM: "Micronesia",
- FO: "Faroe Islands",
- FQ: "French Southern and Antarctic Territories",
- FR: "France",
- FX: "Metropolitan France",
- GA: "Gabon",
- GB: "United Kingdom",
- GD: "Grenada",
- GE: "Georgia",
- GF: "French Guiana",
- GG: "Guernsey",
- GH: "Ghana",
- GI: "Gibraltar",
- GL: "Greenland",
- GM: "Gambia",
- GN: "Guinea",
- GP: "Guadeloupe",
- GQ: "Equatorial Guinea",
- GR: "Greece",
- GS: "South Georgia and the South Sandwich Islands",
- GT: "Guatemala",
- GU: "Guam",
- GW: "Guinea-Bissau",
- GY: "Guyana",
- HK: "Hong Kong SAR China",
- HM: "Heard Island and McDonald Islands",
- HN: "Honduras",
- HR: "Croatia",
- HT: "Haiti",
- HU: "Hungary",
- ID: "Indonesia",
- IE: "Ireland",
- IL: "Israel",
- IM: "Isle of Man",
- IN: "India",
- IO: "British Indian Ocean Territory",
- IQ: "Iraq",
- IR: "Iran",
- IS: "Iceland",
- IT: "Italy",
- JE: "Jersey",
- JM: "Jamaica",
- JO: "Jordan",
- JP: "Japan",
- JT: "Johnston Island",
- KE: "Kenya",
- KG: "Kyrgyzstan",
- KH: "Cambodia",
- KI: "Kiribati",
- KM: "Comoros",
- KN: "Saint Kitts and Nevis",
- KP: "North Korea",
- KR: "South Korea",
- KW: "Kuwait",
- KY: "Cayman Islands",
- KZ: "Kazakhstan",
- LA: "Laos",
- LB: "Lebanon",
- LC: "Saint Lucia",
- LI: "Liechtenstein",
- LK: "Sri Lanka",
- LR: "Liberia",
- LS: "Lesotho",
- LT: "Lithuania",
- LU: "Luxembourg",
- LV: "Latvia",
- LY: "Libya",
- MA: "Morocco",
- MC: "Monaco",
- MD: "Moldova",
- ME: "Montenegro",
- MF: "Saint Martin",
- MG: "Madagascar",
- MH: "Marshall Islands",
- MI: "Midway Islands",
- MK: "Macedonia",
- ML: "Mali",
- MM: "Myanmar [Burma]",
- MN: "Mongolia",
- MO: "Macau SAR China",
- MP: "Northern Mariana Islands",
- MQ: "Martinique",
- MR: "Mauritania",
- MS: "Montserrat",
- MT: "Malta",
- MU: "Mauritius",
- MV: "Maldives",
- MW: "Malawi",
- MX: "Mexico",
- MY: "Malaysia",
- MZ: "Mozambique",
- NA: "Namibia",
- NC: "New Caledonia",
- NE: "Niger",
- NF: "Norfolk Island",
- NG: "Nigeria",
- NI: "Nicaragua",
- NL: "Netherlands",
- NO: "Norway",
- NP: "Nepal",
- NQ: "Dronning Maud Land",
- NR: "Nauru",
- NT: "Neutral Zone",
- NU: "Niue",
- NZ: "New Zealand",
- OM: "Oman",
- PA: "Panama",
- PC: "Pacific Islands Trust Territory",
- PE: "Peru",
- PF: "French Polynesia",
- PG: "Papua New Guinea",
- PH: "Philippines",
- PK: "Pakistan",
- PL: "Poland",
- PM: "Saint Pierre and Miquelon",
- PN: "Pitcairn Islands",
- PR: "Puerto Rico",
- PS: "Palestinian Territories",
- PT: "Portugal",
- PU: "U.S. Miscellaneous Pacific Islands",
- PW: "Palau",
- PY: "Paraguay",
- PZ: "Panama Canal Zone",
- QA: "Qatar",
- RE: "Réunion",
- RO: "Romania",
- RS: "Serbia",
- RU: "Russia",
- RW: "Rwanda",
- SA: "Saudi Arabia",
- SB: "Solomon Islands",
- SC: "Seychelles",
- SD: "Sudan",
- SE: "Sweden",
- SG: "Singapore",
- SH: "Saint Helena",
- SI: "Slovenia",
- SJ: "Svalbard and Jan Mayen",
- SK: "Slovakia",
- SL: "Sierra Leone",
- SM: "San Marino",
- SN: "Senegal",
- SO: "Somalia",
- SR: "Suriname",
- ST: "São Tomé and Príncipe",
- SU: "Union of Soviet Socialist Republics",
- SV: "El Salvador",
- SY: "Syria",
- SZ: "Swaziland",
- TC: "Turks and Caicos Islands",
- TD: "Chad",
- TF: "French Southern Territories",
- TG: "Togo",
- TH: "Thailand",
- TJ: "Tajikistan",
- TK: "Tokelau",
- TL: "Timor-Leste",
- TM: "Turkmenistan",
- TN: "Tunisia",
- TO: "Tonga",
- TR: "Turkey",
- TT: "Trinidad and Tobago",
- TV: "Tuvalu",
- TW: "Taiwan",
- TZ: "Tanzania",
- UA: "Ukraine",
- UG: "Uganda",
- UM: "U.S. Minor Outlying Islands",
- US: "United States",
- UY: "Uruguay",
- UZ: "Uzbekistan",
- VA: "Vatican City",
- VC: "Saint Vincent and the Grenadines",
- VD: "North Vietnam",
- VE: "Venezuela",
- VG: "British Virgin Islands",
- VI: "U.S. Virgin Islands",
- VN: "Vietnam",
- VU: "Vanuatu",
- WF: "Wallis and Futuna",
- WK: "Wake Island",
- WS: "Samoa",
+ AD: 'Andorra',
+ A2: 'Andorra Test',
+ AE: 'United Arab Emirates',
+ AF: 'Afghanistan',
+ AG: 'Antigua and Barbuda',
+ AI: 'Anguilla',
+ AL: 'Albania',
+ AM: 'Armenia',
+ AN: 'Netherlands Antilles',
+ AO: 'Angola',
+ AQ: 'Antarctica',
+ AR: 'Argentina',
+ AS: 'American Samoa',
+ AT: 'Austria',
+ AU: 'Australia',
+ AW: 'Aruba',
+ AX: 'Åland Islands',
+ AZ: 'Azerbaijan',
+ BA: 'Bosnia and Herzegovina',
+ BB: 'Barbados',
+ BD: 'Bangladesh',
+ BE: 'Belgium',
+ BF: 'Burkina Faso',
+ BG: 'Bulgaria',
+ BH: 'Bahrain',
+ BI: 'Burundi',
+ BJ: 'Benin',
+ BL: 'Saint Barthélemy',
+ BM: 'Bermuda',
+ BN: 'Brunei',
+ BO: 'Bolivia',
+ BQ: 'British Antarctic Territory',
+ BR: 'Brazil',
+ BS: 'Bahamas',
+ BT: 'Bhutan',
+ BV: 'Bouvet Island',
+ BW: 'Botswana',
+ BY: 'Belarus',
+ BZ: 'Belize',
+ CA: 'Canada',
+ CC: 'Cocos [Keeling] Islands',
+ CD: 'Congo - Kinshasa',
+ CF: 'Central African Republic',
+ CG: 'Congo - Brazzaville',
+ CH: 'Switzerland',
+ CI: 'Côte d’Ivoire',
+ CK: 'Cook Islands',
+ CL: 'Chile',
+ CM: 'Cameroon',
+ CN: 'China',
+ CO: 'Colombia',
+ CR: 'Costa Rica',
+ CS: 'Serbia and Montenegro',
+ CT: 'Canton and Enderbury Islands',
+ CU: 'Cuba',
+ CV: 'Cape Verde',
+ CX: 'Christmas Island',
+ CY: 'Cyprus',
+ CZ: 'Czech Republic',
+ DD: 'East Germany',
+ DE: 'Germany',
+ DJ: 'Djibouti',
+ DK: 'Denmark',
+ DM: 'Dominica',
+ DO: 'Dominican Republic',
+ DZ: 'Algeria',
+ EC: 'Ecuador',
+ EE: 'Estonia',
+ EG: 'Egypt',
+ EH: 'Western Sahara',
+ ER: 'Eritrea',
+ ES: 'Spain',
+ ET: 'Ethiopia',
+ FI: 'Finland',
+ FJ: 'Fiji',
+ FK: 'Falkland Islands',
+ FM: 'Micronesia',
+ FO: 'Faroe Islands',
+ FQ: 'French Southern and Antarctic Territories',
+ FR: 'France',
+ FX: 'Metropolitan France',
+ GA: 'Gabon',
+ GB: 'United Kingdom',
+ GD: 'Grenada',
+ GE: 'Georgia',
+ GF: 'French Guiana',
+ GG: 'Guernsey',
+ GH: 'Ghana',
+ GI: 'Gibraltar',
+ GL: 'Greenland',
+ GM: 'Gambia',
+ GN: 'Guinea',
+ GP: 'Guadeloupe',
+ GQ: 'Equatorial Guinea',
+ GR: 'Greece',
+ GS: 'South Georgia and the South Sandwich Islands',
+ GT: 'Guatemala',
+ GU: 'Guam',
+ GW: 'Guinea-Bissau',
+ GY: 'Guyana',
+ HK: 'Hong Kong SAR China',
+ HM: 'Heard Island and McDonald Islands',
+ HN: 'Honduras',
+ HR: 'Croatia',
+ HT: 'Haiti',
+ HU: 'Hungary',
+ ID: 'Indonesia',
+ IE: 'Ireland',
+ IL: 'Israel',
+ IM: 'Isle of Man',
+ IN: 'India',
+ IO: 'British Indian Ocean Territory',
+ IQ: 'Iraq',
+ IR: 'Iran',
+ IS: 'Iceland',
+ IT: 'Italy',
+ JE: 'Jersey',
+ JM: 'Jamaica',
+ JO: 'Jordan',
+ JP: 'Japan',
+ JT: 'Johnston Island',
+ KE: 'Kenya',
+ KG: 'Kyrgyzstan',
+ KH: 'Cambodia',
+ KI: 'Kiribati',
+ KM: 'Comoros',
+ KN: 'Saint Kitts and Nevis',
+ KP: 'North Korea',
+ KR: 'South Korea',
+ KW: 'Kuwait',
+ KY: 'Cayman Islands',
+ KZ: 'Kazakhstan',
+ LA: 'Laos',
+ LB: 'Lebanon',
+ LC: 'Saint Lucia',
+ LI: 'Liechtenstein',
+ LK: 'Sri Lanka',
+ LR: 'Liberia',
+ LS: 'Lesotho',
+ LT: 'Lithuania',
+ LU: 'Luxembourg',
+ LV: 'Latvia',
+ LY: 'Libya',
+ MA: 'Morocco',
+ MC: 'Monaco',
+ MD: 'Moldova',
+ ME: 'Montenegro',
+ MF: 'Saint Martin',
+ MG: 'Madagascar',
+ MH: 'Marshall Islands',
+ MI: 'Midway Islands',
+ MK: 'Macedonia',
+ ML: 'Mali',
+ MM: 'Myanmar [Burma]',
+ MN: 'Mongolia',
+ MO: 'Macau SAR China',
+ MP: 'Northern Mariana Islands',
+ MQ: 'Martinique',
+ MR: 'Mauritania',
+ MS: 'Montserrat',
+ MT: 'Malta',
+ MU: 'Mauritius',
+ MV: 'Maldives',
+ MW: 'Malawi',
+ MX: 'Mexico',
+ MY: 'Malaysia',
+ MZ: 'Mozambique',
+ NA: 'Namibia',
+ NC: 'New Caledonia',
+ NE: 'Niger',
+ NF: 'Norfolk Island',
+ NG: 'Nigeria',
+ NI: 'Nicaragua',
+ NL: 'Netherlands',
+ NO: 'Norway',
+ NP: 'Nepal',
+ NQ: 'Dronning Maud Land',
+ NR: 'Nauru',
+ NT: 'Neutral Zone',
+ NU: 'Niue',
+ NZ: 'New Zealand',
+ OM: 'Oman',
+ PA: 'Panama',
+ PC: 'Pacific Islands Trust Territory',
+ PE: 'Peru',
+ PF: 'French Polynesia',
+ PG: 'Papua New Guinea',
+ PH: 'Philippines',
+ PK: 'Pakistan',
+ PL: 'Poland',
+ PM: 'Saint Pierre and Miquelon',
+ PN: 'Pitcairn Islands',
+ PR: 'Puerto Rico',
+ PS: 'Palestinian Territories',
+ PT: 'Portugal',
+ PU: 'U.S. Miscellaneous Pacific Islands',
+ PW: 'Palau',
+ PY: 'Paraguay',
+ PZ: 'Panama Canal Zone',
+ QA: 'Qatar',
+ RE: 'Réunion',
+ RO: 'Romania',
+ RS: 'Serbia',
+ RU: 'Russia',
+ RW: 'Rwanda',
+ SA: 'Saudi Arabia',
+ SB: 'Solomon Islands',
+ SC: 'Seychelles',
+ SD: 'Sudan',
+ SE: 'Sweden',
+ SG: 'Singapore',
+ SH: 'Saint Helena',
+ SI: 'Slovenia',
+ SJ: 'Svalbard and Jan Mayen',
+ SK: 'Slovakia',
+ SL: 'Sierra Leone',
+ SM: 'San Marino',
+ SN: 'Senegal',
+ SO: 'Somalia',
+ SR: 'Suriname',
+ ST: 'São Tomé and Príncipe',
+ SU: 'Union of Soviet Socialist Republics',
+ SV: 'El Salvador',
+ SY: 'Syria',
+ SZ: 'Swaziland',
+ TC: 'Turks and Caicos Islands',
+ TD: 'Chad',
+ TF: 'French Southern Territories',
+ TG: 'Togo',
+ TH: 'Thailand',
+ TJ: 'Tajikistan',
+ TK: 'Tokelau',
+ TL: 'Timor-Leste',
+ TM: 'Turkmenistan',
+ TN: 'Tunisia',
+ TO: 'Tonga',
+ TR: 'Turkey',
+ TT: 'Trinidad and Tobago',
+ TV: 'Tuvalu',
+ TW: 'Taiwan',
+ TZ: 'Tanzania',
+ UA: 'Ukraine',
+ UG: 'Uganda',
+ UM: 'U.S. Minor Outlying Islands',
+ US: 'United States',
+ UY: 'Uruguay',
+ UZ: 'Uzbekistan',
+ VA: 'Vatican City',
+ VC: 'Saint Vincent and the Grenadines',
+ VD: 'North Vietnam',
+ VE: 'Venezuela',
+ VG: 'British Virgin Islands',
+ VI: 'U.S. Virgin Islands',
+ VN: 'Vietnam',
+ VU: 'Vanuatu',
+ WF: 'Wallis and Futuna',
+ WK: 'Wake Island',
+ WS: 'Samoa',
YD: "People's Democratic Republic of Yemen",
- YE: "Yemen",
- YT: "Mayotte",
- ZA: "South Africa",
- ZM: "Zambia",
- ZW: "Zimbabwe",
- ZZ: "Unknown or Invalid Region"
+ YE: 'Yemen',
+ YT: 'Mayotte',
+ ZA: 'South Africa',
+ ZM: 'Zambia',
+ ZW: 'Zimbabwe',
+ ZZ: 'Unknown or Invalid Region',
},
b = $.map(a, function(a, b) {
return {
value: a,
- data: b
- }
+ data: b,
+ };
});
- $("#autocomplete-custom-append").autocomplete({
- lookup: b
- })
+ $('#autocomplete-custom-append').autocomplete({
+ lookup: b,
+ });
}
}
function init_autosize() {
- "undefined" != typeof $.fn.autosize && autosize($(".resizable_textarea"))
+ 'undefined' != typeof $.fn.autosize && autosize($('.resizable_textarea'));
}
function init_parsley() {
- if ("undefined" != typeof parsley) {
- console.log("init_parsley"), $("parsley:field:validate", function() {
- a()
- }), $("#demo-form .btn").on("click", function() {
- $("#demo-form").parsley().validate(), a()
- });
+ if ('undefined' != typeof parsley) {
+ console.log('init_parsley'),
+ $('parsley:field:validate', function() {
+ a();
+ }),
+ $('#demo-form .btn').on('click', function() {
+ $('#demo-form')
+ .parsley()
+ .validate(),
+ a();
+ });
var a = function() {
- !0 === $("#demo-form").parsley().isValid() ? ($(".bs-callout-info").removeClass("hidden"), $(".bs-callout-warning").addClass("hidden")) : ($(".bs-callout-info").addClass("hidden"), $(".bs-callout-warning").removeClass("hidden"))
+ !0 ===
+ $('#demo-form')
+ .parsley()
+ .isValid()
+ ? ($('.bs-callout-info').removeClass('hidden'),
+ $('.bs-callout-warning').addClass('hidden'))
+ : ($('.bs-callout-info').addClass('hidden'),
+ $('.bs-callout-warning').removeClass('hidden'));
};
- $("parsley:field:validate", function() {
- a()
- }), $("#demo-form2 .btn").on("click", function() {
- $("#demo-form2").parsley().validate(), a()
- });
+ $('parsley:field:validate', function() {
+ a();
+ }),
+ $('#demo-form2 .btn').on('click', function() {
+ $('#demo-form2')
+ .parsley()
+ .validate(),
+ a();
+ });
var a = function() {
- !0 === $("#demo-form2").parsley().isValid() ? ($(".bs-callout-info").removeClass("hidden"), $(".bs-callout-warning").addClass("hidden")) : ($(".bs-callout-info").addClass("hidden"), $(".bs-callout-warning").removeClass("hidden"))
+ !0 ===
+ $('#demo-form2')
+ .parsley()
+ .isValid()
+ ? ($('.bs-callout-info').removeClass('hidden'),
+ $('.bs-callout-warning').addClass('hidden'))
+ : ($('.bs-callout-info').addClass('hidden'),
+ $('.bs-callout-warning').removeClass('hidden'));
};
try {
- hljs.initHighlightingOnLoad()
+ hljs.initHighlightingOnLoad();
} catch (a) {}
}
}
function onAddTag(a) {
- alert("Added a tag: " + a)
+ alert('Added a tag: ' + a);
}
function onRemoveTag(a) {
- alert("Removed a tag: " + a)
+ alert('Removed a tag: ' + a);
}
function onChangeTag(a, b) {
- alert("Changed a tag: " + b)
+ alert('Changed a tag: ' + b);
}
function init_TagsInput() {
- "undefined" != typeof $.fn.tagsInput && $("#tags_1").tagsInput({
- width: "auto"
- })
+ 'undefined' != typeof $.fn.tagsInput &&
+ $('#tags_1').tagsInput({
+ width: 'auto',
+ });
}
function init_select2() {
- "undefined" != typeof select2 && (console.log("init_toolbox"), $(".select2_single").select2({
- placeholder: "Select a state",
- allowClear: !0
- }), $(".select2_group").select2({}), $(".select2_multiple").select2({
- maximumSelectionLength: 4,
- placeholder: "With Max Selection limit 4",
- allowClear: !0
- }))
+ 'undefined' != typeof select2 &&
+ (console.log('init_toolbox'),
+ $('.select2_single').select2({
+ placeholder: 'Select a state',
+ allowClear: !0,
+ }),
+ $('.select2_group').select2({}),
+ $('.select2_multiple').select2({
+ maximumSelectionLength: 4,
+ placeholder: 'With Max Selection limit 4',
+ allowClear: !0,
+ }));
}
function init_wysiwyg() {
function b(a, b) {
- var c = "";
- "unsupported-file-type" === a ? c = "Unsupported format " + b : console.log("error uploading file", a, b), $(' × File upload error ' + c + "
").prependTo("#alerts")
+ var c = '';
+ 'unsupported-file-type' === a
+ ? (c = 'Unsupported format ' + b)
+ : console.log('error uploading file', a, b),
+ $(
+ ' × File upload error ' +
+ c +
+ '
'
+ ).prependTo('#alerts');
}
- "undefined" != typeof $.fn.wysiwyg && (console.log("init_wysiwyg"), $(".editor-wrapper").each(function() {
- var a = $(this).attr("id");
- $(this).wysiwyg({
- toolbarSelector: '[data-target="#' + a + '"]',
- fileUploadError: b
- })
- }), window.prettyPrint, prettyPrint())
+ 'undefined' != typeof $.fn.wysiwyg &&
+ (console.log('init_wysiwyg'),
+ $('.editor-wrapper').each(function() {
+ var a = $(this).attr('id');
+ $(this).wysiwyg({
+ toolbarSelector: '[data-target="#' + a + '"]',
+ fileUploadError: b,
+ });
+ }),
+ window.prettyPrint,
+ prettyPrint());
}
function init_cropper() {
- if ("undefined" != typeof $.fn.cropper) {
- console.log("init_cropper");
- var a = $("#image"),
- b = $("#download"),
- c = $("#dataX"),
- d = $("#dataY"),
- e = $("#dataHeight"),
- f = $("#dataWidth"),
- g = $("#dataRotate"),
- h = $("#dataScaleX"),
- i = $("#dataScaleY"),
+ if ('undefined' != typeof $.fn.cropper) {
+ console.log('init_cropper');
+ var a = $('#image'),
+ b = $('#download'),
+ c = $('#dataX'),
+ d = $('#dataY'),
+ e = $('#dataHeight'),
+ f = $('#dataWidth'),
+ g = $('#dataRotate'),
+ h = $('#dataScaleX'),
+ i = $('#dataScaleY'),
j = {
aspectRatio: 16 / 9,
- preview: ".img-preview",
+ preview: '.img-preview',
crop: function(a) {
- c.val(Math.round(a.x)), d.val(Math.round(a.y)), e.val(Math.round(a.height)), f.val(Math.round(a.width)), g.val(a.rotate), h.val(a.scaleX), i.val(a.scaleY)
- }
+ c.val(Math.round(a.x)),
+ d.val(Math.round(a.y)),
+ e.val(Math.round(a.height)),
+ f.val(Math.round(a.width)),
+ g.val(a.rotate),
+ h.val(a.scaleX),
+ i.val(a.scaleY);
+ },
};
- $('[data-toggle="tooltip"]').tooltip(), a.on({
- "build.cropper": function(a) {
- console.log(a.type)
- },
- "built.cropper": function(a) {
- console.log(a.type)
- },
- "cropstart.cropper": function(a) {
- console.log(a.type, a.action)
- },
- "cropmove.cropper": function(a) {
- console.log(a.type, a.action)
- },
- "cropend.cropper": function(a) {
- console.log(a.type, a.action)
- },
- "crop.cropper": function(a) {
- console.log(a.type, a.x, a.y, a.width, a.height, a.rotate, a.scaleX, a.scaleY)
- },
- "zoom.cropper": function(a) {
- console.log(a.type, a.ratio)
- }
- }).cropper(j), $.isFunction(document.createElement("canvas").getContext) || $('button[data-method="getCroppedCanvas"]').prop("disabled", !0), "undefined" == typeof document.createElement("cropper").style.transition && ($('button[data-method="rotate"]').prop("disabled", !0), $('button[data-method="scale"]').prop("disabled", !0)), "undefined" == typeof b[0].download && b.addClass("disabled"), $(".docs-toggles").on("change", "input", function() {
- var e, f, b = $(this),
- c = b.attr("name"),
- d = b.prop("type");
- a.data("cropper") && ("checkbox" === d ? (j[c] = b.prop("checked"), e = a.cropper("getCropBoxData"), f = a.cropper("getCanvasData"), j.built = function() {
- a.cropper("setCropBoxData", e), a.cropper("setCanvasData", f)
- }) : "radio" === d && (j[c] = b.val()), a.cropper("destroy").cropper(j))
- }), $(".docs-buttons").on("click", "[data-method]", function() {
- var e, f, c = $(this),
- d = c.data();
- if (!c.prop("disabled") && !c.hasClass("disabled") && a.data("cropper") && d.method) {
- if (d = $.extend({}, d), "undefined" != typeof d.target && (e = $(d.target), "undefined" == typeof d.option)) try {
- d.option = JSON.parse(e.val())
- } catch (a) {
- console.log(a.message)
+ $('[data-toggle="tooltip"]').tooltip(),
+ a
+ .on({
+ 'build.cropper': function(a) {
+ console.log(a.type);
+ },
+ 'built.cropper': function(a) {
+ console.log(a.type);
+ },
+ 'cropstart.cropper': function(a) {
+ console.log(a.type, a.action);
+ },
+ 'cropmove.cropper': function(a) {
+ console.log(a.type, a.action);
+ },
+ 'cropend.cropper': function(a) {
+ console.log(a.type, a.action);
+ },
+ 'crop.cropper': function(a) {
+ console.log(
+ a.type,
+ a.x,
+ a.y,
+ a.width,
+ a.height,
+ a.rotate,
+ a.scaleX,
+ a.scaleY
+ );
+ },
+ 'zoom.cropper': function(a) {
+ console.log(a.type, a.ratio);
+ },
+ })
+ .cropper(j),
+ $.isFunction(document.createElement('canvas').getContext) ||
+ $('button[data-method="getCroppedCanvas"]').prop('disabled', !0),
+ 'undefined' == typeof document.createElement('cropper').style.transition &&
+ ($('button[data-method="rotate"]').prop('disabled', !0),
+ $('button[data-method="scale"]').prop('disabled', !0)),
+ 'undefined' == typeof b[0].download && b.addClass('disabled'),
+ $('.docs-toggles').on('change', 'input', function() {
+ var e,
+ f,
+ b = $(this),
+ c = b.attr('name'),
+ d = b.prop('type');
+ a.data('cropper') &&
+ ('checkbox' === d
+ ? ((j[c] = b.prop('checked')),
+ (e = a.cropper('getCropBoxData')),
+ (f = a.cropper('getCanvasData')),
+ (j.built = function() {
+ a.cropper('setCropBoxData', e), a.cropper('setCanvasData', f);
+ }))
+ : 'radio' === d && (j[c] = b.val()),
+ a.cropper('destroy').cropper(j));
+ }),
+ $('.docs-buttons').on('click', '[data-method]', function() {
+ var e,
+ f,
+ c = $(this),
+ d = c.data();
+ if (
+ !c.prop('disabled') &&
+ !c.hasClass('disabled') &&
+ a.data('cropper') &&
+ d.method
+ ) {
+ if (
+ ((d = $.extend({}, d)),
+ 'undefined' != typeof d.target &&
+ ((e = $(d.target)), 'undefined' == typeof d.option))
+ )
+ try {
+ d.option = JSON.parse(e.val());
+ } catch (a) {
+ console.log(a.message);
+ }
+ switch (((f = a.cropper(d.method, d.option, d.secondOption)), d.method)) {
+ case 'scaleX':
+ case 'scaleY':
+ $(this).data('option', -d.option);
+ break;
+ case 'getCroppedCanvas':
+ f &&
+ ($('#getCroppedCanvasModal')
+ .modal()
+ .find('.modal-body')
+ .html(f),
+ b.hasClass('disabled') || b.attr('href', f.toDataURL()));
+ }
+ if ($.isPlainObject(f) && e)
+ try {
+ e.val(JSON.stringify(f));
+ } catch (a) {
+ console.log(a.message);
+ }
}
- switch (f = a.cropper(d.method, d.option, d.secondOption), d.method) {
- case "scaleX":
- case "scaleY":
- $(this).data("option", -d.option);
- break;
- case "getCroppedCanvas":
- f && ($("#getCroppedCanvasModal").modal().find(".modal-body").html(f), b.hasClass("disabled") || b.attr("href", f.toDataURL()))
- }
- if ($.isPlainObject(f) && e) try {
- e.val(JSON.stringify(f))
- } catch (a) {
- console.log(a.message)
- }
- }
- }), $(document.body).on("keydown", function(b) {
- if (a.data("cropper") && !(this.scrollTop > 300)) switch (b.which) {
- case 37:
- b.preventDefault(), a.cropper("move", -1, 0);
- break;
- case 38:
- b.preventDefault(), a.cropper("move", 0, -1);
- break;
- case 39:
- b.preventDefault(), a.cropper("move", 1, 0);
- break;
- case 40:
- b.preventDefault(), a.cropper("move", 0, 1)
- }
- });
- var m, k = $("#inputImage"),
+ }),
+ $(document.body).on('keydown', function(b) {
+ if (a.data('cropper') && !(this.scrollTop > 300))
+ switch (b.which) {
+ case 37:
+ b.preventDefault(), a.cropper('move', -1, 0);
+ break;
+ case 38:
+ b.preventDefault(), a.cropper('move', 0, -1);
+ break;
+ case 39:
+ b.preventDefault(), a.cropper('move', 1, 0);
+ break;
+ case 40:
+ b.preventDefault(), a.cropper('move', 0, 1);
+ }
+ });
+ var m,
+ k = $('#inputImage'),
l = window.URL || window.webkitURL;
- l ? k.change(function() {
- var c, b = this.files;
- a.data("cropper") && b && b.length && (c = b[0], /^image\/\w+$/.test(c.type) ? (m = l.createObjectURL(c), a.one("built.cropper", function() {
- l.revokeObjectURL(m)
- }).cropper("reset").cropper("replace", m), k.val("")) : window.alert("Please choose an image file."))
- }) : k.prop("disabled", !0).parent().addClass("disabled")
+ l
+ ? k.change(function() {
+ var c,
+ b = this.files;
+ a.data('cropper') &&
+ b &&
+ b.length &&
+ ((c = b[0]),
+ /^image\/\w+$/.test(c.type)
+ ? ((m = l.createObjectURL(c)),
+ a
+ .one('built.cropper', function() {
+ l.revokeObjectURL(m);
+ })
+ .cropper('reset')
+ .cropper('replace', m),
+ k.val(''))
+ : window.alert('Please choose an image file.'));
+ })
+ : k
+ .prop('disabled', !0)
+ .parent()
+ .addClass('disabled');
}
}
function init_knob() {
- if ("undefined" != typeof $.fn.knob) {
- console.log("init_knob"), $(".knob").knob({
- change: function(a) {},
- release: function(a) {
- console.log("release : " + a)
- },
- cancel: function() {
- console.log("cancel : ", this)
- },
- draw: function() {
- if ("tron" == this.$.data("skin")) {
- this.cursorExt = .3;
- var b, a = this.arc(this.cv),
- c = 1;
- return this.g.lineWidth = this.lineWidth, this.o.displayPrevious && (b = this.arc(this.v), this.g.beginPath(), this.g.strokeStyle = this.pColor, this.g.arc(this.xy, this.xy, this.radius - this.lineWidth, b.s, b.e, b.d), this.g.stroke()), this.g.beginPath(), this.g.strokeStyle = c ? this.o.fgColor : this.fgColor, this.g.arc(this.xy, this.xy, this.radius - this.lineWidth, a.s, a.e, a.d), this.g.stroke(), this.g.lineWidth = 2, this.g.beginPath(), this.g.strokeStyle = this.o.fgColor, this.g.arc(this.xy, this.xy, this.radius - this.lineWidth + 1 + 2 * this.lineWidth / 3, 0, 2 * Math.PI, !1), this.g.stroke(), !1
- }
- }
- });
- var a, b = 0,
+ if ('undefined' != typeof $.fn.knob) {
+ console.log('init_knob'),
+ $('.knob').knob({
+ change: function(a) {},
+ release: function(a) {
+ console.log('release : ' + a);
+ },
+ cancel: function() {
+ console.log('cancel : ', this);
+ },
+ draw: function() {
+ if ('tron' == this.$.data('skin')) {
+ this.cursorExt = 0.3;
+ var b,
+ a = this.arc(this.cv),
+ c = 1;
+ return (
+ (this.g.lineWidth = this.lineWidth),
+ this.o.displayPrevious &&
+ ((b = this.arc(this.v)),
+ this.g.beginPath(),
+ (this.g.strokeStyle = this.pColor),
+ this.g.arc(
+ this.xy,
+ this.xy,
+ this.radius - this.lineWidth,
+ b.s,
+ b.e,
+ b.d
+ ),
+ this.g.stroke()),
+ this.g.beginPath(),
+ (this.g.strokeStyle = c ? this.o.fgColor : this.fgColor),
+ this.g.arc(
+ this.xy,
+ this.xy,
+ this.radius - this.lineWidth,
+ a.s,
+ a.e,
+ a.d
+ ),
+ this.g.stroke(),
+ (this.g.lineWidth = 2),
+ this.g.beginPath(),
+ (this.g.strokeStyle = this.o.fgColor),
+ this.g.arc(
+ this.xy,
+ this.xy,
+ this.radius - this.lineWidth + 1 + (2 * this.lineWidth) / 3,
+ 0,
+ 2 * Math.PI,
+ !1
+ ),
+ this.g.stroke(),
+ !1
+ );
+ }
+ },
+ });
+ var a,
+ b = 0,
c = 0,
d = 0,
- e = $("div.idir"),
- f = $("div.ival"),
+ e = $('div.idir'),
+ f = $('div.ival'),
g = function() {
- d++, e.show().html("+").fadeOut(), f.html(d)
+ d++,
+ e
+ .show()
+ .html('+')
+ .fadeOut(),
+ f.html(d);
},
h = function() {
- d--, e.show().html("-").fadeOut(), f.html(d)
+ d--,
+ e
+ .show()
+ .html('-')
+ .fadeOut(),
+ f.html(d);
};
- $("input.infinite").knob({
+ $('input.infinite').knob({
min: 0,
max: 20,
stopper: !1,
change: function() {
- a > this.cv ? b ? (h(), b = 0) : (b = 1, c = 0) : a < this.cv && (c ? (g(), c = 0) : (c = 1, b = 0)), a = this.cv
- }
- })
+ a > this.cv
+ ? b
+ ? (h(), (b = 0))
+ : ((b = 1), (c = 0))
+ : a < this.cv && (c ? (g(), (c = 0)) : ((c = 1), (b = 0))),
+ (a = this.cv);
+ },
+ });
}
}
function init_InputMask() {
- "undefined" != typeof $.fn.inputmask && (console.log("init_InputMask"), $(":input").inputmask())
+ 'undefined' != typeof $.fn.inputmask &&
+ (console.log('init_InputMask'), $(':input').inputmask());
}
function init_ColorPicker() {
- "undefined" != typeof $.fn.colorpicker && (console.log("init_ColorPicker"), $(".demo1").colorpicker(), $(".demo2").colorpicker(), $("#demo_forceformat").colorpicker({
- format: "rgba",
- horizontal: !0
- }), $("#demo_forceformat3").colorpicker({
- format: "rgba"
- }), $(".demo-auto").colorpicker())
+ 'undefined' != typeof $.fn.colorpicker &&
+ (console.log('init_ColorPicker'),
+ $('.demo1').colorpicker(),
+ $('.demo2').colorpicker(),
+ $('#demo_forceformat').colorpicker({
+ format: 'rgba',
+ horizontal: !0,
+ }),
+ $('#demo_forceformat3').colorpicker({
+ format: 'rgba',
+ }),
+ $('.demo-auto').colorpicker());
}
function init_IonRangeSlider() {
- "undefined" != typeof $.fn.ionRangeSlider && (console.log("init_IonRangeSlider"), $("#range_27").ionRangeSlider({
- type: "double",
- min: 1e6,
- max: 2e6,
- grid: !0,
- force_edges: !0
- }), $("#range").ionRangeSlider({
- hide_min_max: !0,
- keyboard: !0,
- min: 0,
- max: 5e3,
- from: 1e3,
- to: 4e3,
- type: "double",
- step: 1,
- prefix: "$",
- grid: !0
- }), $("#range_25").ionRangeSlider({
- type: "double",
- min: 1e6,
- max: 2e6,
- grid: !0
- }), $("#range_26").ionRangeSlider({
- type: "double",
- min: 0,
- max: 1e4,
- step: 500,
- grid: !0,
- grid_snap: !0
- }), $("#range_31").ionRangeSlider({
- type: "double",
- min: 0,
- max: 100,
- from: 30,
- to: 70,
- from_fixed: !0
- }), $(".range_min_max").ionRangeSlider({
- type: "double",
- min: 0,
- max: 100,
- from: 30,
- to: 70,
- max_interval: 50
- }), $(".range_time24").ionRangeSlider({
- min: +moment().subtract(12, "hours").format("X"),
- max: +moment().format("X"),
- from: +moment().subtract(6, "hours").format("X"),
- grid: !0,
- force_edges: !0,
- prettify: function(a) {
- var b = moment(a, "X");
- return b.format("Do MMMM, HH:mm")
- }
- }))
+ 'undefined' != typeof $.fn.ionRangeSlider &&
+ (console.log('init_IonRangeSlider'),
+ $('#range_27').ionRangeSlider({
+ type: 'double',
+ min: 1e6,
+ max: 2e6,
+ grid: !0,
+ force_edges: !0,
+ }),
+ $('#range').ionRangeSlider({
+ hide_min_max: !0,
+ keyboard: !0,
+ min: 0,
+ max: 5e3,
+ from: 1e3,
+ to: 4e3,
+ type: 'double',
+ step: 1,
+ prefix: '$',
+ grid: !0,
+ }),
+ $('#range_25').ionRangeSlider({
+ type: 'double',
+ min: 1e6,
+ max: 2e6,
+ grid: !0,
+ }),
+ $('#range_26').ionRangeSlider({
+ type: 'double',
+ min: 0,
+ max: 1e4,
+ step: 500,
+ grid: !0,
+ grid_snap: !0,
+ }),
+ $('#range_31').ionRangeSlider({
+ type: 'double',
+ min: 0,
+ max: 100,
+ from: 30,
+ to: 70,
+ from_fixed: !0,
+ }),
+ $('.range_min_max').ionRangeSlider({
+ type: 'double',
+ min: 0,
+ max: 100,
+ from: 30,
+ to: 70,
+ max_interval: 50,
+ }),
+ $('.range_time24').ionRangeSlider({
+ min: +moment()
+ .subtract(12, 'hours')
+ .format('X'),
+ max: +moment().format('X'),
+ from: +moment()
+ .subtract(6, 'hours')
+ .format('X'),
+ grid: !0,
+ force_edges: !0,
+ prettify: function(a) {
+ var b = moment(a, 'X');
+ return b.format('Do MMMM, HH:mm');
+ },
+ }));
}
function init_daterangepicker() {
- if ("undefined" != typeof $.fn.daterangepicker) {
- console.log("init_daterangepicker");
+ if ('undefined' != typeof $.fn.daterangepicker) {
+ console.log('init_daterangepicker');
var a = function(a, b, c) {
- console.log(a.toISOString(), b.toISOString(), c), $("#reportrange span").html(a.format("MMMM D, YYYY") + " - " + b.format("MMMM D, YYYY"))
+ console.log(a.toISOString(), b.toISOString(), c),
+ $('#reportrange span').html(
+ a.format('MMMM D, YYYY') + ' - ' + b.format('MMMM D, YYYY')
+ );
},
b = {
- startDate: moment().subtract(29, "days"),
+ startDate: moment().subtract(29, 'days'),
endDate: moment(),
- minDate: "01/01/2012",
- maxDate: "12/31/2015",
+ minDate: '01/01/2012',
+ maxDate: '12/31/2015',
dateLimit: {
- days: 60
+ days: 60,
},
showDropdowns: !0,
showWeekNumbers: !0,
@@ -1116,60 +1464,108 @@ function init_daterangepicker() {
timePicker12Hour: !0,
ranges: {
Today: [moment(), moment()],
- Yesterday: [moment().subtract(1, "days"), moment().subtract(1, "days")],
- "Last 7 Days": [moment().subtract(6, "days"), moment()],
- "Last 30 Days": [moment().subtract(29, "days"), moment()],
- "This Month": [moment().startOf("month"), moment().endOf("month")],
- "Last Month": [moment().subtract(1, "month").startOf("month"), moment().subtract(1, "month").endOf("month")]
+ Yesterday: [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
+ 'Last 7 Days': [moment().subtract(6, 'days'), moment()],
+ 'Last 30 Days': [moment().subtract(29, 'days'), moment()],
+ 'This Month': [moment().startOf('month'), moment().endOf('month')],
+ 'Last Month': [
+ moment()
+ .subtract(1, 'month')
+ .startOf('month'),
+ moment()
+ .subtract(1, 'month')
+ .endOf('month'),
+ ],
},
- opens: "left",
- buttonClasses: ["btn btn-default"],
- applyClass: "btn-small btn-primary",
- cancelClass: "btn-small",
- format: "MM/DD/YYYY",
- separator: " to ",
+ opens: 'left',
+ buttonClasses: ['btn btn-default'],
+ applyClass: 'btn-small btn-primary',
+ cancelClass: 'btn-small',
+ format: 'MM/DD/YYYY',
+ separator: ' to ',
locale: {
- applyLabel: "Submit",
- cancelLabel: "Clear",
- fromLabel: "From",
- toLabel: "To",
- customRangeLabel: "Custom",
- daysOfWeek: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"],
- monthNames: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
- firstDay: 1
- }
+ applyLabel: 'Submit',
+ cancelLabel: 'Clear',
+ fromLabel: 'From',
+ toLabel: 'To',
+ customRangeLabel: 'Custom',
+ daysOfWeek: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
+ monthNames: [
+ 'January',
+ 'February',
+ 'March',
+ 'April',
+ 'May',
+ 'June',
+ 'July',
+ 'August',
+ 'September',
+ 'October',
+ 'November',
+ 'December',
+ ],
+ firstDay: 1,
+ },
};
- $("#reportrange span").html(moment().subtract(29, "days").format("MMMM D, YYYY") + " - " + moment().format("MMMM D, YYYY")), $("#reportrange").daterangepicker(b, a), $("#reportrange").on("show.daterangepicker", function() {
- console.log("show event fired")
- }), $("#reportrange").on("hide.daterangepicker", function() {
- console.log("hide event fired")
- }), $("#reportrange").on("apply.daterangepicker", function(a, b) {
- console.log("apply event fired, start/end dates are " + b.startDate.format("MMMM D, YYYY") + " to " + b.endDate.format("MMMM D, YYYY"))
- }), $("#reportrange").on("cancel.daterangepicker", function(a, b) {
- console.log("cancel event fired")
- }), $("#options1").click(function() {
- $("#reportrange").data("daterangepicker").setOptions(b, a)
- }), $("#options2").click(function() {
- $("#reportrange").data("daterangepicker").setOptions(optionSet2, a)
- }), $("#destroy").click(function() {
- $("#reportrange").data("daterangepicker").remove()
- })
+ $('#reportrange span').html(
+ moment()
+ .subtract(29, 'days')
+ .format('MMMM D, YYYY') +
+ ' - ' +
+ moment().format('MMMM D, YYYY')
+ ),
+ $('#reportrange').daterangepicker(b, a),
+ $('#reportrange').on('show.daterangepicker', function() {
+ console.log('show event fired');
+ }),
+ $('#reportrange').on('hide.daterangepicker', function() {
+ console.log('hide event fired');
+ }),
+ $('#reportrange').on('apply.daterangepicker', function(a, b) {
+ console.log(
+ 'apply event fired, start/end dates are ' +
+ b.startDate.format('MMMM D, YYYY') +
+ ' to ' +
+ b.endDate.format('MMMM D, YYYY')
+ );
+ }),
+ $('#reportrange').on('cancel.daterangepicker', function(a, b) {
+ console.log('cancel event fired');
+ }),
+ $('#options1').click(function() {
+ $('#reportrange')
+ .data('daterangepicker')
+ .setOptions(b, a);
+ }),
+ $('#options2').click(function() {
+ $('#reportrange')
+ .data('daterangepicker')
+ .setOptions(optionSet2, a);
+ }),
+ $('#destroy').click(function() {
+ $('#reportrange')
+ .data('daterangepicker')
+ .remove();
+ });
}
}
function init_daterangepicker_right() {
- if ("undefined" != typeof $.fn.daterangepicker) {
- console.log("init_daterangepicker_right");
+ if ('undefined' != typeof $.fn.daterangepicker) {
+ console.log('init_daterangepicker_right');
var a = function(a, b, c) {
- console.log(a.toISOString(), b.toISOString(), c), $("#reportrange_right span").html(a.format("MMMM D, YYYY") + " - " + b.format("MMMM D, YYYY"))
+ console.log(a.toISOString(), b.toISOString(), c),
+ $('#reportrange_right span').html(
+ a.format('MMMM D, YYYY') + ' - ' + b.format('MMMM D, YYYY')
+ );
},
b = {
- startDate: moment().subtract(29, "days"),
+ startDate: moment().subtract(29, 'days'),
endDate: moment(),
- minDate: "01/01/2012",
- maxDate: "12/31/2020",
+ minDate: '01/01/2012',
+ maxDate: '12/31/2020',
dateLimit: {
- days: 60
+ days: 60,
},
showDropdowns: !0,
showWeekNumbers: !0,
@@ -1178,966 +1574,1314 @@ function init_daterangepicker_right() {
timePicker12Hour: !0,
ranges: {
Today: [moment(), moment()],
- Yesterday: [moment().subtract(1, "days"), moment().subtract(1, "days")],
- "Last 7 Days": [moment().subtract(6, "days"), moment()],
- "Last 30 Days": [moment().subtract(29, "days"), moment()],
- "This Month": [moment().startOf("month"), moment().endOf("month")],
- "Last Month": [moment().subtract(1, "month").startOf("month"), moment().subtract(1, "month").endOf("month")]
+ Yesterday: [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
+ 'Last 7 Days': [moment().subtract(6, 'days'), moment()],
+ 'Last 30 Days': [moment().subtract(29, 'days'), moment()],
+ 'This Month': [moment().startOf('month'), moment().endOf('month')],
+ 'Last Month': [
+ moment()
+ .subtract(1, 'month')
+ .startOf('month'),
+ moment()
+ .subtract(1, 'month')
+ .endOf('month'),
+ ],
},
- opens: "right",
- buttonClasses: ["btn btn-default"],
- applyClass: "btn-small btn-primary",
- cancelClass: "btn-small",
- format: "MM/DD/YYYY",
- separator: " to ",
+ opens: 'right',
+ buttonClasses: ['btn btn-default'],
+ applyClass: 'btn-small btn-primary',
+ cancelClass: 'btn-small',
+ format: 'MM/DD/YYYY',
+ separator: ' to ',
locale: {
- applyLabel: "Submit",
- cancelLabel: "Clear",
- fromLabel: "From",
- toLabel: "To",
- customRangeLabel: "Custom",
- daysOfWeek: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"],
- monthNames: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
- firstDay: 1
- }
+ applyLabel: 'Submit',
+ cancelLabel: 'Clear',
+ fromLabel: 'From',
+ toLabel: 'To',
+ customRangeLabel: 'Custom',
+ daysOfWeek: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
+ monthNames: [
+ 'January',
+ 'February',
+ 'March',
+ 'April',
+ 'May',
+ 'June',
+ 'July',
+ 'August',
+ 'September',
+ 'October',
+ 'November',
+ 'December',
+ ],
+ firstDay: 1,
+ },
};
- $("#reportrange_right span").html(moment().subtract(29, "days").format("MMMM D, YYYY") + " - " + moment().format("MMMM D, YYYY")), $("#reportrange_right").daterangepicker(b, a), $("#reportrange_right").on("show.daterangepicker", function() {
- console.log("show event fired")
- }), $("#reportrange_right").on("hide.daterangepicker", function() {
- console.log("hide event fired")
- }), $("#reportrange_right").on("apply.daterangepicker", function(a, b) {
- console.log("apply event fired, start/end dates are " + b.startDate.format("MMMM D, YYYY") + " to " + b.endDate.format("MMMM D, YYYY"))
- }), $("#reportrange_right").on("cancel.daterangepicker", function(a, b) {
- console.log("cancel event fired")
- }), $("#options1").click(function() {
- $("#reportrange_right").data("daterangepicker").setOptions(b, a)
- }), $("#options2").click(function() {
- $("#reportrange_right").data("daterangepicker").setOptions(optionSet2, a)
- }), $("#destroy").click(function() {
- $("#reportrange_right").data("daterangepicker").remove()
- })
+ $('#reportrange_right span').html(
+ moment()
+ .subtract(29, 'days')
+ .format('MMMM D, YYYY') +
+ ' - ' +
+ moment().format('MMMM D, YYYY')
+ ),
+ $('#reportrange_right').daterangepicker(b, a),
+ $('#reportrange_right').on('show.daterangepicker', function() {
+ console.log('show event fired');
+ }),
+ $('#reportrange_right').on('hide.daterangepicker', function() {
+ console.log('hide event fired');
+ }),
+ $('#reportrange_right').on('apply.daterangepicker', function(a, b) {
+ console.log(
+ 'apply event fired, start/end dates are ' +
+ b.startDate.format('MMMM D, YYYY') +
+ ' to ' +
+ b.endDate.format('MMMM D, YYYY')
+ );
+ }),
+ $('#reportrange_right').on('cancel.daterangepicker', function(a, b) {
+ console.log('cancel event fired');
+ }),
+ $('#options1').click(function() {
+ $('#reportrange_right')
+ .data('daterangepicker')
+ .setOptions(b, a);
+ }),
+ $('#options2').click(function() {
+ $('#reportrange_right')
+ .data('daterangepicker')
+ .setOptions(optionSet2, a);
+ }),
+ $('#destroy').click(function() {
+ $('#reportrange_right')
+ .data('daterangepicker')
+ .remove();
+ });
}
}
function init_daterangepicker_single_call() {
- "undefined" != typeof $.fn.daterangepicker && (console.log("init_daterangepicker_single_call"), $("#single_cal1").daterangepicker({
- singleDatePicker: !0,
- singleClasses: "picker_1"
- }, function(a, b, c) {
- console.log(a.toISOString(), b.toISOString(), c)
- }), $("#single_cal2").daterangepicker({
- singleDatePicker: !0,
- singleClasses: "picker_2"
- }, function(a, b, c) {
- console.log(a.toISOString(), b.toISOString(), c)
- }), $("#single_cal3").daterangepicker({
- singleDatePicker: !0,
- singleClasses: "picker_3"
- }, function(a, b, c) {
- console.log(a.toISOString(), b.toISOString(), c)
- }), $("#single_cal4").daterangepicker({
- singleDatePicker: !0,
- singleClasses: "picker_4"
- }, function(a, b, c) {
- console.log(a.toISOString(), b.toISOString(), c)
- }))
+ 'undefined' != typeof $.fn.daterangepicker &&
+ (console.log('init_daterangepicker_single_call'),
+ $('#single_cal1').daterangepicker(
+ {
+ singleDatePicker: !0,
+ singleClasses: 'picker_1',
+ },
+ function(a, b, c) {
+ console.log(a.toISOString(), b.toISOString(), c);
+ }
+ ),
+ $('#single_cal2').daterangepicker(
+ {
+ singleDatePicker: !0,
+ singleClasses: 'picker_2',
+ },
+ function(a, b, c) {
+ console.log(a.toISOString(), b.toISOString(), c);
+ }
+ ),
+ $('#single_cal3').daterangepicker(
+ {
+ singleDatePicker: !0,
+ singleClasses: 'picker_3',
+ },
+ function(a, b, c) {
+ console.log(a.toISOString(), b.toISOString(), c);
+ }
+ ),
+ $('#single_cal4').daterangepicker(
+ {
+ singleDatePicker: !0,
+ singleClasses: 'picker_4',
+ },
+ function(a, b, c) {
+ console.log(a.toISOString(), b.toISOString(), c);
+ }
+ ));
}
function init_daterangepicker_reservation() {
- "undefined" != typeof $.fn.daterangepicker && (console.log("init_daterangepicker_reservation"), $("#reservation").daterangepicker(null, function(a, b, c) {
- console.log(a.toISOString(), b.toISOString(), c)
- }), $("#reservation-time").daterangepicker({
- timePicker: !0,
- timePickerIncrement: 30,
- locale: {
- format: "MM/DD/YYYY h:mm A"
- }
- }))
+ 'undefined' != typeof $.fn.daterangepicker &&
+ (console.log('init_daterangepicker_reservation'),
+ $('#reservation').daterangepicker(null, function(a, b, c) {
+ console.log(a.toISOString(), b.toISOString(), c);
+ }),
+ $('#reservation-time').daterangepicker({
+ timePicker: !0,
+ timePickerIncrement: 30,
+ locale: {
+ format: 'MM/DD/YYYY h:mm A',
+ },
+ }));
}
function init_SmartWizard() {
- "undefined" != typeof $.fn.smartWizard && (console.log("init_SmartWizard"), $("#wizard").smartWizard(), $("#wizard_verticle").smartWizard({
- transitionEffect: "slide"
- }), $(".buttonNext").addClass("btn btn-success"), $(".buttonPrevious").addClass("btn btn-primary"), $(".buttonFinish").addClass("btn btn-default"))
+ 'undefined' != typeof $.fn.smartWizard &&
+ (console.log('init_SmartWizard'),
+ $('#wizard').smartWizard(),
+ $('#wizard_verticle').smartWizard({
+ transitionEffect: 'slide',
+ }),
+ $('.buttonNext').addClass('btn btn-success'),
+ $('.buttonPrevious').addClass('btn btn-primary'),
+ $('.buttonFinish').addClass('btn btn-default'));
}
function init_validator() {
- "undefined" != typeof validator && (console.log("init_validator"), validator.message.date = "not a real date", $("form").on("blur", "input[required], input.optional, select.required", validator.checkField).on("change", "select.required", validator.checkField).on("keypress", "input[required][pattern]", validator.keypress), $(".multi.required").on("keyup blur", "input", function() {
- validator.checkField.apply($(this).siblings().last()[0])
- }), $("form").submit(function(a) {
- a.preventDefault();
- var b = !0;
- return validator.checkAll($(this)) || (b = !1), b && this.submit(), !1
- }))
+ 'undefined' != typeof validator &&
+ (console.log('init_validator'),
+ (validator.message.date = 'not a real date'),
+ $('form')
+ .on('blur', 'input[required], input.optional, select.required', validator.checkField)
+ .on('change', 'select.required', validator.checkField)
+ .on('keypress', 'input[required][pattern]', validator.keypress),
+ $('.multi.required').on('keyup blur', 'input', function() {
+ validator.checkField.apply(
+ $(this)
+ .siblings()
+ .last()[0]
+ );
+ }),
+ $('form').submit(function(a) {
+ a.preventDefault();
+ var b = !0;
+ return validator.checkAll($(this)) || (b = !1), b && this.submit(), !1;
+ }));
}
function init_PNotify() {
- "undefined" != typeof PNotify && (console.log("init_PNotify"), new PNotify({
- title: "PNotify",
- type: "info",
- text: "Welcome. Try hovering over me. You can click things behind me, because I'm non-blocking.",
- nonblock: {
- nonblock: !0
- },
- addclass: "dark",
- styling: "bootstrap3",
- hide: !1,
- before_close: function(a) {
- return a.update({
- title: a.options.title + " - Enjoy your Stay",
- before_close: null
- }), a.queueRemove(), !1
- }
- }))
+ 'undefined' != typeof PNotify &&
+ (console.log('init_PNotify'),
+ new PNotify({
+ title: 'PNotify',
+ type: 'info',
+ text:
+ "Welcome. Try hovering over me. You can click things behind me, because I'm non-blocking.",
+ nonblock: {
+ nonblock: !0,
+ },
+ addclass: 'dark',
+ styling: 'bootstrap3',
+ hide: !1,
+ before_close: function(a) {
+ return (
+ a.update({
+ title: a.options.title + ' - Enjoy your Stay',
+ before_close: null,
+ }),
+ a.queueRemove(),
+ !1
+ );
+ },
+ }));
}
function init_CustomNotification() {
- if (console.log("run_customtabs"), "undefined" != typeof CustomTabs) {
- console.log("init_CustomTabs");
+ if ((console.log('run_customtabs'), 'undefined' != typeof CustomTabs)) {
+ console.log('init_CustomTabs');
var a = 10;
- TabbedNotification = function(b) {
- var c = " " + b.title + "" + b.text + "
";
- document.getElementById("custom_notifications") ? ($("#custom_notifications ul.notifications").append(" "), $("#custom_notifications #notif-group").append(c), a++, CustomTabs(b)) : alert("doesnt exists")
- }, CustomTabs = function(a) {
- $(".tabbed_notifications > div").hide(), $(".tabbed_notifications > div:first-of-type").show(), $("#custom_notifications").removeClass("dsp_none"), $(".notifications a").click(function(a) {
- a.preventDefault();
- var b = $(this),
- c = "#" + b.parents(".notifications").data("tabbed_notifications"),
- d = b.closest("li").siblings().children("a"),
- e = b.attr("href");
- d.removeClass("active"), b.addClass("active"), $(c).children("div").hide(), $(e).show()
- })
- }, CustomTabs();
- var b = idname = "";
- $(document).on("click", ".notification_close", function(a) {
- idname = $(this).parent().parent().attr("id"), b = idname.substr(-2), $("#ntf" + b).remove(), $("#ntlink" + b).parent().remove(), $(".notifications a").first().addClass("active"), $("#notif-group div").first().css("display", "block")
- })
+ (TabbedNotification = function(b) {
+ var c =
+ " " +
+ b.title +
+ "" +
+ b.text +
+ '
';
+ document.getElementById('custom_notifications')
+ ? ($('#custom_notifications ul.notifications').append(
+ " "
+ ),
+ $('#custom_notifications #notif-group').append(c),
+ a++,
+ CustomTabs(b))
+ : alert('doesnt exists');
+ }),
+ (CustomTabs = function(a) {
+ $('.tabbed_notifications > div').hide(),
+ $('.tabbed_notifications > div:first-of-type').show(),
+ $('#custom_notifications').removeClass('dsp_none'),
+ $('.notifications a').click(function(a) {
+ a.preventDefault();
+ var b = $(this),
+ c = '#' + b.parents('.notifications').data('tabbed_notifications'),
+ d = b
+ .closest('li')
+ .siblings()
+ .children('a'),
+ e = b.attr('href');
+ d.removeClass('active'),
+ b.addClass('active'),
+ $(c)
+ .children('div')
+ .hide(),
+ $(e).show();
+ });
+ }),
+ CustomTabs();
+ var b = (idname = '');
+ $(document).on('click', '.notification_close', function(a) {
+ (idname = $(this)
+ .parent()
+ .parent()
+ .attr('id')),
+ (b = idname.substr(-2)),
+ $('#ntf' + b).remove(),
+ $('#ntlink' + b)
+ .parent()
+ .remove(),
+ $('.notifications a')
+ .first()
+ .addClass('active'),
+ $('#notif-group div')
+ .first()
+ .css('display', 'block');
+ });
}
}
function init_EasyPieChart() {
- if ("undefined" != typeof $.fn.easyPieChart) {
- console.log("init_EasyPieChart"), $(".chart").easyPieChart({
- easing: "easeOutElastic",
- delay: 3e3,
- barColor: "#26B99A",
- trackColor: "#fff",
- scaleColor: !1,
- lineWidth: 20,
- trackWidth: 16,
- lineCap: "butt",
- onStep: function(a, b, c) {
- $(this.el).find(".percent").text(Math.round(c))
- }
- });
- var a = window.chart = $(".chart").data("easyPieChart");
- $(".js_update").on("click", function() {
- a.update(200 * Math.random() - 100)
+ if ('undefined' != typeof $.fn.easyPieChart) {
+ console.log('init_EasyPieChart'),
+ $('.chart').easyPieChart({
+ easing: 'easeOutElastic',
+ delay: 3e3,
+ barColor: '#26B99A',
+ trackColor: '#fff',
+ scaleColor: !1,
+ lineWidth: 20,
+ trackWidth: 16,
+ lineCap: 'butt',
+ onStep: function(a, b, c) {
+ $(this.el)
+ .find('.percent')
+ .text(Math.round(c));
+ },
+ });
+ var a = (window.chart = $('.chart').data('easyPieChart'));
+ $('.js_update').on('click', function() {
+ a.update(200 * Math.random() - 100);
});
var b = $.fn.popover.Constructor.prototype.leave;
- $.fn.popover.Constructor.prototype.leave = function(a) {
- var d, e, c = a instanceof this.constructor ? a : $(a.currentTarget)[this.type](this.getDelegateOptions()).data("bs." + this.type);
- b.call(this, a), a.currentTarget && (d = $(a.currentTarget).siblings(".popover"), e = c.timeout, d.one("mouseenter", function() {
- clearTimeout(e), d.one("mouseleave", function() {
- $.fn.popover.Constructor.prototype.leave.call(c, c)
- })
- }))
- }, $("body").popover({
- selector: "[data-popover]",
- trigger: "click hover",
- delay: {
- show: 50,
- hide: 400
- }
- })
+ ($.fn.popover.Constructor.prototype.leave = function(a) {
+ var d,
+ e,
+ c =
+ a instanceof this.constructor
+ ? a
+ : $(a.currentTarget)
+ [this.type](this.getDelegateOptions())
+ .data('bs.' + this.type);
+ b.call(this, a),
+ a.currentTarget &&
+ ((d = $(a.currentTarget).siblings('.popover')),
+ (e = c.timeout),
+ d.one('mouseenter', function() {
+ clearTimeout(e),
+ d.one('mouseleave', function() {
+ $.fn.popover.Constructor.prototype.leave.call(c, c);
+ });
+ }));
+ }),
+ $('body').popover({
+ selector: '[data-popover]',
+ trigger: 'click hover',
+ delay: {
+ show: 50,
+ hide: 400,
+ },
+ });
}
}
function init_charts() {
- if (console.log("run_charts typeof [" + typeof Chart + "]"), "undefined" != typeof Chart) {
- if (console.log("init_charts"), Chart.defaults.global.legend = {
- enabled: !1
- }, $("#canvas_line").length) {
- new Chart(document.getElementById("canvas_line"), {
- type: "line",
+ if ((console.log('run_charts typeof [' + typeof Chart + ']'), 'undefined' != typeof Chart)) {
+ if (
+ (console.log('init_charts'),
+ (Chart.defaults.global.legend = {
+ enabled: !1,
+ }),
+ $('#canvas_line').length)
+ ) {
+ new Chart(document.getElementById('canvas_line'), {
+ type: 'line',
data: {
- labels: ["January", "February", "March", "April", "May", "June", "July"],
- datasets: [{
- label: "My First dataset",
- backgroundColor: "rgba(38, 185, 154, 0.31)",
- borderColor: "rgba(38, 185, 154, 0.7)",
- pointBorderColor: "rgba(38, 185, 154, 0.7)",
- pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(220,220,220,1)",
- pointBorderWidth: 1,
- data: [31, 74, 6, 39, 20, 85, 7]
- }, {
- label: "My Second dataset",
- backgroundColor: "rgba(3, 88, 106, 0.3)",
- borderColor: "rgba(3, 88, 106, 0.70)",
- pointBorderColor: "rgba(3, 88, 106, 0.70)",
- pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(151,187,205,1)",
- pointBorderWidth: 1,
- data: [82, 23, 66, 9, 99, 4, 2]
- }]
- }
- })
+ labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
+ datasets: [
+ {
+ label: 'My First dataset',
+ backgroundColor: 'rgba(38, 185, 154, 0.31)',
+ borderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBorderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBackgroundColor: 'rgba(38, 185, 154, 0.7)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(220,220,220,1)',
+ pointBorderWidth: 1,
+ data: [31, 74, 6, 39, 20, 85, 7],
+ },
+ {
+ label: 'My Second dataset',
+ backgroundColor: 'rgba(3, 88, 106, 0.3)',
+ borderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBorderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBackgroundColor: 'rgba(3, 88, 106, 0.70)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(151,187,205,1)',
+ pointBorderWidth: 1,
+ data: [82, 23, 66, 9, 99, 4, 2],
+ },
+ ],
+ },
+ });
}
- if ($("#canvas_line1").length) {
- new Chart(document.getElementById("canvas_line1"), {
- type: "line",
+ if ($('#canvas_line1').length) {
+ new Chart(document.getElementById('canvas_line1'), {
+ type: 'line',
data: {
- labels: ["January", "February", "March", "April", "May", "June", "July"],
- datasets: [{
- label: "My First dataset",
- backgroundColor: "rgba(38, 185, 154, 0.31)",
- borderColor: "rgba(38, 185, 154, 0.7)",
- pointBorderColor: "rgba(38, 185, 154, 0.7)",
- pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(220,220,220,1)",
- pointBorderWidth: 1,
- data: [31, 74, 6, 39, 20, 85, 7]
- }, {
- label: "My Second dataset",
- backgroundColor: "rgba(3, 88, 106, 0.3)",
- borderColor: "rgba(3, 88, 106, 0.70)",
- pointBorderColor: "rgba(3, 88, 106, 0.70)",
- pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(151,187,205,1)",
- pointBorderWidth: 1,
- data: [82, 23, 66, 9, 99, 4, 2]
- }]
- }
- })
+ labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
+ datasets: [
+ {
+ label: 'My First dataset',
+ backgroundColor: 'rgba(38, 185, 154, 0.31)',
+ borderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBorderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBackgroundColor: 'rgba(38, 185, 154, 0.7)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(220,220,220,1)',
+ pointBorderWidth: 1,
+ data: [31, 74, 6, 39, 20, 85, 7],
+ },
+ {
+ label: 'My Second dataset',
+ backgroundColor: 'rgba(3, 88, 106, 0.3)',
+ borderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBorderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBackgroundColor: 'rgba(3, 88, 106, 0.70)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(151,187,205,1)',
+ pointBorderWidth: 1,
+ data: [82, 23, 66, 9, 99, 4, 2],
+ },
+ ],
+ },
+ });
}
- if ($("#canvas_line2").length) {
- new Chart(document.getElementById("canvas_line2"), {
- type: "line",
+ if ($('#canvas_line2').length) {
+ new Chart(document.getElementById('canvas_line2'), {
+ type: 'line',
data: {
- labels: ["January", "February", "March", "April", "May", "June", "July"],
- datasets: [{
- label: "My First dataset",
- backgroundColor: "rgba(38, 185, 154, 0.31)",
- borderColor: "rgba(38, 185, 154, 0.7)",
- pointBorderColor: "rgba(38, 185, 154, 0.7)",
- pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(220,220,220,1)",
- pointBorderWidth: 1,
- data: [31, 74, 6, 39, 20, 85, 7]
- }, {
- label: "My Second dataset",
- backgroundColor: "rgba(3, 88, 106, 0.3)",
- borderColor: "rgba(3, 88, 106, 0.70)",
- pointBorderColor: "rgba(3, 88, 106, 0.70)",
- pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(151,187,205,1)",
- pointBorderWidth: 1,
- data: [82, 23, 66, 9, 99, 4, 2]
- }]
- }
- })
+ labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
+ datasets: [
+ {
+ label: 'My First dataset',
+ backgroundColor: 'rgba(38, 185, 154, 0.31)',
+ borderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBorderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBackgroundColor: 'rgba(38, 185, 154, 0.7)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(220,220,220,1)',
+ pointBorderWidth: 1,
+ data: [31, 74, 6, 39, 20, 85, 7],
+ },
+ {
+ label: 'My Second dataset',
+ backgroundColor: 'rgba(3, 88, 106, 0.3)',
+ borderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBorderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBackgroundColor: 'rgba(3, 88, 106, 0.70)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(151,187,205,1)',
+ pointBorderWidth: 1,
+ data: [82, 23, 66, 9, 99, 4, 2],
+ },
+ ],
+ },
+ });
}
- if ($("#canvas_line3").length) {
- new Chart(document.getElementById("canvas_line3"), {
- type: "line",
+ if ($('#canvas_line3').length) {
+ new Chart(document.getElementById('canvas_line3'), {
+ type: 'line',
data: {
- labels: ["January", "February", "March", "April", "May", "June", "July"],
- datasets: [{
- label: "My First dataset",
- backgroundColor: "rgba(38, 185, 154, 0.31)",
- borderColor: "rgba(38, 185, 154, 0.7)",
- pointBorderColor: "rgba(38, 185, 154, 0.7)",
- pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(220,220,220,1)",
- pointBorderWidth: 1,
- data: [31, 74, 6, 39, 20, 85, 7]
- }, {
- label: "My Second dataset",
- backgroundColor: "rgba(3, 88, 106, 0.3)",
- borderColor: "rgba(3, 88, 106, 0.70)",
- pointBorderColor: "rgba(3, 88, 106, 0.70)",
- pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(151,187,205,1)",
- pointBorderWidth: 1,
- data: [82, 23, 66, 9, 99, 4, 2]
- }]
- }
- })
+ labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
+ datasets: [
+ {
+ label: 'My First dataset',
+ backgroundColor: 'rgba(38, 185, 154, 0.31)',
+ borderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBorderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBackgroundColor: 'rgba(38, 185, 154, 0.7)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(220,220,220,1)',
+ pointBorderWidth: 1,
+ data: [31, 74, 6, 39, 20, 85, 7],
+ },
+ {
+ label: 'My Second dataset',
+ backgroundColor: 'rgba(3, 88, 106, 0.3)',
+ borderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBorderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBackgroundColor: 'rgba(3, 88, 106, 0.70)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(151,187,205,1)',
+ pointBorderWidth: 1,
+ data: [82, 23, 66, 9, 99, 4, 2],
+ },
+ ],
+ },
+ });
}
- if ($("#canvas_line4").length) {
- new Chart(document.getElementById("canvas_line4"), {
- type: "line",
+ if ($('#canvas_line4').length) {
+ new Chart(document.getElementById('canvas_line4'), {
+ type: 'line',
data: {
- labels: ["January", "February", "March", "April", "May", "June", "July"],
- datasets: [{
- label: "My First dataset",
- backgroundColor: "rgba(38, 185, 154, 0.31)",
- borderColor: "rgba(38, 185, 154, 0.7)",
- pointBorderColor: "rgba(38, 185, 154, 0.7)",
- pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(220,220,220,1)",
- pointBorderWidth: 1,
- data: [31, 74, 6, 39, 20, 85, 7]
- }, {
- label: "My Second dataset",
- backgroundColor: "rgba(3, 88, 106, 0.3)",
- borderColor: "rgba(3, 88, 106, 0.70)",
- pointBorderColor: "rgba(3, 88, 106, 0.70)",
- pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(151,187,205,1)",
- pointBorderWidth: 1,
- data: [82, 23, 66, 9, 99, 4, 2]
- }]
- }
- })
+ labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
+ datasets: [
+ {
+ label: 'My First dataset',
+ backgroundColor: 'rgba(38, 185, 154, 0.31)',
+ borderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBorderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBackgroundColor: 'rgba(38, 185, 154, 0.7)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(220,220,220,1)',
+ pointBorderWidth: 1,
+ data: [31, 74, 6, 39, 20, 85, 7],
+ },
+ {
+ label: 'My Second dataset',
+ backgroundColor: 'rgba(3, 88, 106, 0.3)',
+ borderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBorderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBackgroundColor: 'rgba(3, 88, 106, 0.70)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(151,187,205,1)',
+ pointBorderWidth: 1,
+ data: [82, 23, 66, 9, 99, 4, 2],
+ },
+ ],
+ },
+ });
}
- if ($("#lineChart").length) {
- var f = document.getElementById("lineChart");
+ if ($('#lineChart').length) {
+ var f = document.getElementById('lineChart');
new Chart(f, {
- type: "line",
+ type: 'line',
data: {
- labels: ["January", "February", "March", "April", "May", "June", "July"],
- datasets: [{
- label: "My First dataset",
- backgroundColor: "rgba(38, 185, 154, 0.31)",
- borderColor: "rgba(38, 185, 154, 0.7)",
- pointBorderColor: "rgba(38, 185, 154, 0.7)",
- pointBackgroundColor: "rgba(38, 185, 154, 0.7)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(220,220,220,1)",
- pointBorderWidth: 1,
- data: [31, 74, 6, 39, 20, 85, 7]
- }, {
- label: "My Second dataset",
- backgroundColor: "rgba(3, 88, 106, 0.3)",
- borderColor: "rgba(3, 88, 106, 0.70)",
- pointBorderColor: "rgba(3, 88, 106, 0.70)",
- pointBackgroundColor: "rgba(3, 88, 106, 0.70)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(151,187,205,1)",
- pointBorderWidth: 1,
- data: [82, 23, 66, 9, 99, 4, 2]
- }]
- }
- })
+ labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
+ datasets: [
+ {
+ label: 'My First dataset',
+ backgroundColor: 'rgba(38, 185, 154, 0.31)',
+ borderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBorderColor: 'rgba(38, 185, 154, 0.7)',
+ pointBackgroundColor: 'rgba(38, 185, 154, 0.7)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(220,220,220,1)',
+ pointBorderWidth: 1,
+ data: [31, 74, 6, 39, 20, 85, 7],
+ },
+ {
+ label: 'My Second dataset',
+ backgroundColor: 'rgba(3, 88, 106, 0.3)',
+ borderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBorderColor: 'rgba(3, 88, 106, 0.70)',
+ pointBackgroundColor: 'rgba(3, 88, 106, 0.70)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(151,187,205,1)',
+ pointBorderWidth: 1,
+ data: [82, 23, 66, 9, 99, 4, 2],
+ },
+ ],
+ },
+ });
}
- if ($("#mybarChart").length) {
- var f = document.getElementById("mybarChart");
+ if ($('#mybarChart').length) {
+ var f = document.getElementById('mybarChart');
new Chart(f, {
- type: "bar",
+ type: 'bar',
data: {
- labels: ["January", "February", "March", "April", "May", "June", "July"],
- datasets: [{
- label: "# of Votes",
- backgroundColor: "#26B99A",
- data: [51, 30, 40, 28, 92, 50, 45]
- }, {
- label: "# of Votes",
- backgroundColor: "#03586A",
- data: [41, 56, 25, 48, 72, 34, 12]
- }]
+ labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
+ datasets: [
+ {
+ label: '# of Votes',
+ backgroundColor: '#26B99A',
+ data: [51, 30, 40, 28, 92, 50, 45],
+ },
+ {
+ label: '# of Votes',
+ backgroundColor: '#03586A',
+ data: [41, 56, 25, 48, 72, 34, 12],
+ },
+ ],
},
options: {
scales: {
- yAxes: [{
- ticks: {
- beginAtZero: !0
- }
- }]
- }
- }
- })
+ yAxes: [
+ {
+ ticks: {
+ beginAtZero: !0,
+ },
+ },
+ ],
+ },
+ },
+ });
}
- if ($("#canvasDoughnut").length) {
- var f = document.getElementById("canvasDoughnut"),
+ if ($('#canvasDoughnut').length) {
+ var f = document.getElementById('canvasDoughnut'),
i = {
- labels: ["Dark Grey", "Purple Color", "Gray Color", "Green Color", "Blue Color"],
- datasets: [{
- data: [120, 50, 140, 180, 100],
- backgroundColor: ["#455C73", "#9B59B6", "#BDC3C7", "#26B99A", "#3498DB"],
- hoverBackgroundColor: ["#34495E", "#B370CF", "#CFD4D8", "#36CAAB", "#49A9EA"]
- }]
+ labels: [
+ 'Dark Grey',
+ 'Purple Color',
+ 'Gray Color',
+ 'Green Color',
+ 'Blue Color',
+ ],
+ datasets: [
+ {
+ data: [120, 50, 140, 180, 100],
+ backgroundColor: [
+ '#455C73',
+ '#9B59B6',
+ '#BDC3C7',
+ '#26B99A',
+ '#3498DB',
+ ],
+ hoverBackgroundColor: [
+ '#34495E',
+ '#B370CF',
+ '#CFD4D8',
+ '#36CAAB',
+ '#49A9EA',
+ ],
+ },
+ ],
};
new Chart(f, {
- type: "doughnut",
- tooltipFillColor: "rgba(51, 51, 51, 0.55)",
- data: i
- })
+ type: 'doughnut',
+ tooltipFillColor: 'rgba(51, 51, 51, 0.55)',
+ data: i,
+ });
}
- if ($("#canvasRadar").length) {
- var f = document.getElementById("canvasRadar"),
+ if ($('#canvasRadar').length) {
+ var f = document.getElementById('canvasRadar'),
i = {
- labels: ["Eating", "Drinking", "Sleeping", "Designing", "Coding", "Cycling", "Running"],
- datasets: [{
- label: "My First dataset",
- backgroundColor: "rgba(3, 88, 106, 0.2)",
- borderColor: "rgba(3, 88, 106, 0.80)",
- pointBorderColor: "rgba(3, 88, 106, 0.80)",
- pointBackgroundColor: "rgba(3, 88, 106, 0.80)",
- pointHoverBackgroundColor: "#fff",
- pointHoverBorderColor: "rgba(220,220,220,1)",
- data: [65, 59, 90, 81, 56, 55, 40]
- }, {
- label: "My Second dataset",
- backgroundColor: "rgba(38, 185, 154, 0.2)",
- borderColor: "rgba(38, 185, 154, 0.85)",
- pointColor: "rgba(38, 185, 154, 0.85)",
- pointStrokeColor: "#fff",
- pointHighlightFill: "#fff",
- pointHighlightStroke: "rgba(151,187,205,1)",
- data: [28, 48, 40, 19, 96, 27, 100]
- }]
+ labels: [
+ 'Eating',
+ 'Drinking',
+ 'Sleeping',
+ 'Designing',
+ 'Coding',
+ 'Cycling',
+ 'Running',
+ ],
+ datasets: [
+ {
+ label: 'My First dataset',
+ backgroundColor: 'rgba(3, 88, 106, 0.2)',
+ borderColor: 'rgba(3, 88, 106, 0.80)',
+ pointBorderColor: 'rgba(3, 88, 106, 0.80)',
+ pointBackgroundColor: 'rgba(3, 88, 106, 0.80)',
+ pointHoverBackgroundColor: '#fff',
+ pointHoverBorderColor: 'rgba(220,220,220,1)',
+ data: [65, 59, 90, 81, 56, 55, 40],
+ },
+ {
+ label: 'My Second dataset',
+ backgroundColor: 'rgba(38, 185, 154, 0.2)',
+ borderColor: 'rgba(38, 185, 154, 0.85)',
+ pointColor: 'rgba(38, 185, 154, 0.85)',
+ pointStrokeColor: '#fff',
+ pointHighlightFill: '#fff',
+ pointHighlightStroke: 'rgba(151,187,205,1)',
+ data: [28, 48, 40, 19, 96, 27, 100],
+ },
+ ],
};
new Chart(f, {
- type: "radar",
- data: i
- })
+ type: 'radar',
+ data: i,
+ });
}
- if ($("#pieChart").length) {
- var f = document.getElementById("pieChart"),
+ if ($('#pieChart').length) {
+ var f = document.getElementById('pieChart'),
i = {
- datasets: [{
- data: [120, 50, 140, 180, 100],
- backgroundColor: ["#455C73", "#9B59B6", "#BDC3C7", "#26B99A", "#3498DB"],
- label: "My dataset"
- }],
- labels: ["Dark Gray", "Purple", "Gray", "Green", "Blue"]
+ datasets: [
+ {
+ data: [120, 50, 140, 180, 100],
+ backgroundColor: [
+ '#455C73',
+ '#9B59B6',
+ '#BDC3C7',
+ '#26B99A',
+ '#3498DB',
+ ],
+ label: 'My dataset',
+ },
+ ],
+ labels: ['Dark Gray', 'Purple', 'Gray', 'Green', 'Blue'],
};
new Chart(f, {
data: i,
- type: "pie",
+ type: 'pie',
otpions: {
- legend: !1
- }
- })
+ legend: !1,
+ },
+ });
}
- if ($("#polarArea").length) {
- var f = document.getElementById("polarArea"),
+ if ($('#polarArea').length) {
+ var f = document.getElementById('polarArea'),
i = {
- datasets: [{
- data: [120, 50, 140, 180, 100],
- backgroundColor: ["#455C73", "#9B59B6", "#BDC3C7", "#26B99A", "#3498DB"],
- label: "My dataset"
- }],
- labels: ["Dark Gray", "Purple", "Gray", "Green", "Blue"]
+ datasets: [
+ {
+ data: [120, 50, 140, 180, 100],
+ backgroundColor: [
+ '#455C73',
+ '#9B59B6',
+ '#BDC3C7',
+ '#26B99A',
+ '#3498DB',
+ ],
+ label: 'My dataset',
+ },
+ ],
+ labels: ['Dark Gray', 'Purple', 'Gray', 'Green', 'Blue'],
};
new Chart(f, {
data: i,
- type: "polarArea",
+ type: 'polarArea',
options: {
scale: {
ticks: {
- beginAtZero: !0
- }
- }
- }
- })
+ beginAtZero: !0,
+ },
+ },
+ },
+ });
}
}
}
function init_compose() {
- "undefined" != typeof $.fn.slideToggle && (console.log("init_compose"), $("#compose, .compose-close").click(function() {
- $(".compose").slideToggle()
- }))
+ 'undefined' != typeof $.fn.slideToggle &&
+ (console.log('init_compose'),
+ $('#compose, .compose-close').click(function() {
+ $('.compose').slideToggle();
+ }));
}
function init_calendar() {
- if ("undefined" != typeof $.fn.fullCalendar) {
- console.log("init_calendar");
- var e, f, a = new Date,
+ if ('undefined' != typeof $.fn.fullCalendar) {
+ console.log('init_calendar');
+ var e,
+ f,
+ a = new Date(),
b = a.getDate(),
c = a.getMonth(),
d = a.getFullYear(),
- g = $("#calendar").fullCalendar({
+ g = $('#calendar').fullCalendar({
header: {
- left: "prev,next today",
- center: "title",
- right: "month,agendaWeek,agendaDay,listMonth"
+ left: 'prev,next today',
+ center: 'title',
+ right: 'month,agendaWeek,agendaDay,listMonth',
},
selectable: !0,
selectHelper: !0,
select: function(a, b, c) {
- $("#fc_create").click(), e = a, ended = b, $(".antosubmit").on("click", function() {
- var a = $("#title").val();
- return b && (ended = b), f = $("#event_type").val(), a && g.fullCalendar("renderEvent", {
- title: a,
- start: e,
- end: b,
- allDay: c
- }, !0), $("#title").val(""), g.fullCalendar("unselect"), $(".antoclose").click(), !1
- })
+ $('#fc_create').click(),
+ (e = a),
+ (ended = b),
+ $('.antosubmit').on('click', function() {
+ var a = $('#title').val();
+ return (
+ b && (ended = b),
+ (f = $('#event_type').val()),
+ a &&
+ g.fullCalendar(
+ 'renderEvent',
+ {
+ title: a,
+ start: e,
+ end: b,
+ allDay: c,
+ },
+ !0
+ ),
+ $('#title').val(''),
+ g.fullCalendar('unselect'),
+ $('.antoclose').click(),
+ !1
+ );
+ });
},
eventClick: function(a, b, c) {
- $("#fc_edit").click(), $("#title2").val(a.title), f = $("#event_type").val(), $(".antosubmit2").on("click", function() {
- a.title = $("#title2").val(), g.fullCalendar("updateEvent", a), $(".antoclose2").click()
- }), g.fullCalendar("unselect")
+ $('#fc_edit').click(),
+ $('#title2').val(a.title),
+ (f = $('#event_type').val()),
+ $('.antosubmit2').on('click', function() {
+ (a.title = $('#title2').val()),
+ g.fullCalendar('updateEvent', a),
+ $('.antoclose2').click();
+ }),
+ g.fullCalendar('unselect');
},
editable: !0,
- events: [{
- title: "All Day Event",
- start: new Date(d, c, 1)
- }, {
- title: "Long Event",
- start: new Date(d, c, b - 5),
- end: new Date(d, c, b - 2)
- }, {
- title: "Meeting",
- start: new Date(d, c, b, 10, 30),
- allDay: !1
- }, {
- title: "Lunch",
- start: new Date(d, c, b + 14, 12, 0),
- end: new Date(d, c, b, 14, 0),
- allDay: !1
- }, {
- title: "Birthday Party",
- start: new Date(d, c, b + 1, 19, 0),
- end: new Date(d, c, b + 1, 22, 30),
- allDay: !1
- }, {
- title: "Click for Google",
- start: new Date(d, c, 28),
- end: new Date(d, c, 29),
- url: "http://google.com/"
- }]
- })
+ events: [
+ {
+ title: 'All Day Event',
+ start: new Date(d, c, 1),
+ },
+ {
+ title: 'Long Event',
+ start: new Date(d, c, b - 5),
+ end: new Date(d, c, b - 2),
+ },
+ {
+ title: 'Meeting',
+ start: new Date(d, c, b, 10, 30),
+ allDay: !1,
+ },
+ {
+ title: 'Lunch',
+ start: new Date(d, c, b + 14, 12, 0),
+ end: new Date(d, c, b, 14, 0),
+ allDay: !1,
+ },
+ {
+ title: 'Birthday Party',
+ start: new Date(d, c, b + 1, 19, 0),
+ end: new Date(d, c, b + 1, 22, 30),
+ allDay: !1,
+ },
+ {
+ title: 'Click for Google',
+ start: new Date(d, c, 28),
+ end: new Date(d, c, 29),
+ url: 'http://google.com/',
+ },
+ ],
+ });
}
}
function init_DataTables() {
- if (console.log("run_datatables"), "undefined" != typeof $.fn.DataTable) {
- console.log("init_DataTables");
+ if ((console.log('run_datatables'), 'undefined' != typeof $.fn.DataTable)) {
+ console.log('init_DataTables');
var a = function() {
- $("#datatable-buttons").length && $("#datatable-buttons").DataTable({
- dom: "Bfrtip",
- buttons: [{
- extend: "copy",
- className: "btn-sm"
- }, {
- extend: "csv",
- className: "btn-sm"
- }, {
- extend: "excel",
- className: "btn-sm"
- }, {
- extend: "pdfHtml5",
- className: "btn-sm"
- }, {
- extend: "print",
- className: "btn-sm"
- }],
- responsive: !0
- })
+ $('#datatable-buttons').length &&
+ $('#datatable-buttons').DataTable({
+ dom: 'Bfrtip',
+ buttons: [
+ {
+ extend: 'copy',
+ className: 'btn-sm',
+ },
+ {
+ extend: 'csv',
+ className: 'btn-sm',
+ },
+ {
+ extend: 'excel',
+ className: 'btn-sm',
+ },
+ {
+ extend: 'pdfHtml5',
+ className: 'btn-sm',
+ },
+ {
+ extend: 'print',
+ className: 'btn-sm',
+ },
+ ],
+ responsive: !0,
+ });
};
- TableManageButtons = function() {
- "use strict";
+ (TableManageButtons = (function() {
+ 'use strict';
return {
init: function() {
- a()
- }
- }
- }(), $("#datatable").dataTable(), $("#datatable-keytable").DataTable({
- keys: !0
- }), $("#datatable-responsive").DataTable(), $("#datatable-scroller").DataTable({
- ajax: "js/datatables/json/scroller-demo.json",
- deferRender: !0,
- scrollY: 380,
- scrollCollapse: !0,
- scroller: !0
- }), $("#datatable-fixed-header").DataTable({
- fixedHeader: !0
- });
- var b = $("#datatable-checkbox");
+ a();
+ },
+ };
+ })()),
+ $('#datatable').dataTable(),
+ $('#datatable-keytable').DataTable({
+ keys: !0,
+ }),
+ $('#datatable-responsive').DataTable(),
+ $('#datatable-scroller').DataTable({
+ ajax: 'js/datatables/json/scroller-demo.json',
+ deferRender: !0,
+ scrollY: 380,
+ scrollCollapse: !0,
+ scroller: !0,
+ }),
+ $('#datatable-fixed-header').DataTable({
+ fixedHeader: !0,
+ });
+ var b = $('#datatable-checkbox');
b.dataTable({
- order: [
- [1, "asc"]
+ order: [[1, 'asc']],
+ columnDefs: [
+ {
+ orderable: !1,
+ targets: [0],
+ },
],
- columnDefs: [{
- orderable: !1,
- targets: [0]
- }]
- }), b.on("draw.dt", function() {
- $("checkbox input").iCheck({
- checkboxClass: "icheckbox_flat-green"
- })
- }), TableManageButtons.init()
+ }),
+ b.on('draw.dt', function() {
+ $('checkbox input').iCheck({
+ checkboxClass: 'icheckbox_flat-green',
+ });
+ }),
+ TableManageButtons.init();
}
}
function init_morris_charts() {
- "undefined" != typeof Morris && (console.log("init_morris_charts"), $("#graph_bar").length && Morris.Bar({
- element: "graph_bar",
- data: [{
- device: "iPhone 4",
- geekbench: 380
- }, {
- device: "iPhone 4S",
- geekbench: 655
- }, {
- device: "iPhone 3GS",
- geekbench: 275
- }, {
- device: "iPhone 5",
- geekbench: 1571
- }, {
- device: "iPhone 5S",
- geekbench: 655
- }, {
- device: "iPhone 6",
- geekbench: 2154
- }, {
- device: "iPhone 6 Plus",
- geekbench: 1144
- }, {
- device: "iPhone 6S",
- geekbench: 2371
- }, {
- device: "iPhone 6S Plus",
- geekbench: 1471
- }, {
- device: "Other",
- geekbench: 1371
- }],
- xkey: "device",
- ykeys: ["geekbench"],
- labels: ["Geekbench"],
- barRatio: .4,
- barColors: ["#26B99A", "#34495E", "#ACADAC", "#3498DB"],
- xLabelAngle: 35,
- hideHover: "auto",
- resize: !0
- }), $("#graph_bar_group").length && Morris.Bar({
- element: "graph_bar_group",
- data: [{
- period: "2016-10-01",
- licensed: 807,
- sorned: 660
- }, {
- period: "2016-09-30",
- licensed: 1251,
- sorned: 729
- }, {
- period: "2016-09-29",
- licensed: 1769,
- sorned: 1018
- }, {
- period: "2016-09-20",
- licensed: 2246,
- sorned: 1461
- }, {
- period: "2016-09-19",
- licensed: 2657,
- sorned: 1967
- }, {
- period: "2016-09-18",
- licensed: 3148,
- sorned: 2627
- }, {
- period: "2016-09-17",
- licensed: 3471,
- sorned: 3740
- }, {
- period: "2016-09-16",
- licensed: 2871,
- sorned: 2216
- }, {
- period: "2016-09-15",
- licensed: 2401,
- sorned: 1656
- }, {
- period: "2016-09-10",
- licensed: 2115,
- sorned: 1022
- }],
- xkey: "period",
- barColors: ["#26B99A", "#34495E", "#ACADAC", "#3498DB"],
- ykeys: ["licensed", "sorned"],
- labels: ["Licensed", "SORN"],
- hideHover: "auto",
- xLabelAngle: 60,
- resize: !0
- }), $("#graphx").length && Morris.Bar({
- element: "graphx",
- data: [{
- x: "2015 Q1",
- y: 2,
- z: 3,
- a: 4
- }, {
- x: "2015 Q2",
- y: 3,
- z: 5,
- a: 6
- }, {
- x: "2015 Q3",
- y: 4,
- z: 3,
- a: 2
- }, {
- x: "2015 Q4",
- y: 2,
- z: 4,
- a: 5
- }],
- xkey: "x",
- ykeys: ["y", "z", "a"],
- barColors: ["#26B99A", "#34495E", "#ACADAC", "#3498DB"],
- hideHover: "auto",
- labels: ["Y", "Z", "A"],
- resize: !0
- }).on("click", function(a, b) {
- console.log(a, b)
- }), $("#graph_area").length && Morris.Area({
- element: "graph_area",
- data: [{
- period: "2014 Q1",
- iphone: 2666,
- ipad: null,
- itouch: 2647
- }, {
- period: "2014 Q2",
- iphone: 2778,
- ipad: 2294,
- itouch: 2441
- }, {
- period: "2014 Q3",
- iphone: 4912,
- ipad: 1969,
- itouch: 2501
- }, {
- period: "2014 Q4",
- iphone: 3767,
- ipad: 3597,
- itouch: 5689
- }, {
- period: "2015 Q1",
- iphone: 6810,
- ipad: 1914,
- itouch: 2293
- }, {
- period: "2015 Q2",
- iphone: 5670,
- ipad: 4293,
- itouch: 1881
- }, {
- period: "2015 Q3",
- iphone: 4820,
- ipad: 3795,
- itouch: 1588
- }, {
- period: "2015 Q4",
- iphone: 15073,
- ipad: 5967,
- itouch: 5175
- }, {
- period: "2016 Q1",
- iphone: 10687,
- ipad: 4460,
- itouch: 2028
- }, {
- period: "2016 Q2",
- iphone: 8432,
- ipad: 5713,
- itouch: 1791
- }],
- xkey: "period",
- ykeys: ["iphone", "ipad", "itouch"],
- lineColors: ["#26B99A", "#34495E", "#ACADAC", "#3498DB"],
- labels: ["iPhone", "iPad", "iPod Touch"],
- pointSize: 2,
- hideHover: "auto",
- resize: !0
- }), $("#graph_donut").length && Morris.Donut({
- element: "graph_donut",
- data: [{
- label: "Jam",
- value: 25
- }, {
- label: "Frosted",
- value: 40
- }, {
- label: "Custard",
- value: 25
- }, {
- label: "Sugar",
- value: 10
- }],
- colors: ["#26B99A", "#34495E", "#ACADAC", "#3498DB"],
- formatter: function(a) {
- return a + "%"
- },
- resize: !0
- }), $("#graph_line").length && (Morris.Line({
- element: "graph_line",
- xkey: "year",
- ykeys: ["value"],
- labels: ["Value"],
- hideHover: "auto",
- lineColors: ["#26B99A", "#34495E", "#ACADAC", "#3498DB"],
- data: [{
- year: "2012",
- value: 20
- }, {
- year: "2013",
- value: 10
- }, {
- year: "2014",
- value: 5
- }, {
- year: "2015",
- value: 5
- }, {
- year: "2016",
- value: 20
- }],
- resize: !0
- }), $MENU_TOGGLE.on("click", function() {
- $(window).resize()
- })))
+ 'undefined' != typeof Morris &&
+ (console.log('init_morris_charts'),
+ $('#graph_bar').length &&
+ Morris.Bar({
+ element: 'graph_bar',
+ data: [
+ {
+ device: 'iPhone 4',
+ geekbench: 380,
+ },
+ {
+ device: 'iPhone 4S',
+ geekbench: 655,
+ },
+ {
+ device: 'iPhone 3GS',
+ geekbench: 275,
+ },
+ {
+ device: 'iPhone 5',
+ geekbench: 1571,
+ },
+ {
+ device: 'iPhone 5S',
+ geekbench: 655,
+ },
+ {
+ device: 'iPhone 6',
+ geekbench: 2154,
+ },
+ {
+ device: 'iPhone 6 Plus',
+ geekbench: 1144,
+ },
+ {
+ device: 'iPhone 6S',
+ geekbench: 2371,
+ },
+ {
+ device: 'iPhone 6S Plus',
+ geekbench: 1471,
+ },
+ {
+ device: 'Other',
+ geekbench: 1371,
+ },
+ ],
+ xkey: 'device',
+ ykeys: ['geekbench'],
+ labels: ['Geekbench'],
+ barRatio: 0.4,
+ barColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
+ xLabelAngle: 35,
+ hideHover: 'auto',
+ resize: !0,
+ }),
+ $('#graph_bar_group').length &&
+ Morris.Bar({
+ element: 'graph_bar_group',
+ data: [
+ {
+ period: '2016-10-01',
+ licensed: 807,
+ sorned: 660,
+ },
+ {
+ period: '2016-09-30',
+ licensed: 1251,
+ sorned: 729,
+ },
+ {
+ period: '2016-09-29',
+ licensed: 1769,
+ sorned: 1018,
+ },
+ {
+ period: '2016-09-20',
+ licensed: 2246,
+ sorned: 1461,
+ },
+ {
+ period: '2016-09-19',
+ licensed: 2657,
+ sorned: 1967,
+ },
+ {
+ period: '2016-09-18',
+ licensed: 3148,
+ sorned: 2627,
+ },
+ {
+ period: '2016-09-17',
+ licensed: 3471,
+ sorned: 3740,
+ },
+ {
+ period: '2016-09-16',
+ licensed: 2871,
+ sorned: 2216,
+ },
+ {
+ period: '2016-09-15',
+ licensed: 2401,
+ sorned: 1656,
+ },
+ {
+ period: '2016-09-10',
+ licensed: 2115,
+ sorned: 1022,
+ },
+ ],
+ xkey: 'period',
+ barColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
+ ykeys: ['licensed', 'sorned'],
+ labels: ['Licensed', 'SORN'],
+ hideHover: 'auto',
+ xLabelAngle: 60,
+ resize: !0,
+ }),
+ $('#graphx').length &&
+ Morris.Bar({
+ element: 'graphx',
+ data: [
+ {
+ x: '2015 Q1',
+ y: 2,
+ z: 3,
+ a: 4,
+ },
+ {
+ x: '2015 Q2',
+ y: 3,
+ z: 5,
+ a: 6,
+ },
+ {
+ x: '2015 Q3',
+ y: 4,
+ z: 3,
+ a: 2,
+ },
+ {
+ x: '2015 Q4',
+ y: 2,
+ z: 4,
+ a: 5,
+ },
+ ],
+ xkey: 'x',
+ ykeys: ['y', 'z', 'a'],
+ barColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
+ hideHover: 'auto',
+ labels: ['Y', 'Z', 'A'],
+ resize: !0,
+ }).on('click', function(a, b) {
+ console.log(a, b);
+ }),
+ $('#graph_area').length &&
+ Morris.Area({
+ element: 'graph_area',
+ data: [
+ {
+ period: '2014 Q1',
+ iphone: 2666,
+ ipad: null,
+ itouch: 2647,
+ },
+ {
+ period: '2014 Q2',
+ iphone: 2778,
+ ipad: 2294,
+ itouch: 2441,
+ },
+ {
+ period: '2014 Q3',
+ iphone: 4912,
+ ipad: 1969,
+ itouch: 2501,
+ },
+ {
+ period: '2014 Q4',
+ iphone: 3767,
+ ipad: 3597,
+ itouch: 5689,
+ },
+ {
+ period: '2015 Q1',
+ iphone: 6810,
+ ipad: 1914,
+ itouch: 2293,
+ },
+ {
+ period: '2015 Q2',
+ iphone: 5670,
+ ipad: 4293,
+ itouch: 1881,
+ },
+ {
+ period: '2015 Q3',
+ iphone: 4820,
+ ipad: 3795,
+ itouch: 1588,
+ },
+ {
+ period: '2015 Q4',
+ iphone: 15073,
+ ipad: 5967,
+ itouch: 5175,
+ },
+ {
+ period: '2016 Q1',
+ iphone: 10687,
+ ipad: 4460,
+ itouch: 2028,
+ },
+ {
+ period: '2016 Q2',
+ iphone: 8432,
+ ipad: 5713,
+ itouch: 1791,
+ },
+ ],
+ xkey: 'period',
+ ykeys: ['iphone', 'ipad', 'itouch'],
+ lineColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
+ labels: ['iPhone', 'iPad', 'iPod Touch'],
+ pointSize: 2,
+ hideHover: 'auto',
+ resize: !0,
+ }),
+ $('#graph_donut').length &&
+ Morris.Donut({
+ element: 'graph_donut',
+ data: [
+ {
+ label: 'Jam',
+ value: 25,
+ },
+ {
+ label: 'Frosted',
+ value: 40,
+ },
+ {
+ label: 'Custard',
+ value: 25,
+ },
+ {
+ label: 'Sugar',
+ value: 10,
+ },
+ ],
+ colors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
+ formatter: function(a) {
+ return a + '%';
+ },
+ resize: !0,
+ }),
+ $('#graph_line').length &&
+ (Morris.Line({
+ element: 'graph_line',
+ xkey: 'year',
+ ykeys: ['value'],
+ labels: ['Value'],
+ hideHover: 'auto',
+ lineColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
+ data: [
+ {
+ year: '2012',
+ value: 20,
+ },
+ {
+ year: '2013',
+ value: 10,
+ },
+ {
+ year: '2014',
+ value: 5,
+ },
+ {
+ year: '2015',
+ value: 5,
+ },
+ {
+ year: '2016',
+ value: 20,
+ },
+ ],
+ resize: !0,
+ }),
+ $MENU_TOGGLE.on('click', function() {
+ $(window).resize();
+ })));
}
function init_echarts() {
- if ("undefined" != typeof echarts) {
- console.log("init_echarts");
+ if ('undefined' != typeof echarts) {
+ console.log('init_echarts');
var a = {
- color: ["#26B99A", "#34495E", "#BDC3C7", "#3498DB", "#9B59B6", "#8abb6f", "#759c6a", "#bfd3b7"],
+ color: [
+ '#26B99A',
+ '#34495E',
+ '#BDC3C7',
+ '#3498DB',
+ '#9B59B6',
+ '#8abb6f',
+ '#759c6a',
+ '#bfd3b7',
+ ],
title: {
itemGap: 8,
textStyle: {
- fontWeight: "normal",
- color: "#408829"
- }
+ fontWeight: 'normal',
+ color: '#408829',
+ },
},
dataRange: {
- color: ["#1f610a", "#97b58d"]
+ color: ['#1f610a', '#97b58d'],
},
toolbox: {
- color: ["#408829", "#408829", "#408829", "#408829"]
+ color: ['#408829', '#408829', '#408829', '#408829'],
},
tooltip: {
- backgroundColor: "rgba(0,0,0,0.5)",
+ backgroundColor: 'rgba(0,0,0,0.5)',
axisPointer: {
- type: "line",
+ type: 'line',
lineStyle: {
- color: "#408829",
- type: "dashed"
+ color: '#408829',
+ type: 'dashed',
},
crossStyle: {
- color: "#408829"
+ color: '#408829',
},
shadowStyle: {
- color: "rgba(200,200,200,0.3)"
- }
- }
+ color: 'rgba(200,200,200,0.3)',
+ },
+ },
},
dataZoom: {
- dataBackgroundColor: "#eee",
- fillerColor: "rgba(64,136,41,0.2)",
- handleColor: "#408829"
+ dataBackgroundColor: '#eee',
+ fillerColor: 'rgba(64,136,41,0.2)',
+ handleColor: '#408829',
},
grid: {
- borderWidth: 0
+ borderWidth: 0,
},
categoryAxis: {
axisLine: {
lineStyle: {
- color: "#408829"
- }
+ color: '#408829',
+ },
},
splitLine: {
lineStyle: {
- color: ["#eee"]
- }
- }
+ color: ['#eee'],
+ },
+ },
},
valueAxis: {
axisLine: {
lineStyle: {
- color: "#408829"
- }
+ color: '#408829',
+ },
},
splitArea: {
show: !0,
areaStyle: {
- color: ["rgba(250,250,250,0.1)", "rgba(200,200,200,0.1)"]
- }
+ color: ['rgba(250,250,250,0.1)', 'rgba(200,200,200,0.1)'],
+ },
},
splitLine: {
lineStyle: {
- color: ["#eee"]
- }
- }
+ color: ['#eee'],
+ },
+ },
},
timeline: {
lineStyle: {
- color: "#408829"
+ color: '#408829',
},
controlStyle: {
normal: {
- color: "#408829"
+ color: '#408829',
},
emphasis: {
- color: "#408829"
- }
- }
+ color: '#408829',
+ },
+ },
},
k: {
itemStyle: {
normal: {
- color: "#68a54a",
- color0: "#a9cba2",
+ color: '#68a54a',
+ color0: '#a9cba2',
lineStyle: {
width: 1,
- color: "#408829",
- color0: "#86b379"
- }
- }
- }
+ color: '#408829',
+ color0: '#86b379',
+ },
+ },
+ },
},
map: {
itemStyle: {
normal: {
areaStyle: {
- color: "#ddd"
+ color: '#ddd',
},
label: {
textStyle: {
- color: "#c12e34"
- }
- }
+ color: '#c12e34',
+ },
+ },
},
emphasis: {
areaStyle: {
- color: "#99d2dd"
+ color: '#99d2dd',
},
label: {
textStyle: {
- color: "#c12e34"
- }
- }
- }
- }
+ color: '#c12e34',
+ },
+ },
+ },
+ },
},
force: {
itemStyle: {
normal: {
linkStyle: {
- strokeColor: "#408829"
- }
- }
- }
+ strokeColor: '#408829',
+ },
+ },
+ },
},
chord: {
padding: 4,
@@ -2145,28 +2889,28 @@ function init_echarts() {
normal: {
lineStyle: {
width: 1,
- color: "rgba(128, 128, 128, 0.5)"
+ color: 'rgba(128, 128, 128, 0.5)',
},
chordStyle: {
lineStyle: {
width: 1,
- color: "rgba(128, 128, 128, 0.5)"
- }
- }
+ color: 'rgba(128, 128, 128, 0.5)',
+ },
+ },
},
emphasis: {
lineStyle: {
width: 1,
- color: "rgba(128, 128, 128, 0.5)"
+ color: 'rgba(128, 128, 128, 0.5)',
},
chordStyle: {
lineStyle: {
width: 1,
- color: "rgba(128, 128, 128, 0.5)"
- }
- }
- }
- }
+ color: 'rgba(128, 128, 128, 0.5)',
+ },
+ },
+ },
+ },
},
gauge: {
startAngle: 225,
@@ -2174,366 +2918,424 @@ function init_echarts() {
axisLine: {
show: !0,
lineStyle: {
- color: [
- [.2, "#86b379"],
- [.8, "#68a54a"],
- [1, "#408829"]
- ],
- width: 8
- }
+ color: [[0.2, '#86b379'], [0.8, '#68a54a'], [1, '#408829']],
+ width: 8,
+ },
},
axisTick: {
splitNumber: 10,
length: 12,
lineStyle: {
- color: "auto"
- }
+ color: 'auto',
+ },
},
axisLabel: {
textStyle: {
- color: "auto"
- }
+ color: 'auto',
+ },
},
splitLine: {
length: 18,
lineStyle: {
- color: "auto"
- }
+ color: 'auto',
+ },
},
pointer: {
- length: "90%",
- color: "auto"
+ length: '90%',
+ color: 'auto',
},
title: {
textStyle: {
- color: "#333"
- }
+ color: '#333',
+ },
},
detail: {
textStyle: {
- color: "auto"
- }
- }
+ color: 'auto',
+ },
+ },
},
textStyle: {
- fontFamily: "Arial, Verdana, sans-serif"
- }
+ fontFamily: 'Arial, Verdana, sans-serif',
+ },
};
- if ($("#mainb").length) {
- var b = echarts.init(document.getElementById("mainb"), a);
+ if ($('#mainb').length) {
+ var b = echarts.init(document.getElementById('mainb'), a);
b.setOption({
title: {
- text: "Graph title",
- subtext: "Graph Sub-text"
+ text: 'Graph title',
+ subtext: 'Graph Sub-text',
},
tooltip: {
- trigger: "axis"
+ trigger: 'axis',
},
legend: {
- data: ["sales", "purchases"]
+ data: ['sales', 'purchases'],
},
toolbox: {
- show: !1
+ show: !1,
},
calculable: !1,
- xAxis: [{
- type: "category",
- data: ["1?", "2?", "3?", "4?", "5?", "6?", "7?", "8?", "9?", "10?", "11?", "12?"]
- }],
- yAxis: [{
- type: "value"
- }],
- series: [{
- name: "sales",
- type: "bar",
- data: [2, 4.9, 7, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20, 6.4, 3.3],
- markPoint: {
- data: [{
- type: "max",
- name: "???"
- }, {
- type: "min",
- name: "???"
- }]
+ xAxis: [
+ {
+ type: 'category',
+ data: [
+ '1?',
+ '2?',
+ '3?',
+ '4?',
+ '5?',
+ '6?',
+ '7?',
+ '8?',
+ '9?',
+ '10?',
+ '11?',
+ '12?',
+ ],
},
- markLine: {
- data: [{
- type: "average",
- name: "???"
- }]
- }
- }, {
- name: "purchases",
- type: "bar",
- data: [2.6, 5.9, 9, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6, 2.3],
- markPoint: {
- data: [{
- name: "sales",
- value: 182.2,
- xAxis: 7,
- yAxis: 183
- }, {
- name: "purchases",
- value: 2.3,
- xAxis: 11,
- yAxis: 3
- }]
+ ],
+ yAxis: [
+ {
+ type: 'value',
},
- markLine: {
- data: [{
- type: "average",
- name: "???"
- }]
- }
- }]
- })
+ ],
+ series: [
+ {
+ name: 'sales',
+ type: 'bar',
+ data: [2, 4.9, 7, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20, 6.4, 3.3],
+ markPoint: {
+ data: [
+ {
+ type: 'max',
+ name: '???',
+ },
+ {
+ type: 'min',
+ name: '???',
+ },
+ ],
+ },
+ markLine: {
+ data: [
+ {
+ type: 'average',
+ name: '???',
+ },
+ ],
+ },
+ },
+ {
+ name: 'purchases',
+ type: 'bar',
+ data: [2.6, 5.9, 9, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6, 2.3],
+ markPoint: {
+ data: [
+ {
+ name: 'sales',
+ value: 182.2,
+ xAxis: 7,
+ yAxis: 183,
+ },
+ {
+ name: 'purchases',
+ value: 2.3,
+ xAxis: 11,
+ yAxis: 3,
+ },
+ ],
+ },
+ markLine: {
+ data: [
+ {
+ type: 'average',
+ name: '???',
+ },
+ ],
+ },
+ },
+ ],
+ });
}
- if ($("#echart_sonar").length) {
- var c = echarts.init(document.getElementById("echart_sonar"), a);
+ if ($('#echart_sonar').length) {
+ var c = echarts.init(document.getElementById('echart_sonar'), a);
c.setOption({
title: {
- text: "Budget vs spending",
- subtext: "Subtitle"
+ text: 'Budget vs spending',
+ subtext: 'Subtitle',
},
tooltip: {
- trigger: "item"
+ trigger: 'item',
},
legend: {
- orient: "vertical",
- x: "right",
- y: "bottom",
- data: ["Allocated Budget", "Actual Spending"]
+ orient: 'vertical',
+ x: 'right',
+ y: 'bottom',
+ data: ['Allocated Budget', 'Actual Spending'],
},
toolbox: {
show: !0,
feature: {
restore: {
show: !0,
- title: "Restore"
+ title: 'Restore',
},
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
+ title: 'Save Image',
+ },
+ },
},
- polar: [{
- indicator: [{
- text: "Sales",
- max: 6e3
- }, {
- text: "Administration",
- max: 16e3
- }, {
- text: "Information Techology",
- max: 3e4
- }, {
- text: "Customer Support",
- max: 38e3
- }, {
- text: "Development",
- max: 52e3
- }, {
- text: "Marketing",
- max: 25e3
- }]
- }],
+ polar: [
+ {
+ indicator: [
+ {
+ text: 'Sales',
+ max: 6e3,
+ },
+ {
+ text: 'Administration',
+ max: 16e3,
+ },
+ {
+ text: 'Information Techology',
+ max: 3e4,
+ },
+ {
+ text: 'Customer Support',
+ max: 38e3,
+ },
+ {
+ text: 'Development',
+ max: 52e3,
+ },
+ {
+ text: 'Marketing',
+ max: 25e3,
+ },
+ ],
+ },
+ ],
calculable: !0,
- series: [{
- name: "Budget vs spending",
- type: "radar",
- data: [{
- value: [4300, 1e4, 28e3, 35e3, 5e4, 19e3],
- name: "Allocated Budget"
- }, {
- value: [5e3, 14e3, 28e3, 31e3, 42e3, 21e3],
- name: "Actual Spending"
- }]
- }]
- })
+ series: [
+ {
+ name: 'Budget vs spending',
+ type: 'radar',
+ data: [
+ {
+ value: [4300, 1e4, 28e3, 35e3, 5e4, 19e3],
+ name: 'Allocated Budget',
+ },
+ {
+ value: [5e3, 14e3, 28e3, 31e3, 42e3, 21e3],
+ name: 'Actual Spending',
+ },
+ ],
+ },
+ ],
+ });
}
- if ($("#echart_pyramid").length) {
- var d = echarts.init(document.getElementById("echart_pyramid"), a);
+ if ($('#echart_pyramid').length) {
+ var d = echarts.init(document.getElementById('echart_pyramid'), a);
d.setOption({
title: {
- text: "Echart Pyramid Graph",
- subtext: "Subtitle"
+ text: 'Echart Pyramid Graph',
+ subtext: 'Subtitle',
},
tooltip: {
- trigger: "item",
- formatter: "{a} {b} : {c}%"
+ trigger: 'item',
+ formatter: '{a} {b} : {c}%',
},
toolbox: {
show: !0,
feature: {
restore: {
show: !0,
- title: "Restore"
+ title: 'Restore',
},
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
+ title: 'Save Image',
+ },
+ },
},
legend: {
- data: ["Something #1", "Something #2", "Something #3", "Something #4", "Something #5"],
- orient: "vertical",
- x: "left",
- y: "bottom"
+ data: [
+ 'Something #1',
+ 'Something #2',
+ 'Something #3',
+ 'Something #4',
+ 'Something #5',
+ ],
+ orient: 'vertical',
+ x: 'left',
+ y: 'bottom',
},
calculable: !0,
- series: [{
- name: "漏斗图",
- type: "funnel",
- width: "40%",
- data: [{
- value: 60,
- name: "Something #1"
- }, {
- value: 40,
- name: "Something #2"
- }, {
- value: 20,
- name: "Something #3"
- }, {
- value: 80,
- name: "Something #4"
- }, {
- value: 100,
- name: "Something #5"
- }]
- }]
- })
+ series: [
+ {
+ name: '漏斗图',
+ type: 'funnel',
+ width: '40%',
+ data: [
+ {
+ value: 60,
+ name: 'Something #1',
+ },
+ {
+ value: 40,
+ name: 'Something #2',
+ },
+ {
+ value: 20,
+ name: 'Something #3',
+ },
+ {
+ value: 80,
+ name: 'Something #4',
+ },
+ {
+ value: 100,
+ name: 'Something #5',
+ },
+ ],
+ },
+ ],
+ });
}
- if ($("#echart_gauge").length) {
- var e = echarts.init(document.getElementById("echart_gauge"), a);
+ if ($('#echart_gauge').length) {
+ var e = echarts.init(document.getElementById('echart_gauge'), a);
e.setOption({
tooltip: {
- formatter: "{a} {b} : {c}%"
+ formatter: '{a} {b} : {c}%',
},
toolbox: {
show: !0,
feature: {
restore: {
show: !0,
- title: "Restore"
+ title: 'Restore',
},
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
- },
- series: [{
- name: "Performance",
- type: "gauge",
- center: ["50%", "50%"],
- startAngle: 140,
- endAngle: -140,
- min: 0,
- max: 100,
- precision: 0,
- splitNumber: 10,
- axisLine: {
- show: !0,
- lineStyle: {
- color: [
- [.2, "lightgreen"],
- [.4, "orange"],
- [.8, "skyblue"],
- [1, "#ff4500"]
- ],
- width: 30
- }
- },
- axisTick: {
- show: !0,
- splitNumber: 5,
- length: 8,
- lineStyle: {
- color: "#eee",
- width: 1,
- type: "solid"
- }
- },
- axisLabel: {
- show: !0,
- formatter: function(a) {
- switch (a + "") {
- case "10":
- return "a";
- case "30":
- return "b";
- case "60":
- return "c";
- case "90":
- return "d";
- default:
- return ""
- }
+ title: 'Save Image',
},
- textStyle: {
- color: "#333"
- }
},
- splitLine: {
- show: !0,
- length: 30,
- lineStyle: {
- color: "#eee",
- width: 2,
- type: "solid"
- }
+ },
+ series: [
+ {
+ name: 'Performance',
+ type: 'gauge',
+ center: ['50%', '50%'],
+ startAngle: 140,
+ endAngle: -140,
+ min: 0,
+ max: 100,
+ precision: 0,
+ splitNumber: 10,
+ axisLine: {
+ show: !0,
+ lineStyle: {
+ color: [
+ [0.2, 'lightgreen'],
+ [0.4, 'orange'],
+ [0.8, 'skyblue'],
+ [1, '#ff4500'],
+ ],
+ width: 30,
+ },
+ },
+ axisTick: {
+ show: !0,
+ splitNumber: 5,
+ length: 8,
+ lineStyle: {
+ color: '#eee',
+ width: 1,
+ type: 'solid',
+ },
+ },
+ axisLabel: {
+ show: !0,
+ formatter: function(a) {
+ switch (a + '') {
+ case '10':
+ return 'a';
+ case '30':
+ return 'b';
+ case '60':
+ return 'c';
+ case '90':
+ return 'd';
+ default:
+ return '';
+ }
+ },
+ textStyle: {
+ color: '#333',
+ },
+ },
+ splitLine: {
+ show: !0,
+ length: 30,
+ lineStyle: {
+ color: '#eee',
+ width: 2,
+ type: 'solid',
+ },
+ },
+ pointer: {
+ length: '80%',
+ width: 8,
+ color: 'auto',
+ },
+ title: {
+ show: !0,
+ offsetCenter: ['-65%', -10],
+ textStyle: {
+ color: '#333',
+ fontSize: 15,
+ },
+ },
+ detail: {
+ show: !0,
+ backgroundColor: 'rgba(0,0,0,0)',
+ borderWidth: 0,
+ borderColor: '#ccc',
+ width: 100,
+ height: 40,
+ offsetCenter: ['-60%', 10],
+ formatter: '{value}%',
+ textStyle: {
+ color: 'auto',
+ fontSize: 30,
+ },
+ },
+ data: [
+ {
+ value: 50,
+ name: 'Performance',
+ },
+ ],
},
- pointer: {
- length: "80%",
- width: 8,
- color: "auto"
- },
- title: {
- show: !0,
- offsetCenter: ["-65%", -10],
- textStyle: {
- color: "#333",
- fontSize: 15
- }
- },
- detail: {
- show: !0,
- backgroundColor: "rgba(0,0,0,0)",
- borderWidth: 0,
- borderColor: "#ccc",
- width: 100,
- height: 40,
- offsetCenter: ["-60%", 10],
- formatter: "{value}%",
- textStyle: {
- color: "auto",
- fontSize: 30
- }
- },
- data: [{
- value: 50,
- name: "Performance"
- }]
- }]
- })
+ ],
+ });
}
- if ($("#echart_line").length) {
- var f = echarts.init(document.getElementById("echart_line"), a);
+ if ($('#echart_line').length) {
+ var f = echarts.init(document.getElementById('echart_line'), a);
f.setOption({
title: {
- text: "Line Graph",
- subtext: "Subtitle"
+ text: 'Line Graph',
+ subtext: 'Subtitle',
},
tooltip: {
- trigger: "axis"
+ trigger: 'axis',
},
legend: {
x: 220,
y: 40,
- data: ["Intent", "Pre-order", "Deal"]
+ data: ['Intent', 'Pre-order', 'Deal'],
},
toolbox: {
show: !0,
@@ -2541,1775 +3343,2116 @@ function init_echarts() {
magicType: {
show: !0,
title: {
- line: "Line",
- bar: "Bar",
- stack: "Stack",
- tiled: "Tiled"
+ line: 'Line',
+ bar: 'Bar',
+ stack: 'Stack',
+ tiled: 'Tiled',
},
- type: ["line", "bar", "stack", "tiled"]
+ type: ['line', 'bar', 'stack', 'tiled'],
},
restore: {
show: !0,
- title: "Restore"
+ title: 'Restore',
},
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
+ title: 'Save Image',
+ },
+ },
},
calculable: !0,
- xAxis: [{
- type: "category",
- boundaryGap: !1,
- data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
- }],
- yAxis: [{
- type: "value"
- }],
- series: [{
- name: "Deal",
- type: "line",
- smooth: !0,
- itemStyle: {
- normal: {
- areaStyle: {
- type: "default"
- }
- }
+ xAxis: [
+ {
+ type: 'category',
+ boundaryGap: !1,
+ data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
},
- data: [10, 12, 21, 54, 260, 830, 710]
- }, {
- name: "Pre-order",
- type: "line",
- smooth: !0,
- itemStyle: {
- normal: {
- areaStyle: {
- type: "default"
- }
- }
+ ],
+ yAxis: [
+ {
+ type: 'value',
},
- data: [30, 182, 434, 791, 390, 30, 10]
- }, {
- name: "Intent",
- type: "line",
- smooth: !0,
- itemStyle: {
- normal: {
- areaStyle: {
- type: "default"
- }
- }
+ ],
+ series: [
+ {
+ name: 'Deal',
+ type: 'line',
+ smooth: !0,
+ itemStyle: {
+ normal: {
+ areaStyle: {
+ type: 'default',
+ },
+ },
+ },
+ data: [10, 12, 21, 54, 260, 830, 710],
},
- data: [1320, 1132, 601, 234, 120, 90, 20]
- }]
- })
+ {
+ name: 'Pre-order',
+ type: 'line',
+ smooth: !0,
+ itemStyle: {
+ normal: {
+ areaStyle: {
+ type: 'default',
+ },
+ },
+ },
+ data: [30, 182, 434, 791, 390, 30, 10],
+ },
+ {
+ name: 'Intent',
+ type: 'line',
+ smooth: !0,
+ itemStyle: {
+ normal: {
+ areaStyle: {
+ type: 'default',
+ },
+ },
+ },
+ data: [1320, 1132, 601, 234, 120, 90, 20],
+ },
+ ],
+ });
}
- if ($("#echart_scatter").length) {
- var g = echarts.init(document.getElementById("echart_scatter"), a);
+ if ($('#echart_scatter').length) {
+ var g = echarts.init(document.getElementById('echart_scatter'), a);
g.setOption({
title: {
- text: "Scatter Graph",
- subtext: "Heinz 2003"
+ text: 'Scatter Graph',
+ subtext: 'Heinz 2003',
},
tooltip: {
- trigger: "axis",
+ trigger: 'axis',
showDelay: 0,
axisPointer: {
- type: "cross",
+ type: 'cross',
lineStyle: {
- type: "dashed",
- width: 1
- }
- }
+ type: 'dashed',
+ width: 1,
+ },
+ },
},
legend: {
- data: ["Data2", "Data1"]
+ data: ['Data2', 'Data1'],
},
toolbox: {
show: !0,
feature: {
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
+ title: 'Save Image',
+ },
+ },
},
- xAxis: [{
- type: "value",
- scale: !0,
- axisLabel: {
- formatter: "{value} cm"
- }
- }],
- yAxis: [{
- type: "value",
- scale: !0,
- axisLabel: {
- formatter: "{value} kg"
- }
- }],
- series: [{
- name: "Data1",
- type: "scatter",
- tooltip: {
- trigger: "item",
- formatter: function(a) {
- return a.value.length > 1 ? a.seriesName + " : " + a.value[0] + "cm " + a.value[1] + "kg " : a.seriesName + " : " + a.name + " : " + a.value + "kg "
- }
+ xAxis: [
+ {
+ type: 'value',
+ scale: !0,
+ axisLabel: {
+ formatter: '{value} cm',
+ },
},
- data: [
- [161.2, 51.6],
- [167.5, 59],
- [159.5, 49.2],
- [157, 63],
- [155.8, 53.6],
- [170, 59],
- [159.1, 47.6],
- [166, 69.8],
- [176.2, 66.8],
- [160.2, 75.2],
- [172.5, 55.2],
- [170.9, 54.2],
- [172.9, 62.5],
- [153.4, 42],
- [160, 50],
- [147.2, 49.8],
- [168.2, 49.2],
- [175, 73.2],
- [157, 47.8],
- [167.6, 68.8],
- [159.5, 50.6],
- [175, 82.5],
- [166.8, 57.2],
- [176.5, 87.8],
- [170.2, 72.8],
- [174, 54.5],
- [173, 59.8],
- [179.9, 67.3],
- [170.5, 67.8],
- [160, 47],
- [154.4, 46.2],
- [162, 55],
- [176.5, 83],
- [160, 54.4],
- [152, 45.8],
- [162.1, 53.6],
- [170, 73.2],
- [160.2, 52.1],
- [161.3, 67.9],
- [166.4, 56.6],
- [168.9, 62.3],
- [163.8, 58.5],
- [167.6, 54.5],
- [160, 50.2],
- [161.3, 60.3],
- [167.6, 58.3],
- [165.1, 56.2],
- [160, 50.2],
- [170, 72.9],
- [157.5, 59.8],
- [167.6, 61],
- [160.7, 69.1],
- [163.2, 55.9],
- [152.4, 46.5],
- [157.5, 54.3],
- [168.3, 54.8],
- [180.3, 60.7],
- [165.5, 60],
- [165, 62],
- [164.5, 60.3],
- [156, 52.7],
- [160, 74.3],
- [163, 62],
- [165.7, 73.1],
- [161, 80],
- [162, 54.7],
- [166, 53.2],
- [174, 75.7],
- [172.7, 61.1],
- [167.6, 55.7],
- [151.1, 48.7],
- [164.5, 52.3],
- [163.5, 50],
- [152, 59.3],
- [169, 62.5],
- [164, 55.7],
- [161.2, 54.8],
- [155, 45.9],
- [170, 70.6],
- [176.2, 67.2],
- [170, 69.4],
- [162.5, 58.2],
- [170.3, 64.8],
- [164.1, 71.6],
- [169.5, 52.8],
- [163.2, 59.8],
- [154.5, 49],
- [159.8, 50],
- [173.2, 69.2],
- [170, 55.9],
- [161.4, 63.4],
- [169, 58.2],
- [166.2, 58.6],
- [159.4, 45.7],
- [162.5, 52.2],
- [159, 48.6],
- [162.8, 57.8],
- [159, 55.6],
- [179.8, 66.8],
- [162.9, 59.4],
- [161, 53.6],
- [151.1, 73.2],
- [168.2, 53.4],
- [168.9, 69],
- [173.2, 58.4],
- [171.8, 56.2],
- [178, 70.6],
- [164.3, 59.8],
- [163, 72],
- [168.5, 65.2],
- [166.8, 56.6],
- [172.7, 105.2],
- [163.5, 51.8],
- [169.4, 63.4],
- [167.8, 59],
- [159.5, 47.6],
- [167.6, 63],
- [161.2, 55.2],
- [160, 45],
- [163.2, 54],
- [162.2, 50.2],
- [161.3, 60.2],
- [149.5, 44.8],
- [157.5, 58.8],
- [163.2, 56.4],
- [172.7, 62],
- [155, 49.2],
- [156.5, 67.2],
- [164, 53.8],
- [160.9, 54.4],
- [162.8, 58],
- [167, 59.8],
- [160, 54.8],
- [160, 43.2],
- [168.9, 60.5],
- [158.2, 46.4],
- [156, 64.4],
- [160, 48.8],
- [167.1, 62.2],
- [158, 55.5],
- [167.6, 57.8],
- [156, 54.6],
- [162.1, 59.2],
- [173.4, 52.7],
- [159.8, 53.2],
- [170.5, 64.5],
- [159.2, 51.8],
- [157.5, 56],
- [161.3, 63.6],
- [162.6, 63.2],
- [160, 59.5],
- [168.9, 56.8],
- [165.1, 64.1],
- [162.6, 50],
- [165.1, 72.3],
- [166.4, 55],
- [160, 55.9],
- [152.4, 60.4],
- [170.2, 69.1],
- [162.6, 84.5],
- [170.2, 55.9],
- [158.8, 55.5],
- [172.7, 69.5],
- [167.6, 76.4],
- [162.6, 61.4],
- [167.6, 65.9],
- [156.2, 58.6],
- [175.2, 66.8],
- [172.1, 56.6],
- [162.6, 58.6],
- [160, 55.9],
- [165.1, 59.1],
- [182.9, 81.8],
- [166.4, 70.7],
- [165.1, 56.8],
- [177.8, 60],
- [165.1, 58.2],
- [175.3, 72.7],
- [154.9, 54.1],
- [158.8, 49.1],
- [172.7, 75.9],
- [168.9, 55],
- [161.3, 57.3],
- [167.6, 55],
- [165.1, 65.5],
- [175.3, 65.5],
- [157.5, 48.6],
- [163.8, 58.6],
- [167.6, 63.6],
- [165.1, 55.2],
- [165.1, 62.7],
- [168.9, 56.6],
- [162.6, 53.9],
- [164.5, 63.2],
- [176.5, 73.6],
- [168.9, 62],
- [175.3, 63.6],
- [159.4, 53.2],
- [160, 53.4],
- [170.2, 55],
- [162.6, 70.5],
- [167.6, 54.5],
- [162.6, 54.5],
- [160.7, 55.9],
- [160, 59],
- [157.5, 63.6],
- [162.6, 54.5],
- [152.4, 47.3],
- [170.2, 67.7],
- [165.1, 80.9],
- [172.7, 70.5],
- [165.1, 60.9],
- [170.2, 63.6],
- [170.2, 54.5],
- [170.2, 59.1],
- [161.3, 70.5],
- [167.6, 52.7],
- [167.6, 62.7],
- [165.1, 86.3],
- [162.6, 66.4],
- [152.4, 67.3],
- [168.9, 63],
- [170.2, 73.6],
- [175.2, 62.3],
- [175.2, 57.7],
- [160, 55.4],
- [165.1, 104.1],
- [174, 55.5],
- [170.2, 77.3],
- [160, 80.5],
- [167.6, 64.5],
- [167.6, 72.3],
- [167.6, 61.4],
- [154.9, 58.2],
- [162.6, 81.8],
- [175.3, 63.6],
- [171.4, 53.4],
- [157.5, 54.5],
- [165.1, 53.6],
- [160, 60],
- [174, 73.6],
- [162.6, 61.4],
- [174, 55.5],
- [162.6, 63.6],
- [161.3, 60.9],
- [156.2, 60],
- [149.9, 46.8],
- [169.5, 57.3],
- [160, 64.1],
- [175.3, 63.6],
- [169.5, 67.3],
- [160, 75.5],
- [172.7, 68.2],
- [162.6, 61.4],
- [157.5, 76.8],
- [176.5, 71.8],
- [164.4, 55.5],
- [160.7, 48.6],
- [174, 66.4],
- [163.8, 67.3]
- ],
- markPoint: {
- data: [{
- type: "max",
- name: "Max"
- }, {
- type: "min",
- name: "Min"
- }]
+ ],
+ yAxis: [
+ {
+ type: 'value',
+ scale: !0,
+ axisLabel: {
+ formatter: '{value} kg',
+ },
},
- markLine: {
- data: [{
- type: "average",
- name: "Mean"
- }]
- }
- }, {
- name: "Data2",
- type: "scatter",
- tooltip: {
- trigger: "item",
- formatter: function(a) {
- return a.value.length > 1 ? a.seriesName + " : " + a.value[0] + "cm " + a.value[1] + "kg " : a.seriesName + " : " + a.name + " : " + a.value + "kg "
- }
+ ],
+ series: [
+ {
+ name: 'Data1',
+ type: 'scatter',
+ tooltip: {
+ trigger: 'item',
+ formatter: function(a) {
+ return a.value.length > 1
+ ? a.seriesName +
+ ' : ' +
+ a.value[0] +
+ 'cm ' +
+ a.value[1] +
+ 'kg '
+ : a.seriesName + ' : ' + a.name + ' : ' + a.value + 'kg ';
+ },
+ },
+ data: [
+ [161.2, 51.6],
+ [167.5, 59],
+ [159.5, 49.2],
+ [157, 63],
+ [155.8, 53.6],
+ [170, 59],
+ [159.1, 47.6],
+ [166, 69.8],
+ [176.2, 66.8],
+ [160.2, 75.2],
+ [172.5, 55.2],
+ [170.9, 54.2],
+ [172.9, 62.5],
+ [153.4, 42],
+ [160, 50],
+ [147.2, 49.8],
+ [168.2, 49.2],
+ [175, 73.2],
+ [157, 47.8],
+ [167.6, 68.8],
+ [159.5, 50.6],
+ [175, 82.5],
+ [166.8, 57.2],
+ [176.5, 87.8],
+ [170.2, 72.8],
+ [174, 54.5],
+ [173, 59.8],
+ [179.9, 67.3],
+ [170.5, 67.8],
+ [160, 47],
+ [154.4, 46.2],
+ [162, 55],
+ [176.5, 83],
+ [160, 54.4],
+ [152, 45.8],
+ [162.1, 53.6],
+ [170, 73.2],
+ [160.2, 52.1],
+ [161.3, 67.9],
+ [166.4, 56.6],
+ [168.9, 62.3],
+ [163.8, 58.5],
+ [167.6, 54.5],
+ [160, 50.2],
+ [161.3, 60.3],
+ [167.6, 58.3],
+ [165.1, 56.2],
+ [160, 50.2],
+ [170, 72.9],
+ [157.5, 59.8],
+ [167.6, 61],
+ [160.7, 69.1],
+ [163.2, 55.9],
+ [152.4, 46.5],
+ [157.5, 54.3],
+ [168.3, 54.8],
+ [180.3, 60.7],
+ [165.5, 60],
+ [165, 62],
+ [164.5, 60.3],
+ [156, 52.7],
+ [160, 74.3],
+ [163, 62],
+ [165.7, 73.1],
+ [161, 80],
+ [162, 54.7],
+ [166, 53.2],
+ [174, 75.7],
+ [172.7, 61.1],
+ [167.6, 55.7],
+ [151.1, 48.7],
+ [164.5, 52.3],
+ [163.5, 50],
+ [152, 59.3],
+ [169, 62.5],
+ [164, 55.7],
+ [161.2, 54.8],
+ [155, 45.9],
+ [170, 70.6],
+ [176.2, 67.2],
+ [170, 69.4],
+ [162.5, 58.2],
+ [170.3, 64.8],
+ [164.1, 71.6],
+ [169.5, 52.8],
+ [163.2, 59.8],
+ [154.5, 49],
+ [159.8, 50],
+ [173.2, 69.2],
+ [170, 55.9],
+ [161.4, 63.4],
+ [169, 58.2],
+ [166.2, 58.6],
+ [159.4, 45.7],
+ [162.5, 52.2],
+ [159, 48.6],
+ [162.8, 57.8],
+ [159, 55.6],
+ [179.8, 66.8],
+ [162.9, 59.4],
+ [161, 53.6],
+ [151.1, 73.2],
+ [168.2, 53.4],
+ [168.9, 69],
+ [173.2, 58.4],
+ [171.8, 56.2],
+ [178, 70.6],
+ [164.3, 59.8],
+ [163, 72],
+ [168.5, 65.2],
+ [166.8, 56.6],
+ [172.7, 105.2],
+ [163.5, 51.8],
+ [169.4, 63.4],
+ [167.8, 59],
+ [159.5, 47.6],
+ [167.6, 63],
+ [161.2, 55.2],
+ [160, 45],
+ [163.2, 54],
+ [162.2, 50.2],
+ [161.3, 60.2],
+ [149.5, 44.8],
+ [157.5, 58.8],
+ [163.2, 56.4],
+ [172.7, 62],
+ [155, 49.2],
+ [156.5, 67.2],
+ [164, 53.8],
+ [160.9, 54.4],
+ [162.8, 58],
+ [167, 59.8],
+ [160, 54.8],
+ [160, 43.2],
+ [168.9, 60.5],
+ [158.2, 46.4],
+ [156, 64.4],
+ [160, 48.8],
+ [167.1, 62.2],
+ [158, 55.5],
+ [167.6, 57.8],
+ [156, 54.6],
+ [162.1, 59.2],
+ [173.4, 52.7],
+ [159.8, 53.2],
+ [170.5, 64.5],
+ [159.2, 51.8],
+ [157.5, 56],
+ [161.3, 63.6],
+ [162.6, 63.2],
+ [160, 59.5],
+ [168.9, 56.8],
+ [165.1, 64.1],
+ [162.6, 50],
+ [165.1, 72.3],
+ [166.4, 55],
+ [160, 55.9],
+ [152.4, 60.4],
+ [170.2, 69.1],
+ [162.6, 84.5],
+ [170.2, 55.9],
+ [158.8, 55.5],
+ [172.7, 69.5],
+ [167.6, 76.4],
+ [162.6, 61.4],
+ [167.6, 65.9],
+ [156.2, 58.6],
+ [175.2, 66.8],
+ [172.1, 56.6],
+ [162.6, 58.6],
+ [160, 55.9],
+ [165.1, 59.1],
+ [182.9, 81.8],
+ [166.4, 70.7],
+ [165.1, 56.8],
+ [177.8, 60],
+ [165.1, 58.2],
+ [175.3, 72.7],
+ [154.9, 54.1],
+ [158.8, 49.1],
+ [172.7, 75.9],
+ [168.9, 55],
+ [161.3, 57.3],
+ [167.6, 55],
+ [165.1, 65.5],
+ [175.3, 65.5],
+ [157.5, 48.6],
+ [163.8, 58.6],
+ [167.6, 63.6],
+ [165.1, 55.2],
+ [165.1, 62.7],
+ [168.9, 56.6],
+ [162.6, 53.9],
+ [164.5, 63.2],
+ [176.5, 73.6],
+ [168.9, 62],
+ [175.3, 63.6],
+ [159.4, 53.2],
+ [160, 53.4],
+ [170.2, 55],
+ [162.6, 70.5],
+ [167.6, 54.5],
+ [162.6, 54.5],
+ [160.7, 55.9],
+ [160, 59],
+ [157.5, 63.6],
+ [162.6, 54.5],
+ [152.4, 47.3],
+ [170.2, 67.7],
+ [165.1, 80.9],
+ [172.7, 70.5],
+ [165.1, 60.9],
+ [170.2, 63.6],
+ [170.2, 54.5],
+ [170.2, 59.1],
+ [161.3, 70.5],
+ [167.6, 52.7],
+ [167.6, 62.7],
+ [165.1, 86.3],
+ [162.6, 66.4],
+ [152.4, 67.3],
+ [168.9, 63],
+ [170.2, 73.6],
+ [175.2, 62.3],
+ [175.2, 57.7],
+ [160, 55.4],
+ [165.1, 104.1],
+ [174, 55.5],
+ [170.2, 77.3],
+ [160, 80.5],
+ [167.6, 64.5],
+ [167.6, 72.3],
+ [167.6, 61.4],
+ [154.9, 58.2],
+ [162.6, 81.8],
+ [175.3, 63.6],
+ [171.4, 53.4],
+ [157.5, 54.5],
+ [165.1, 53.6],
+ [160, 60],
+ [174, 73.6],
+ [162.6, 61.4],
+ [174, 55.5],
+ [162.6, 63.6],
+ [161.3, 60.9],
+ [156.2, 60],
+ [149.9, 46.8],
+ [169.5, 57.3],
+ [160, 64.1],
+ [175.3, 63.6],
+ [169.5, 67.3],
+ [160, 75.5],
+ [172.7, 68.2],
+ [162.6, 61.4],
+ [157.5, 76.8],
+ [176.5, 71.8],
+ [164.4, 55.5],
+ [160.7, 48.6],
+ [174, 66.4],
+ [163.8, 67.3],
+ ],
+ markPoint: {
+ data: [
+ {
+ type: 'max',
+ name: 'Max',
+ },
+ {
+ type: 'min',
+ name: 'Min',
+ },
+ ],
+ },
+ markLine: {
+ data: [
+ {
+ type: 'average',
+ name: 'Mean',
+ },
+ ],
+ },
},
- data: [
- [174, 65.6],
- [175.3, 71.8],
- [193.5, 80.7],
- [186.5, 72.6],
- [187.2, 78.8],
- [181.5, 74.8],
- [184, 86.4],
- [184.5, 78.4],
- [175, 62],
- [184, 81.6],
- [180, 76.6],
- [177.8, 83.6],
- [192, 90],
- [176, 74.6],
- [174, 71],
- [184, 79.6],
- [192.7, 93.8],
- [171.5, 70],
- [173, 72.4],
- [176, 85.9],
- [176, 78.8],
- [180.5, 77.8],
- [172.7, 66.2],
- [176, 86.4],
- [173.5, 81.8],
- [178, 89.6],
- [180.3, 82.8],
- [180.3, 76.4],
- [164.5, 63.2],
- [173, 60.9],
- [183.5, 74.8],
- [175.5, 70],
- [188, 72.4],
- [189.2, 84.1],
- [172.8, 69.1],
- [170, 59.5],
- [182, 67.2],
- [170, 61.3],
- [177.8, 68.6],
- [184.2, 80.1],
- [186.7, 87.8],
- [171.4, 84.7],
- [172.7, 73.4],
- [175.3, 72.1],
- [180.3, 82.6],
- [182.9, 88.7],
- [188, 84.1],
- [177.2, 94.1],
- [172.1, 74.9],
- [167, 59.1],
- [169.5, 75.6],
- [174, 86.2],
- [172.7, 75.3],
- [182.2, 87.1],
- [164.1, 55.2],
- [163, 57],
- [171.5, 61.4],
- [184.2, 76.8],
- [174, 86.8],
- [174, 72.2],
- [177, 71.6],
- [186, 84.8],
- [167, 68.2],
- [171.8, 66.1],
- [182, 72],
- [167, 64.6],
- [177.8, 74.8],
- [164.5, 70],
- [192, 101.6],
- [175.5, 63.2],
- [171.2, 79.1],
- [181.6, 78.9],
- [167.4, 67.7],
- [181.1, 66],
- [177, 68.2],
- [174.5, 63.9],
- [177.5, 72],
- [170.5, 56.8],
- [182.4, 74.5],
- [197.1, 90.9],
- [180.1, 93],
- [175.5, 80.9],
- [180.6, 72.7],
- [184.4, 68],
- [175.5, 70.9],
- [180.6, 72.5],
- [177, 72.5],
- [177.1, 83.4],
- [181.6, 75.5],
- [176.5, 73],
- [175, 70.2],
- [174, 73.4],
- [165.1, 70.5],
- [177, 68.9],
- [192, 102.3],
- [176.5, 68.4],
- [169.4, 65.9],
- [182.1, 75.7],
- [179.8, 84.5],
- [175.3, 87.7],
- [184.9, 86.4],
- [177.3, 73.2],
- [167.4, 53.9],
- [178.1, 72],
- [168.9, 55.5],
- [157.2, 58.4],
- [180.3, 83.2],
- [170.2, 72.7],
- [177.8, 64.1],
- [172.7, 72.3],
- [165.1, 65],
- [186.7, 86.4],
- [165.1, 65],
- [174, 88.6],
- [175.3, 84.1],
- [185.4, 66.8],
- [177.8, 75.5],
- [180.3, 93.2],
- [180.3, 82.7],
- [177.8, 58],
- [177.8, 79.5],
- [177.8, 78.6],
- [177.8, 71.8],
- [177.8, 116.4],
- [163.8, 72.2],
- [188, 83.6],
- [198.1, 85.5],
- [175.3, 90.9],
- [166.4, 85.9],
- [190.5, 89.1],
- [166.4, 75],
- [177.8, 77.7],
- [179.7, 86.4],
- [172.7, 90.9],
- [190.5, 73.6],
- [185.4, 76.4],
- [168.9, 69.1],
- [167.6, 84.5],
- [175.3, 64.5],
- [170.2, 69.1],
- [190.5, 108.6],
- [177.8, 86.4],
- [190.5, 80.9],
- [177.8, 87.7],
- [184.2, 94.5],
- [176.5, 80.2],
- [177.8, 72],
- [180.3, 71.4],
- [171.4, 72.7],
- [172.7, 84.1],
- [172.7, 76.8],
- [177.8, 63.6],
- [177.8, 80.9],
- [182.9, 80.9],
- [170.2, 85.5],
- [167.6, 68.6],
- [175.3, 67.7],
- [165.1, 66.4],
- [185.4, 102.3],
- [181.6, 70.5],
- [172.7, 95.9],
- [190.5, 84.1],
- [179.1, 87.3],
- [175.3, 71.8],
- [170.2, 65.9],
- [193, 95.9],
- [171.4, 91.4],
- [177.8, 81.8],
- [177.8, 96.8],
- [167.6, 69.1],
- [167.6, 82.7],
- [180.3, 75.5],
- [182.9, 79.5],
- [176.5, 73.6],
- [186.7, 91.8],
- [188, 84.1],
- [188, 85.9],
- [177.8, 81.8],
- [174, 82.5],
- [177.8, 80.5],
- [171.4, 70],
- [185.4, 81.8],
- [185.4, 84.1],
- [188, 90.5],
- [188, 91.4],
- [182.9, 89.1],
- [176.5, 85],
- [175.3, 69.1],
- [175.3, 73.6],
- [188, 80.5],
- [188, 82.7],
- [175.3, 86.4],
- [170.5, 67.7],
- [179.1, 92.7],
- [177.8, 93.6],
- [175.3, 70.9],
- [182.9, 75],
- [170.8, 93.2],
- [188, 93.2],
- [180.3, 77.7],
- [177.8, 61.4],
- [185.4, 94.1],
- [168.9, 75],
- [185.4, 83.6],
- [180.3, 85.5],
- [174, 73.9],
- [167.6, 66.8],
- [182.9, 87.3],
- [160, 72.3],
- [180.3, 88.6],
- [167.6, 75.5],
- [186.7, 101.4],
- [175.3, 91.1],
- [175.3, 67.3],
- [175.9, 77.7],
- [175.3, 81.8],
- [179.1, 75.5],
- [181.6, 84.5],
- [177.8, 76.6],
- [182.9, 85],
- [177.8, 102.5],
- [184.2, 77.3],
- [179.1, 71.8],
- [176.5, 87.9],
- [188, 94.3],
- [174, 70.9],
- [167.6, 64.5],
- [170.2, 77.3],
- [167.6, 72.3],
- [188, 87.3],
- [174, 80],
- [176.5, 82.3],
- [180.3, 73.6],
- [167.6, 74.1],
- [188, 85.9],
- [180.3, 73.2],
- [167.6, 76.3],
- [183, 65.9],
- [183, 90.9],
- [179.1, 89.1],
- [170.2, 62.3],
- [177.8, 82.7],
- [179.1, 79.1],
- [190.5, 98.2],
- [177.8, 84.1],
- [180.3, 83.2],
- [180.3, 83.2]
- ],
- markPoint: {
- data: [{
- type: "max",
- name: "Max"
- }, {
- type: "min",
- name: "Min"
- }]
+ {
+ name: 'Data2',
+ type: 'scatter',
+ tooltip: {
+ trigger: 'item',
+ formatter: function(a) {
+ return a.value.length > 1
+ ? a.seriesName +
+ ' : ' +
+ a.value[0] +
+ 'cm ' +
+ a.value[1] +
+ 'kg '
+ : a.seriesName + ' : ' + a.name + ' : ' + a.value + 'kg ';
+ },
+ },
+ data: [
+ [174, 65.6],
+ [175.3, 71.8],
+ [193.5, 80.7],
+ [186.5, 72.6],
+ [187.2, 78.8],
+ [181.5, 74.8],
+ [184, 86.4],
+ [184.5, 78.4],
+ [175, 62],
+ [184, 81.6],
+ [180, 76.6],
+ [177.8, 83.6],
+ [192, 90],
+ [176, 74.6],
+ [174, 71],
+ [184, 79.6],
+ [192.7, 93.8],
+ [171.5, 70],
+ [173, 72.4],
+ [176, 85.9],
+ [176, 78.8],
+ [180.5, 77.8],
+ [172.7, 66.2],
+ [176, 86.4],
+ [173.5, 81.8],
+ [178, 89.6],
+ [180.3, 82.8],
+ [180.3, 76.4],
+ [164.5, 63.2],
+ [173, 60.9],
+ [183.5, 74.8],
+ [175.5, 70],
+ [188, 72.4],
+ [189.2, 84.1],
+ [172.8, 69.1],
+ [170, 59.5],
+ [182, 67.2],
+ [170, 61.3],
+ [177.8, 68.6],
+ [184.2, 80.1],
+ [186.7, 87.8],
+ [171.4, 84.7],
+ [172.7, 73.4],
+ [175.3, 72.1],
+ [180.3, 82.6],
+ [182.9, 88.7],
+ [188, 84.1],
+ [177.2, 94.1],
+ [172.1, 74.9],
+ [167, 59.1],
+ [169.5, 75.6],
+ [174, 86.2],
+ [172.7, 75.3],
+ [182.2, 87.1],
+ [164.1, 55.2],
+ [163, 57],
+ [171.5, 61.4],
+ [184.2, 76.8],
+ [174, 86.8],
+ [174, 72.2],
+ [177, 71.6],
+ [186, 84.8],
+ [167, 68.2],
+ [171.8, 66.1],
+ [182, 72],
+ [167, 64.6],
+ [177.8, 74.8],
+ [164.5, 70],
+ [192, 101.6],
+ [175.5, 63.2],
+ [171.2, 79.1],
+ [181.6, 78.9],
+ [167.4, 67.7],
+ [181.1, 66],
+ [177, 68.2],
+ [174.5, 63.9],
+ [177.5, 72],
+ [170.5, 56.8],
+ [182.4, 74.5],
+ [197.1, 90.9],
+ [180.1, 93],
+ [175.5, 80.9],
+ [180.6, 72.7],
+ [184.4, 68],
+ [175.5, 70.9],
+ [180.6, 72.5],
+ [177, 72.5],
+ [177.1, 83.4],
+ [181.6, 75.5],
+ [176.5, 73],
+ [175, 70.2],
+ [174, 73.4],
+ [165.1, 70.5],
+ [177, 68.9],
+ [192, 102.3],
+ [176.5, 68.4],
+ [169.4, 65.9],
+ [182.1, 75.7],
+ [179.8, 84.5],
+ [175.3, 87.7],
+ [184.9, 86.4],
+ [177.3, 73.2],
+ [167.4, 53.9],
+ [178.1, 72],
+ [168.9, 55.5],
+ [157.2, 58.4],
+ [180.3, 83.2],
+ [170.2, 72.7],
+ [177.8, 64.1],
+ [172.7, 72.3],
+ [165.1, 65],
+ [186.7, 86.4],
+ [165.1, 65],
+ [174, 88.6],
+ [175.3, 84.1],
+ [185.4, 66.8],
+ [177.8, 75.5],
+ [180.3, 93.2],
+ [180.3, 82.7],
+ [177.8, 58],
+ [177.8, 79.5],
+ [177.8, 78.6],
+ [177.8, 71.8],
+ [177.8, 116.4],
+ [163.8, 72.2],
+ [188, 83.6],
+ [198.1, 85.5],
+ [175.3, 90.9],
+ [166.4, 85.9],
+ [190.5, 89.1],
+ [166.4, 75],
+ [177.8, 77.7],
+ [179.7, 86.4],
+ [172.7, 90.9],
+ [190.5, 73.6],
+ [185.4, 76.4],
+ [168.9, 69.1],
+ [167.6, 84.5],
+ [175.3, 64.5],
+ [170.2, 69.1],
+ [190.5, 108.6],
+ [177.8, 86.4],
+ [190.5, 80.9],
+ [177.8, 87.7],
+ [184.2, 94.5],
+ [176.5, 80.2],
+ [177.8, 72],
+ [180.3, 71.4],
+ [171.4, 72.7],
+ [172.7, 84.1],
+ [172.7, 76.8],
+ [177.8, 63.6],
+ [177.8, 80.9],
+ [182.9, 80.9],
+ [170.2, 85.5],
+ [167.6, 68.6],
+ [175.3, 67.7],
+ [165.1, 66.4],
+ [185.4, 102.3],
+ [181.6, 70.5],
+ [172.7, 95.9],
+ [190.5, 84.1],
+ [179.1, 87.3],
+ [175.3, 71.8],
+ [170.2, 65.9],
+ [193, 95.9],
+ [171.4, 91.4],
+ [177.8, 81.8],
+ [177.8, 96.8],
+ [167.6, 69.1],
+ [167.6, 82.7],
+ [180.3, 75.5],
+ [182.9, 79.5],
+ [176.5, 73.6],
+ [186.7, 91.8],
+ [188, 84.1],
+ [188, 85.9],
+ [177.8, 81.8],
+ [174, 82.5],
+ [177.8, 80.5],
+ [171.4, 70],
+ [185.4, 81.8],
+ [185.4, 84.1],
+ [188, 90.5],
+ [188, 91.4],
+ [182.9, 89.1],
+ [176.5, 85],
+ [175.3, 69.1],
+ [175.3, 73.6],
+ [188, 80.5],
+ [188, 82.7],
+ [175.3, 86.4],
+ [170.5, 67.7],
+ [179.1, 92.7],
+ [177.8, 93.6],
+ [175.3, 70.9],
+ [182.9, 75],
+ [170.8, 93.2],
+ [188, 93.2],
+ [180.3, 77.7],
+ [177.8, 61.4],
+ [185.4, 94.1],
+ [168.9, 75],
+ [185.4, 83.6],
+ [180.3, 85.5],
+ [174, 73.9],
+ [167.6, 66.8],
+ [182.9, 87.3],
+ [160, 72.3],
+ [180.3, 88.6],
+ [167.6, 75.5],
+ [186.7, 101.4],
+ [175.3, 91.1],
+ [175.3, 67.3],
+ [175.9, 77.7],
+ [175.3, 81.8],
+ [179.1, 75.5],
+ [181.6, 84.5],
+ [177.8, 76.6],
+ [182.9, 85],
+ [177.8, 102.5],
+ [184.2, 77.3],
+ [179.1, 71.8],
+ [176.5, 87.9],
+ [188, 94.3],
+ [174, 70.9],
+ [167.6, 64.5],
+ [170.2, 77.3],
+ [167.6, 72.3],
+ [188, 87.3],
+ [174, 80],
+ [176.5, 82.3],
+ [180.3, 73.6],
+ [167.6, 74.1],
+ [188, 85.9],
+ [180.3, 73.2],
+ [167.6, 76.3],
+ [183, 65.9],
+ [183, 90.9],
+ [179.1, 89.1],
+ [170.2, 62.3],
+ [177.8, 82.7],
+ [179.1, 79.1],
+ [190.5, 98.2],
+ [177.8, 84.1],
+ [180.3, 83.2],
+ [180.3, 83.2],
+ ],
+ markPoint: {
+ data: [
+ {
+ type: 'max',
+ name: 'Max',
+ },
+ {
+ type: 'min',
+ name: 'Min',
+ },
+ ],
+ },
+ markLine: {
+ data: [
+ {
+ type: 'average',
+ name: 'Mean',
+ },
+ ],
+ },
},
- markLine: {
- data: [{
- type: "average",
- name: "Mean"
- }]
- }
- }]
- })
+ ],
+ });
}
- if ($("#echart_bar_horizontal").length) {
- var b = echarts.init(document.getElementById("echart_bar_horizontal"), a);
+ if ($('#echart_bar_horizontal').length) {
+ var b = echarts.init(document.getElementById('echart_bar_horizontal'), a);
b.setOption({
title: {
- text: "Bar Graph",
- subtext: "Graph subtitle"
+ text: 'Bar Graph',
+ subtext: 'Graph subtitle',
},
tooltip: {
- trigger: "axis"
+ trigger: 'axis',
},
legend: {
x: 100,
- data: ["2015", "2016"]
+ data: ['2015', '2016'],
},
toolbox: {
show: !0,
feature: {
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
+ title: 'Save Image',
+ },
+ },
},
calculable: !0,
- xAxis: [{
- type: "value",
- boundaryGap: [0, .01]
- }],
- yAxis: [{
- type: "category",
- data: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"]
- }],
- series: [{
- name: "2015",
- type: "bar",
- data: [18203, 23489, 29034, 104970, 131744, 630230]
- }, {
- name: "2016",
- type: "bar",
- data: [19325, 23438, 31e3, 121594, 134141, 681807]
- }]
- })
+ xAxis: [
+ {
+ type: 'value',
+ boundaryGap: [0, 0.01],
+ },
+ ],
+ yAxis: [
+ {
+ type: 'category',
+ data: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
+ },
+ ],
+ series: [
+ {
+ name: '2015',
+ type: 'bar',
+ data: [18203, 23489, 29034, 104970, 131744, 630230],
+ },
+ {
+ name: '2016',
+ type: 'bar',
+ data: [19325, 23438, 31e3, 121594, 134141, 681807],
+ },
+ ],
+ });
}
- if ($("#echart_pie2").length) {
- var h = echarts.init(document.getElementById("echart_pie2"), a);
+ if ($('#echart_pie2').length) {
+ var h = echarts.init(document.getElementById('echart_pie2'), a);
h.setOption({
tooltip: {
- trigger: "item",
- formatter: "{a} {b} : {c} ({d}%)"
+ trigger: 'item',
+ formatter: '{a} {b} : {c} ({d}%)',
},
legend: {
- x: "center",
- y: "bottom",
- data: ["rose1", "rose2", "rose3", "rose4", "rose5", "rose6"]
+ x: 'center',
+ y: 'bottom',
+ data: ['rose1', 'rose2', 'rose3', 'rose4', 'rose5', 'rose6'],
},
toolbox: {
show: !0,
feature: {
magicType: {
show: !0,
- type: ["pie", "funnel"]
+ type: ['pie', 'funnel'],
},
restore: {
show: !0,
- title: "Restore"
+ title: 'Restore',
},
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
+ title: 'Save Image',
+ },
+ },
},
calculable: !0,
- series: [{
- name: "Area Mode",
- type: "pie",
- radius: [25, 90],
- center: ["50%", 170],
- roseType: "area",
- x: "50%",
- max: 40,
- sort: "ascending",
- data: [{
- value: 10,
- name: "rose1"
- }, {
- value: 5,
- name: "rose2"
- }, {
- value: 15,
- name: "rose3"
- }, {
- value: 25,
- name: "rose4"
- }, {
- value: 20,
- name: "rose5"
- }, {
- value: 35,
- name: "rose6"
- }]
- }]
- })
+ series: [
+ {
+ name: 'Area Mode',
+ type: 'pie',
+ radius: [25, 90],
+ center: ['50%', 170],
+ roseType: 'area',
+ x: '50%',
+ max: 40,
+ sort: 'ascending',
+ data: [
+ {
+ value: 10,
+ name: 'rose1',
+ },
+ {
+ value: 5,
+ name: 'rose2',
+ },
+ {
+ value: 15,
+ name: 'rose3',
+ },
+ {
+ value: 25,
+ name: 'rose4',
+ },
+ {
+ value: 20,
+ name: 'rose5',
+ },
+ {
+ value: 35,
+ name: 'rose6',
+ },
+ ],
+ },
+ ],
+ });
}
- if ($("#echart_donut").length) {
- var i = echarts.init(document.getElementById("echart_donut"), a);
+ if ($('#echart_donut').length) {
+ var i = echarts.init(document.getElementById('echart_donut'), a);
i.setOption({
tooltip: {
- trigger: "item",
- formatter: "{a} {b} : {c} ({d}%)"
+ trigger: 'item',
+ formatter: '{a} {b} : {c} ({d}%)',
},
calculable: !0,
legend: {
- x: "center",
- y: "bottom",
- data: ["Direct Access", "E-mail Marketing", "Union Ad", "Video Ads", "Search Engine"]
+ x: 'center',
+ y: 'bottom',
+ data: [
+ 'Direct Access',
+ 'E-mail Marketing',
+ 'Union Ad',
+ 'Video Ads',
+ 'Search Engine',
+ ],
},
toolbox: {
show: !0,
feature: {
magicType: {
show: !0,
- type: ["pie", "funnel"],
+ type: ['pie', 'funnel'],
option: {
funnel: {
- x: "25%",
- width: "50%",
- funnelAlign: "center",
- max: 1548
- }
- }
+ x: '25%',
+ width: '50%',
+ funnelAlign: 'center',
+ max: 1548,
+ },
+ },
},
restore: {
show: !0,
- title: "Restore"
+ title: 'Restore',
},
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
- },
- series: [{
- name: "Access to the resource",
- type: "pie",
- radius: ["35%", "55%"],
- itemStyle: {
- normal: {
- label: {
- show: !0
- },
- labelLine: {
- show: !0
- }
+ title: 'Save Image',
},
- emphasis: {
- label: {
- show: !0,
- position: "center",
- textStyle: {
- fontSize: "14",
- fontWeight: "normal"
- }
- }
- }
},
- data: [{
- value: 335,
- name: "Direct Access"
- }, {
- value: 310,
- name: "E-mail Marketing"
- }, {
- value: 234,
- name: "Union Ad"
- }, {
- value: 135,
- name: "Video Ads"
- }, {
- value: 1548,
- name: "Search Engine"
- }]
- }]
- })
+ },
+ series: [
+ {
+ name: 'Access to the resource',
+ type: 'pie',
+ radius: ['35%', '55%'],
+ itemStyle: {
+ normal: {
+ label: {
+ show: !0,
+ },
+ labelLine: {
+ show: !0,
+ },
+ },
+ emphasis: {
+ label: {
+ show: !0,
+ position: 'center',
+ textStyle: {
+ fontSize: '14',
+ fontWeight: 'normal',
+ },
+ },
+ },
+ },
+ data: [
+ {
+ value: 335,
+ name: 'Direct Access',
+ },
+ {
+ value: 310,
+ name: 'E-mail Marketing',
+ },
+ {
+ value: 234,
+ name: 'Union Ad',
+ },
+ {
+ value: 135,
+ name: 'Video Ads',
+ },
+ {
+ value: 1548,
+ name: 'Search Engine',
+ },
+ ],
+ },
+ ],
+ });
}
- if ($("#echart_pie").length) {
- var j = echarts.init(document.getElementById("echart_pie"), a);
+ if ($('#echart_pie').length) {
+ var j = echarts.init(document.getElementById('echart_pie'), a);
j.setOption({
tooltip: {
- trigger: "item",
- formatter: "{a} {b} : {c} ({d}%)"
+ trigger: 'item',
+ formatter: '{a} {b} : {c} ({d}%)',
},
legend: {
- x: "center",
- y: "bottom",
- data: ["Direct Access", "E-mail Marketing", "Union Ad", "Video Ads", "Search Engine"]
+ x: 'center',
+ y: 'bottom',
+ data: [
+ 'Direct Access',
+ 'E-mail Marketing',
+ 'Union Ad',
+ 'Video Ads',
+ 'Search Engine',
+ ],
},
toolbox: {
show: !0,
feature: {
magicType: {
show: !0,
- type: ["pie", "funnel"],
+ type: ['pie', 'funnel'],
option: {
funnel: {
- x: "25%",
- width: "50%",
- funnelAlign: "left",
- max: 1548
- }
- }
+ x: '25%',
+ width: '50%',
+ funnelAlign: 'left',
+ max: 1548,
+ },
+ },
},
restore: {
show: !0,
- title: "Restore"
+ title: 'Restore',
},
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
+ title: 'Save Image',
+ },
+ },
},
calculable: !0,
- series: [{
- name: "访问来源",
- type: "pie",
- radius: "55%",
- center: ["50%", "48%"],
- data: [{
- value: 335,
- name: "Direct Access"
- }, {
- value: 310,
- name: "E-mail Marketing"
- }, {
- value: 234,
- name: "Union Ad"
- }, {
- value: 135,
- name: "Video Ads"
- }, {
- value: 1548,
- name: "Search Engine"
- }]
- }]
+ series: [
+ {
+ name: '访问来源',
+ type: 'pie',
+ radius: '55%',
+ center: ['50%', '48%'],
+ data: [
+ {
+ value: 335,
+ name: 'Direct Access',
+ },
+ {
+ value: 310,
+ name: 'E-mail Marketing',
+ },
+ {
+ value: 234,
+ name: 'Union Ad',
+ },
+ {
+ value: 135,
+ name: 'Video Ads',
+ },
+ {
+ value: 1548,
+ name: 'Search Engine',
+ },
+ ],
+ },
+ ],
});
var k = {
normal: {
label: {
- show: !1
+ show: !1,
},
labelLine: {
- show: !1
- }
- }
+ show: !1,
+ },
+ },
},
l = {
normal: {
- color: "rgba(0,0,0,0)",
+ color: 'rgba(0,0,0,0)',
label: {
- show: !1
+ show: !1,
},
labelLine: {
- show: !1
- }
+ show: !1,
+ },
},
emphasis: {
- color: "rgba(0,0,0,0)"
- }
- }
+ color: 'rgba(0,0,0,0)',
+ },
+ };
}
- if ($("#echart_mini_pie").length) {
- var m = echarts.init(document.getElementById("echart_mini_pie"), a);
+ if ($('#echart_mini_pie').length) {
+ var m = echarts.init(document.getElementById('echart_mini_pie'), a);
m.setOption({
title: {
- text: "Chart #2",
- subtext: "From ExcelHome",
- sublink: "http://e.weibo.com/1341556070/AhQXtjbqh",
- x: "center",
- y: "center",
+ text: 'Chart #2',
+ subtext: 'From ExcelHome',
+ sublink: 'http://e.weibo.com/1341556070/AhQXtjbqh',
+ x: 'center',
+ y: 'center',
itemGap: 20,
textStyle: {
- color: "rgba(30,144,255,0.8)",
- fontFamily: "微软雅黑",
+ color: 'rgba(30,144,255,0.8)',
+ fontFamily: '微软雅黑',
fontSize: 35,
- fontWeight: "bolder"
- }
+ fontWeight: 'bolder',
+ },
},
tooltip: {
show: !0,
- formatter: "{a} {b} : {c} ({d}%)"
+ formatter: '{a} {b} : {c} ({d}%)',
},
legend: {
- orient: "vertical",
+ orient: 'vertical',
x: 170,
y: 45,
itemGap: 12,
- data: ["68%Something #1", "29%Something #2", "3%Something #3"]
+ data: ['68%Something #1', '29%Something #2', '3%Something #3'],
},
toolbox: {
show: !0,
feature: {
mark: {
- show: !0
+ show: !0,
},
dataView: {
show: !0,
- title: "Text View",
- lang: ["Text View", "Close", "Refresh"],
- readOnly: !1
+ title: 'Text View',
+ lang: ['Text View', 'Close', 'Refresh'],
+ readOnly: !1,
},
restore: {
show: !0,
- title: "Restore"
+ title: 'Restore',
},
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
+ title: 'Save Image',
+ },
+ },
},
- series: [{
- name: "1",
- type: "pie",
- clockWise: !1,
- radius: [105, 130],
- itemStyle: k,
- data: [{
- value: 68,
- name: "68%Something #1"
- }, {
- value: 32,
- name: "invisible",
- itemStyle: l
- }]
- }, {
- name: "2",
- type: "pie",
- clockWise: !1,
- radius: [80, 105],
- itemStyle: k,
- data: [{
- value: 29,
- name: "29%Something #2"
- }, {
- value: 71,
- name: "invisible",
- itemStyle: l
- }]
- }, {
- name: "3",
- type: "pie",
- clockWise: !1,
- radius: [25, 80],
- itemStyle: k,
- data: [{
- value: 3,
- name: "3%Something #3"
- }, {
- value: 97,
- name: "invisible",
- itemStyle: l
- }]
- }]
- })
+ series: [
+ {
+ name: '1',
+ type: 'pie',
+ clockWise: !1,
+ radius: [105, 130],
+ itemStyle: k,
+ data: [
+ {
+ value: 68,
+ name: '68%Something #1',
+ },
+ {
+ value: 32,
+ name: 'invisible',
+ itemStyle: l,
+ },
+ ],
+ },
+ {
+ name: '2',
+ type: 'pie',
+ clockWise: !1,
+ radius: [80, 105],
+ itemStyle: k,
+ data: [
+ {
+ value: 29,
+ name: '29%Something #2',
+ },
+ {
+ value: 71,
+ name: 'invisible',
+ itemStyle: l,
+ },
+ ],
+ },
+ {
+ name: '3',
+ type: 'pie',
+ clockWise: !1,
+ radius: [25, 80],
+ itemStyle: k,
+ data: [
+ {
+ value: 3,
+ name: '3%Something #3',
+ },
+ {
+ value: 97,
+ name: 'invisible',
+ itemStyle: l,
+ },
+ ],
+ },
+ ],
+ });
}
- if ($("#echart_world_map").length) {
- var n = echarts.init(document.getElementById("echart_world_map"), a);
+ if ($('#echart_world_map').length) {
+ var n = echarts.init(document.getElementById('echart_world_map'), a);
n.setOption({
title: {
- text: "World Population (2010)",
- subtext: "from United Nations, Total population, both sexes combined, as of 1 July (thousands)",
- x: "center",
- y: "top"
+ text: 'World Population (2010)',
+ subtext:
+ 'from United Nations, Total population, both sexes combined, as of 1 July (thousands)',
+ x: 'center',
+ y: 'top',
},
tooltip: {
- trigger: "item",
+ trigger: 'item',
formatter: function(a) {
- var b = (a.value + "").split(".");
- return b = b[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g, "$1,") + "." + b[1], a.seriesName + " " + a.name + " : " + b
- }
+ var b = (a.value + '').split('.');
+ return (
+ (b =
+ b[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g, '$1,') + '.' + b[1]),
+ a.seriesName + ' ' + a.name + ' : ' + b
+ );
+ },
},
toolbox: {
show: !0,
- orient: "vertical",
- x: "right",
- y: "center",
+ orient: 'vertical',
+ x: 'right',
+ y: 'center',
feature: {
mark: {
- show: !0
+ show: !0,
},
dataView: {
show: !0,
- title: "Text View",
- lang: ["Text View", "Close", "Refresh"],
- readOnly: !1
+ title: 'Text View',
+ lang: ['Text View', 'Close', 'Refresh'],
+ readOnly: !1,
},
restore: {
show: !0,
- title: "Restore"
+ title: 'Restore',
},
saveAsImage: {
show: !0,
- title: "Save Image"
- }
- }
+ title: 'Save Image',
+ },
+ },
},
dataRange: {
min: 0,
max: 1e6,
- text: ["High", "Low"],
+ text: ['High', 'Low'],
realtime: !1,
calculable: !0,
- color: ["#087E65", "#26B99A", "#CBEAE3"]
+ color: ['#087E65', '#26B99A', '#CBEAE3'],
},
- series: [{
- name: "World Population (2010)",
- type: "map",
- mapType: "world",
- roam: !1,
- mapLocation: {
- y: 60
+ series: [
+ {
+ name: 'World Population (2010)',
+ type: 'map',
+ mapType: 'world',
+ roam: !1,
+ mapLocation: {
+ y: 60,
+ },
+ itemStyle: {
+ emphasis: {
+ label: {
+ show: !0,
+ },
+ },
+ },
+ data: [
+ {
+ name: 'Afghanistan',
+ value: 28397.812,
+ },
+ {
+ name: 'Angola',
+ value: 19549.124,
+ },
+ {
+ name: 'Albania',
+ value: 3150.143,
+ },
+ {
+ name: 'United Arab Emirates',
+ value: 8441.537,
+ },
+ {
+ name: 'Argentina',
+ value: 40374.224,
+ },
+ {
+ name: 'Armenia',
+ value: 2963.496,
+ },
+ {
+ name: 'French Southern and Antarctic Lands',
+ value: 268.065,
+ },
+ {
+ name: 'Australia',
+ value: 22404.488,
+ },
+ {
+ name: 'Austria',
+ value: 8401.924,
+ },
+ {
+ name: 'Azerbaijan',
+ value: 9094.718,
+ },
+ {
+ name: 'Burundi',
+ value: 9232.753,
+ },
+ {
+ name: 'Belgium',
+ value: 10941.288,
+ },
+ {
+ name: 'Benin',
+ value: 9509.798,
+ },
+ {
+ name: 'Burkina Faso',
+ value: 15540.284,
+ },
+ {
+ name: 'Bangladesh',
+ value: 151125.475,
+ },
+ {
+ name: 'Bulgaria',
+ value: 7389.175,
+ },
+ {
+ name: 'The Bahamas',
+ value: 66402.316,
+ },
+ {
+ name: 'Bosnia and Herzegovina',
+ value: 3845.929,
+ },
+ {
+ name: 'Belarus',
+ value: 9491.07,
+ },
+ {
+ name: 'Belize',
+ value: 308.595,
+ },
+ {
+ name: 'Bermuda',
+ value: 64.951,
+ },
+ {
+ name: 'Bolivia',
+ value: 716.939,
+ },
+ {
+ name: 'Brazil',
+ value: 195210.154,
+ },
+ {
+ name: 'Brunei',
+ value: 27.223,
+ },
+ {
+ name: 'Bhutan',
+ value: 716.939,
+ },
+ {
+ name: 'Botswana',
+ value: 1969.341,
+ },
+ {
+ name: 'Central African Republic',
+ value: 4349.921,
+ },
+ {
+ name: 'Canada',
+ value: 34126.24,
+ },
+ {
+ name: 'Switzerland',
+ value: 7830.534,
+ },
+ {
+ name: 'Chile',
+ value: 17150.76,
+ },
+ {
+ name: 'China',
+ value: 1359821.465,
+ },
+ {
+ name: 'Ivory Coast',
+ value: 60508.978,
+ },
+ {
+ name: 'Cameroon',
+ value: 20624.343,
+ },
+ {
+ name: 'Democratic Republic of the Congo',
+ value: 62191.161,
+ },
+ {
+ name: 'Republic of the Congo',
+ value: 3573.024,
+ },
+ {
+ name: 'Colombia',
+ value: 46444.798,
+ },
+ {
+ name: 'Costa Rica',
+ value: 4669.685,
+ },
+ {
+ name: 'Cuba',
+ value: 11281.768,
+ },
+ {
+ name: 'Northern Cyprus',
+ value: 1.468,
+ },
+ {
+ name: 'Cyprus',
+ value: 1103.685,
+ },
+ {
+ name: 'Czech Republic',
+ value: 10553.701,
+ },
+ {
+ name: 'Germany',
+ value: 83017.404,
+ },
+ {
+ name: 'Djibouti',
+ value: 834.036,
+ },
+ {
+ name: 'Denmark',
+ value: 5550.959,
+ },
+ {
+ name: 'Dominican Republic',
+ value: 10016.797,
+ },
+ {
+ name: 'Algeria',
+ value: 37062.82,
+ },
+ {
+ name: 'Ecuador',
+ value: 15001.072,
+ },
+ {
+ name: 'Egypt',
+ value: 78075.705,
+ },
+ {
+ name: 'Eritrea',
+ value: 5741.159,
+ },
+ {
+ name: 'Spain',
+ value: 46182.038,
+ },
+ {
+ name: 'Estonia',
+ value: 1298.533,
+ },
+ {
+ name: 'Ethiopia',
+ value: 87095.281,
+ },
+ {
+ name: 'Finland',
+ value: 5367.693,
+ },
+ {
+ name: 'Fiji',
+ value: 860.559,
+ },
+ {
+ name: 'Falkland Islands',
+ value: 49.581,
+ },
+ {
+ name: 'France',
+ value: 63230.866,
+ },
+ {
+ name: 'Gabon',
+ value: 1556.222,
+ },
+ {
+ name: 'United Kingdom',
+ value: 62066.35,
+ },
+ {
+ name: 'Georgia',
+ value: 4388.674,
+ },
+ {
+ name: 'Ghana',
+ value: 24262.901,
+ },
+ {
+ name: 'Guinea',
+ value: 10876.033,
+ },
+ {
+ name: 'Gambia',
+ value: 1680.64,
+ },
+ {
+ name: 'Guinea Bissau',
+ value: 10876.033,
+ },
+ {
+ name: 'Equatorial Guinea',
+ value: 696.167,
+ },
+ {
+ name: 'Greece',
+ value: 11109.999,
+ },
+ {
+ name: 'Greenland',
+ value: 56.546,
+ },
+ {
+ name: 'Guatemala',
+ value: 14341.576,
+ },
+ {
+ name: 'French Guiana',
+ value: 231.169,
+ },
+ {
+ name: 'Guyana',
+ value: 786.126,
+ },
+ {
+ name: 'Honduras',
+ value: 7621.204,
+ },
+ {
+ name: 'Croatia',
+ value: 4338.027,
+ },
+ {
+ name: 'Haiti',
+ value: 9896.4,
+ },
+ {
+ name: 'Hungary',
+ value: 10014.633,
+ },
+ {
+ name: 'Indonesia',
+ value: 240676.485,
+ },
+ {
+ name: 'India',
+ value: 1205624.648,
+ },
+ {
+ name: 'Ireland',
+ value: 4467.561,
+ },
+ {
+ name: 'Iran',
+ value: 240676.485,
+ },
+ {
+ name: 'Iraq',
+ value: 30962.38,
+ },
+ {
+ name: 'Iceland',
+ value: 318.042,
+ },
+ {
+ name: 'Israel',
+ value: 7420.368,
+ },
+ {
+ name: 'Italy',
+ value: 60508.978,
+ },
+ {
+ name: 'Jamaica',
+ value: 2741.485,
+ },
+ {
+ name: 'Jordan',
+ value: 6454.554,
+ },
+ {
+ name: 'Japan',
+ value: 127352.833,
+ },
+ {
+ name: 'Kazakhstan',
+ value: 15921.127,
+ },
+ {
+ name: 'Kenya',
+ value: 40909.194,
+ },
+ {
+ name: 'Kyrgyzstan',
+ value: 5334.223,
+ },
+ {
+ name: 'Cambodia',
+ value: 14364.931,
+ },
+ {
+ name: 'South Korea',
+ value: 51452.352,
+ },
+ {
+ name: 'Kosovo',
+ value: 97.743,
+ },
+ {
+ name: 'Kuwait',
+ value: 2991.58,
+ },
+ {
+ name: 'Laos',
+ value: 6395.713,
+ },
+ {
+ name: 'Lebanon',
+ value: 4341.092,
+ },
+ {
+ name: 'Liberia',
+ value: 3957.99,
+ },
+ {
+ name: 'Libya',
+ value: 6040.612,
+ },
+ {
+ name: 'Sri Lanka',
+ value: 20758.779,
+ },
+ {
+ name: 'Lesotho',
+ value: 2008.921,
+ },
+ {
+ name: 'Lithuania',
+ value: 3068.457,
+ },
+ {
+ name: 'Luxembourg',
+ value: 507.885,
+ },
+ {
+ name: 'Latvia',
+ value: 2090.519,
+ },
+ {
+ name: 'Morocco',
+ value: 31642.36,
+ },
+ {
+ name: 'Moldova',
+ value: 103.619,
+ },
+ {
+ name: 'Madagascar',
+ value: 21079.532,
+ },
+ {
+ name: 'Mexico',
+ value: 117886.404,
+ },
+ {
+ name: 'Macedonia',
+ value: 507.885,
+ },
+ {
+ name: 'Mali',
+ value: 13985.961,
+ },
+ {
+ name: 'Myanmar',
+ value: 51931.231,
+ },
+ {
+ name: 'Montenegro',
+ value: 620.078,
+ },
+ {
+ name: 'Mongolia',
+ value: 2712.738,
+ },
+ {
+ name: 'Mozambique',
+ value: 23967.265,
+ },
+ {
+ name: 'Mauritania',
+ value: 3609.42,
+ },
+ {
+ name: 'Malawi',
+ value: 15013.694,
+ },
+ {
+ name: 'Malaysia',
+ value: 28275.835,
+ },
+ {
+ name: 'Namibia',
+ value: 2178.967,
+ },
+ {
+ name: 'New Caledonia',
+ value: 246.379,
+ },
+ {
+ name: 'Niger',
+ value: 15893.746,
+ },
+ {
+ name: 'Nigeria',
+ value: 159707.78,
+ },
+ {
+ name: 'Nicaragua',
+ value: 5822.209,
+ },
+ {
+ name: 'Netherlands',
+ value: 16615.243,
+ },
+ {
+ name: 'Norway',
+ value: 4891.251,
+ },
+ {
+ name: 'Nepal',
+ value: 26846.016,
+ },
+ {
+ name: 'New Zealand',
+ value: 4368.136,
+ },
+ {
+ name: 'Oman',
+ value: 2802.768,
+ },
+ {
+ name: 'Pakistan',
+ value: 173149.306,
+ },
+ {
+ name: 'Panama',
+ value: 3678.128,
+ },
+ {
+ name: 'Peru',
+ value: 29262.83,
+ },
+ {
+ name: 'Philippines',
+ value: 93444.322,
+ },
+ {
+ name: 'Papua New Guinea',
+ value: 6858.945,
+ },
+ {
+ name: 'Poland',
+ value: 38198.754,
+ },
+ {
+ name: 'Puerto Rico',
+ value: 3709.671,
+ },
+ {
+ name: 'North Korea',
+ value: 1.468,
+ },
+ {
+ name: 'Portugal',
+ value: 10589.792,
+ },
+ {
+ name: 'Paraguay',
+ value: 6459.721,
+ },
+ {
+ name: 'Qatar',
+ value: 1749.713,
+ },
+ {
+ name: 'Romania',
+ value: 21861.476,
+ },
+ {
+ name: 'Russia',
+ value: 21861.476,
+ },
+ {
+ name: 'Rwanda',
+ value: 10836.732,
+ },
+ {
+ name: 'Western Sahara',
+ value: 514.648,
+ },
+ {
+ name: 'Saudi Arabia',
+ value: 27258.387,
+ },
+ {
+ name: 'Sudan',
+ value: 35652.002,
+ },
+ {
+ name: 'South Sudan',
+ value: 9940.929,
+ },
+ {
+ name: 'Senegal',
+ value: 12950.564,
+ },
+ {
+ name: 'Solomon Islands',
+ value: 526.447,
+ },
+ {
+ name: 'Sierra Leone',
+ value: 5751.976,
+ },
+ {
+ name: 'El Salvador',
+ value: 6218.195,
+ },
+ {
+ name: 'Somaliland',
+ value: 9636.173,
+ },
+ {
+ name: 'Somalia',
+ value: 9636.173,
+ },
+ {
+ name: 'Republic of Serbia',
+ value: 3573.024,
+ },
+ {
+ name: 'Suriname',
+ value: 524.96,
+ },
+ {
+ name: 'Slovakia',
+ value: 5433.437,
+ },
+ {
+ name: 'Slovenia',
+ value: 2054.232,
+ },
+ {
+ name: 'Sweden',
+ value: 9382.297,
+ },
+ {
+ name: 'Swaziland',
+ value: 1193.148,
+ },
+ {
+ name: 'Syria',
+ value: 7830.534,
+ },
+ {
+ name: 'Chad',
+ value: 11720.781,
+ },
+ {
+ name: 'Togo',
+ value: 6306.014,
+ },
+ {
+ name: 'Thailand',
+ value: 66402.316,
+ },
+ {
+ name: 'Tajikistan',
+ value: 7627.326,
+ },
+ {
+ name: 'Turkmenistan',
+ value: 5041.995,
+ },
+ {
+ name: 'East Timor',
+ value: 10016.797,
+ },
+ {
+ name: 'Trinidad and Tobago',
+ value: 1328.095,
+ },
+ {
+ name: 'Tunisia',
+ value: 10631.83,
+ },
+ {
+ name: 'Turkey',
+ value: 72137.546,
+ },
+ {
+ name: 'United Republic of Tanzania',
+ value: 44973.33,
+ },
+ {
+ name: 'Uganda',
+ value: 33987.213,
+ },
+ {
+ name: 'Ukraine',
+ value: 46050.22,
+ },
+ {
+ name: 'Uruguay',
+ value: 3371.982,
+ },
+ {
+ name: 'United States of America',
+ value: 312247.116,
+ },
+ {
+ name: 'Uzbekistan',
+ value: 27769.27,
+ },
+ {
+ name: 'Venezuela',
+ value: 236.299,
+ },
+ {
+ name: 'Vietnam',
+ value: 89047.397,
+ },
+ {
+ name: 'Vanuatu',
+ value: 236.299,
+ },
+ {
+ name: 'West Bank',
+ value: 13.565,
+ },
+ {
+ name: 'Yemen',
+ value: 22763.008,
+ },
+ {
+ name: 'South Africa',
+ value: 51452.352,
+ },
+ {
+ name: 'Zambia',
+ value: 13216.985,
+ },
+ {
+ name: 'Zimbabwe',
+ value: 13076.978,
+ },
+ ],
},
- itemStyle: {
- emphasis: {
- label: {
- show: !0
- }
- }
- },
- data: [{
- name: "Afghanistan",
- value: 28397.812
- }, {
- name: "Angola",
- value: 19549.124
- }, {
- name: "Albania",
- value: 3150.143
- }, {
- name: "United Arab Emirates",
- value: 8441.537
- }, {
- name: "Argentina",
- value: 40374.224
- }, {
- name: "Armenia",
- value: 2963.496
- }, {
- name: "French Southern and Antarctic Lands",
- value: 268.065
- }, {
- name: "Australia",
- value: 22404.488
- }, {
- name: "Austria",
- value: 8401.924
- }, {
- name: "Azerbaijan",
- value: 9094.718
- }, {
- name: "Burundi",
- value: 9232.753
- }, {
- name: "Belgium",
- value: 10941.288
- }, {
- name: "Benin",
- value: 9509.798
- }, {
- name: "Burkina Faso",
- value: 15540.284
- }, {
- name: "Bangladesh",
- value: 151125.475
- }, {
- name: "Bulgaria",
- value: 7389.175
- }, {
- name: "The Bahamas",
- value: 66402.316
- }, {
- name: "Bosnia and Herzegovina",
- value: 3845.929
- }, {
- name: "Belarus",
- value: 9491.07
- }, {
- name: "Belize",
- value: 308.595
- }, {
- name: "Bermuda",
- value: 64.951
- }, {
- name: "Bolivia",
- value: 716.939
- }, {
- name: "Brazil",
- value: 195210.154
- }, {
- name: "Brunei",
- value: 27.223
- }, {
- name: "Bhutan",
- value: 716.939
- }, {
- name: "Botswana",
- value: 1969.341
- }, {
- name: "Central African Republic",
- value: 4349.921
- }, {
- name: "Canada",
- value: 34126.24
- }, {
- name: "Switzerland",
- value: 7830.534
- }, {
- name: "Chile",
- value: 17150.76
- }, {
- name: "China",
- value: 1359821.465
- }, {
- name: "Ivory Coast",
- value: 60508.978
- }, {
- name: "Cameroon",
- value: 20624.343
- }, {
- name: "Democratic Republic of the Congo",
- value: 62191.161
- }, {
- name: "Republic of the Congo",
- value: 3573.024
- }, {
- name: "Colombia",
- value: 46444.798
- }, {
- name: "Costa Rica",
- value: 4669.685
- }, {
- name: "Cuba",
- value: 11281.768
- }, {
- name: "Northern Cyprus",
- value: 1.468
- }, {
- name: "Cyprus",
- value: 1103.685
- }, {
- name: "Czech Republic",
- value: 10553.701
- }, {
- name: "Germany",
- value: 83017.404
- }, {
- name: "Djibouti",
- value: 834.036
- }, {
- name: "Denmark",
- value: 5550.959
- }, {
- name: "Dominican Republic",
- value: 10016.797
- }, {
- name: "Algeria",
- value: 37062.82
- }, {
- name: "Ecuador",
- value: 15001.072
- }, {
- name: "Egypt",
- value: 78075.705
- }, {
- name: "Eritrea",
- value: 5741.159
- }, {
- name: "Spain",
- value: 46182.038
- }, {
- name: "Estonia",
- value: 1298.533
- }, {
- name: "Ethiopia",
- value: 87095.281
- }, {
- name: "Finland",
- value: 5367.693
- }, {
- name: "Fiji",
- value: 860.559
- }, {
- name: "Falkland Islands",
- value: 49.581
- }, {
- name: "France",
- value: 63230.866
- }, {
- name: "Gabon",
- value: 1556.222
- }, {
- name: "United Kingdom",
- value: 62066.35
- }, {
- name: "Georgia",
- value: 4388.674
- }, {
- name: "Ghana",
- value: 24262.901
- }, {
- name: "Guinea",
- value: 10876.033
- }, {
- name: "Gambia",
- value: 1680.64
- }, {
- name: "Guinea Bissau",
- value: 10876.033
- }, {
- name: "Equatorial Guinea",
- value: 696.167
- }, {
- name: "Greece",
- value: 11109.999
- }, {
- name: "Greenland",
- value: 56.546
- }, {
- name: "Guatemala",
- value: 14341.576
- }, {
- name: "French Guiana",
- value: 231.169
- }, {
- name: "Guyana",
- value: 786.126
- }, {
- name: "Honduras",
- value: 7621.204
- }, {
- name: "Croatia",
- value: 4338.027
- }, {
- name: "Haiti",
- value: 9896.4
- }, {
- name: "Hungary",
- value: 10014.633
- }, {
- name: "Indonesia",
- value: 240676.485
- }, {
- name: "India",
- value: 1205624.648
- }, {
- name: "Ireland",
- value: 4467.561
- }, {
- name: "Iran",
- value: 240676.485
- }, {
- name: "Iraq",
- value: 30962.38
- }, {
- name: "Iceland",
- value: 318.042
- }, {
- name: "Israel",
- value: 7420.368
- }, {
- name: "Italy",
- value: 60508.978
- }, {
- name: "Jamaica",
- value: 2741.485
- }, {
- name: "Jordan",
- value: 6454.554
- }, {
- name: "Japan",
- value: 127352.833
- }, {
- name: "Kazakhstan",
- value: 15921.127
- }, {
- name: "Kenya",
- value: 40909.194
- }, {
- name: "Kyrgyzstan",
- value: 5334.223
- }, {
- name: "Cambodia",
- value: 14364.931
- }, {
- name: "South Korea",
- value: 51452.352
- }, {
- name: "Kosovo",
- value: 97.743
- }, {
- name: "Kuwait",
- value: 2991.58
- }, {
- name: "Laos",
- value: 6395.713
- }, {
- name: "Lebanon",
- value: 4341.092
- }, {
- name: "Liberia",
- value: 3957.99
- }, {
- name: "Libya",
- value: 6040.612
- }, {
- name: "Sri Lanka",
- value: 20758.779
- }, {
- name: "Lesotho",
- value: 2008.921
- }, {
- name: "Lithuania",
- value: 3068.457
- }, {
- name: "Luxembourg",
- value: 507.885
- }, {
- name: "Latvia",
- value: 2090.519
- }, {
- name: "Morocco",
- value: 31642.36
- }, {
- name: "Moldova",
- value: 103.619
- }, {
- name: "Madagascar",
- value: 21079.532
- }, {
- name: "Mexico",
- value: 117886.404
- }, {
- name: "Macedonia",
- value: 507.885
- }, {
- name: "Mali",
- value: 13985.961
- }, {
- name: "Myanmar",
- value: 51931.231
- }, {
- name: "Montenegro",
- value: 620.078
- }, {
- name: "Mongolia",
- value: 2712.738
- }, {
- name: "Mozambique",
- value: 23967.265
- }, {
- name: "Mauritania",
- value: 3609.42
- }, {
- name: "Malawi",
- value: 15013.694
- }, {
- name: "Malaysia",
- value: 28275.835
- }, {
- name: "Namibia",
- value: 2178.967
- }, {
- name: "New Caledonia",
- value: 246.379
- }, {
- name: "Niger",
- value: 15893.746
- }, {
- name: "Nigeria",
- value: 159707.78
- }, {
- name: "Nicaragua",
- value: 5822.209
- }, {
- name: "Netherlands",
- value: 16615.243
- }, {
- name: "Norway",
- value: 4891.251
- }, {
- name: "Nepal",
- value: 26846.016
- }, {
- name: "New Zealand",
- value: 4368.136
- }, {
- name: "Oman",
- value: 2802.768
- }, {
- name: "Pakistan",
- value: 173149.306
- }, {
- name: "Panama",
- value: 3678.128
- }, {
- name: "Peru",
- value: 29262.83
- }, {
- name: "Philippines",
- value: 93444.322
- }, {
- name: "Papua New Guinea",
- value: 6858.945
- }, {
- name: "Poland",
- value: 38198.754
- }, {
- name: "Puerto Rico",
- value: 3709.671
- }, {
- name: "North Korea",
- value: 1.468
- }, {
- name: "Portugal",
- value: 10589.792
- }, {
- name: "Paraguay",
- value: 6459.721
- }, {
- name: "Qatar",
- value: 1749.713
- }, {
- name: "Romania",
- value: 21861.476
- }, {
- name: "Russia",
- value: 21861.476
- }, {
- name: "Rwanda",
- value: 10836.732
- }, {
- name: "Western Sahara",
- value: 514.648
- }, {
- name: "Saudi Arabia",
- value: 27258.387
- }, {
- name: "Sudan",
- value: 35652.002
- }, {
- name: "South Sudan",
- value: 9940.929
- }, {
- name: "Senegal",
- value: 12950.564
- }, {
- name: "Solomon Islands",
- value: 526.447
- }, {
- name: "Sierra Leone",
- value: 5751.976
- }, {
- name: "El Salvador",
- value: 6218.195
- }, {
- name: "Somaliland",
- value: 9636.173
- }, {
- name: "Somalia",
- value: 9636.173
- }, {
- name: "Republic of Serbia",
- value: 3573.024
- }, {
- name: "Suriname",
- value: 524.96
- }, {
- name: "Slovakia",
- value: 5433.437
- }, {
- name: "Slovenia",
- value: 2054.232
- }, {
- name: "Sweden",
- value: 9382.297
- }, {
- name: "Swaziland",
- value: 1193.148
- }, {
- name: "Syria",
- value: 7830.534
- }, {
- name: "Chad",
- value: 11720.781
- }, {
- name: "Togo",
- value: 6306.014
- }, {
- name: "Thailand",
- value: 66402.316
- }, {
- name: "Tajikistan",
- value: 7627.326
- }, {
- name: "Turkmenistan",
- value: 5041.995
- }, {
- name: "East Timor",
- value: 10016.797
- }, {
- name: "Trinidad and Tobago",
- value: 1328.095
- }, {
- name: "Tunisia",
- value: 10631.83
- }, {
- name: "Turkey",
- value: 72137.546
- }, {
- name: "United Republic of Tanzania",
- value: 44973.33
- }, {
- name: "Uganda",
- value: 33987.213
- }, {
- name: "Ukraine",
- value: 46050.22
- }, {
- name: "Uruguay",
- value: 3371.982
- }, {
- name: "United States of America",
- value: 312247.116
- }, {
- name: "Uzbekistan",
- value: 27769.27
- }, {
- name: "Venezuela",
- value: 236.299
- }, {
- name: "Vietnam",
- value: 89047.397
- }, {
- name: "Vanuatu",
- value: 236.299
- }, {
- name: "West Bank",
- value: 13.565
- }, {
- name: "Yemen",
- value: 22763.008
- }, {
- name: "South Africa",
- value: 51452.352
- }, {
- name: "Zambia",
- value: 13216.985
- }, {
- name: "Zimbabwe",
- value: 13076.978
- }]
- }]
- })
+ ],
+ });
}
}
-}! function(a, b) {
+}
+!(function(a, b) {
var c = function(a, b, c) {
var d;
return function() {
function h() {
- c || a.apply(f, g), d = null
+ c || a.apply(f, g), (d = null);
}
var f = this,
g = arguments;
- d ? clearTimeout(d) : c && a.apply(f, g), d = setTimeout(h, b || 100)
- }
+ d ? clearTimeout(d) : c && a.apply(f, g), (d = setTimeout(h, b || 100));
+ };
};
jQuery.fn[b] = function(a) {
- return a ? this.bind("resize", c(a)) : this.trigger(b)
- }
-}(jQuery, "smartresize");
+ return a ? this.bind('resize', c(a)) : this.trigger(b);
+ };
+})(jQuery, 'smartresize');
-
-var CURRENT_URL = window.location.href.split("#")[0].split("?")[0],
- $BODY = $("body"),
- $MENU_TOGGLE = $("#menu_toggle"),
- $SIDEBAR_MENU = $("#sidebar-menu"),
- $SIDEBAR_FOOTER = $(".sidebar-footer"),
- $LEFT_COL = $(".left_col"),
- $RIGHT_COL = $(".right_col"),
- $NAV_MENU = $(".nav_menu"),
- $FOOTER = $("footer"),
+var CURRENT_URL = window.location.href.split('#')[0].split('?')[0],
+ $BODY = $('body'),
+ $MENU_TOGGLE = $('#menu_toggle'),
+ $SIDEBAR_MENU = $('#sidebar-menu'),
+ $SIDEBAR_FOOTER = $('.sidebar-footer'),
+ $LEFT_COL = $('.left_col'),
+ $RIGHT_COL = $('.right_col'),
+ $NAV_MENU = $('.nav_menu'),
+ $FOOTER = $('footer'),
randNum = function() {
- return Math.floor(21 * Math.random()) + 20
+ return Math.floor(21 * Math.random()) + 20;
};
$(document).ready(function() {
- $(".collapse-link").on("click", function() {
- var a = $(this).closest(".x_panel"),
- b = $(this).find("i"),
- c = a.find(".x_content");
- a.attr("style") ? c.slideToggle(200, function() {
- a.removeAttr("style")
- }) : (c.slideToggle(200), a.css("height", "auto")), b.toggleClass("fa-chevron-up fa-chevron-down")
- }), $(".close-link").click(function() {
- var a = $(this).closest(".x_panel");
- a.remove()
- })
-}), $(document).ready(function() {
- $('[data-toggle="tooltip"]').tooltip({
- container: "body"
- })
-}), $(".progress .progress-bar")[0] && $(".progress .progress-bar").progressbar(), $(document).ready(function() {
- if ($(".js-switch")[0]) {
- var a = Array.prototype.slice.call(document.querySelectorAll(".js-switch"));
- a.forEach(function(a) {
- new Switchery(a, {
- color: "#26B99A"
- })
- })
- }
-}), $(document).ready(function() {
- $("input.flat")[0] && $(document).ready(function() {
- $("input.flat").iCheck({
- checkboxClass: "icheckbox_flat-green",
- radioClass: "iradio_flat-green"
- })
- })
-}), $("table input").on("ifChecked", function() {
- checkState = "", $(this).parent().parent().parent().addClass("selected"), countChecked()
-}), $("table input").on("ifUnchecked", function() {
- checkState = "", $(this).parent().parent().parent().removeClass("selected"), countChecked()
-});
-var checkState = "";
-$(".bulk_action input").on("ifChecked", function() {
- checkState = "", $(this).parent().parent().parent().addClass("selected"), countChecked()
-}), $(".bulk_action input").on("ifUnchecked", function() {
- checkState = "", $(this).parent().parent().parent().removeClass("selected"), countChecked()
-}), $(".bulk_action input#check-all").on("ifChecked", function() {
- checkState = "all", countChecked()
-}), $(".bulk_action input#check-all").on("ifUnchecked", function() {
- checkState = "none", countChecked()
-}), $(document).ready(function() {
- $(".expand").on("click", function() {
- $(this).next().slideToggle(200), $expand = $(this).find(">:first-child"), "+" == $expand.text() ? $expand.text("-") : $expand.text("+")
- })
-}), "undefined" != typeof NProgress && ($(document).ready(function() {
- NProgress.start()
-}), $(window).load(function() {
- NProgress.done()
-}));
+ $('.collapse-link').on('click', function() {
+ var a = $(this).closest('.x_panel'),
+ b = $(this).find('i'),
+ c = a.find('.x_content');
+ a.attr('style')
+ ? c.slideToggle(200, function() {
+ a.removeAttr('style');
+ })
+ : (c.slideToggle(200), a.css('height', 'auto')),
+ b.toggleClass('fa-chevron-up fa-chevron-down');
+ }),
+ $('.close-link').click(function() {
+ var a = $(this).closest('.x_panel');
+ a.remove();
+ });
+}),
+ $(document).ready(function() {
+ $('[data-toggle="tooltip"]').tooltip({
+ container: 'body',
+ });
+ }),
+ $('.progress .progress-bar')[0] && $('.progress .progress-bar').progressbar(),
+ $(document).ready(function() {
+ if ($('.js-switch')[0]) {
+ var a = Array.prototype.slice.call(document.querySelectorAll('.js-switch'));
+ a.forEach(function(a) {
+ new Switchery(a, {
+ color: '#26B99A',
+ });
+ });
+ }
+ }),
+ $(document).ready(function() {
+ $('input.flat')[0] &&
+ $(document).ready(function() {
+ $('input.flat').iCheck({
+ checkboxClass: 'icheckbox_flat-green',
+ radioClass: 'iradio_flat-green',
+ });
+ });
+ }),
+ $('table input').on('ifChecked', function() {
+ (checkState = ''),
+ $(this)
+ .parent()
+ .parent()
+ .parent()
+ .addClass('selected'),
+ countChecked();
+ }),
+ $('table input').on('ifUnchecked', function() {
+ (checkState = ''),
+ $(this)
+ .parent()
+ .parent()
+ .parent()
+ .removeClass('selected'),
+ countChecked();
+ });
+var checkState = '';
+$('.bulk_action input').on('ifChecked', function() {
+ (checkState = ''),
+ $(this)
+ .parent()
+ .parent()
+ .parent()
+ .addClass('selected'),
+ countChecked();
+}),
+ $('.bulk_action input').on('ifUnchecked', function() {
+ (checkState = ''),
+ $(this)
+ .parent()
+ .parent()
+ .parent()
+ .removeClass('selected'),
+ countChecked();
+ }),
+ $('.bulk_action input#check-all').on('ifChecked', function() {
+ (checkState = 'all'), countChecked();
+ }),
+ $('.bulk_action input#check-all').on('ifUnchecked', function() {
+ (checkState = 'none'), countChecked();
+ }),
+ $(document).ready(function() {
+ $('.expand').on('click', function() {
+ $(this)
+ .next()
+ .slideToggle(200),
+ ($expand = $(this).find('>:first-child')),
+ '+' == $expand.text() ? $expand.text('-') : $expand.text('+');
+ });
+ }),
+ 'undefined' != typeof NProgress &&
+ ($(document).ready(function() {
+ NProgress.start();
+ }),
+ $(window).load(function() {
+ NProgress.done();
+ }));
var originalLeave = $.fn.popover.Constructor.prototype.leave;
-$.fn.popover.Constructor.prototype.leave = function(a) {
- var c, d, b = a instanceof this.constructor ? a : $(a.currentTarget)[this.type](this.getDelegateOptions()).data("bs." + this.type);
- originalLeave.call(this, a), a.currentTarget && (c = $(a.currentTarget).siblings(".popover"), d = b.timeout, c.one("mouseenter", function() {
- clearTimeout(d), c.one("mouseleave", function() {
- $.fn.popover.Constructor.prototype.leave.call(b, b)
- })
- }))
-}, $("body").popover({
- selector: "[data-popover]",
- trigger: "click hover",
- delay: {
- show: 50,
- hide: 400
- }
-
-}), $(document).ready(function() {
- init_sparklines(),
- init_flot_chart(),
- init_wysiwyg(),
- init_InputMask(),
- init_JQVmap(), init_cropper(),
- init_knob(),
- init_IonRangeSlider(),
- init_ColorPicker(),
- init_TagsInput(),
- init_parsley(),
- init_daterangepicker(),
- init_daterangepicker_right(),
- init_daterangepicker_single_call(),
- init_daterangepicker_reservation(),
- init_SmartWizard(),
- init_EasyPieChart(),
- init_charts(),
- init_echarts(),
- init_morris_charts(),
- init_skycons(),
- init_select2(),
- init_validator(),
- init_DataTables(),
- init_chart_doughnut(),
- init_gauge(),
- init_PNotify(),
- init_starrr(),
- init_calendar(),
- init_compose(),
- init_CustomNotification(),
- init_autosize(),
- init_autocomplete()
-});
+($.fn.popover.Constructor.prototype.leave = function(a) {
+ var c,
+ d,
+ b =
+ a instanceof this.constructor
+ ? a
+ : $(a.currentTarget)
+ [this.type](this.getDelegateOptions())
+ .data('bs.' + this.type);
+ originalLeave.call(this, a),
+ a.currentTarget &&
+ ((c = $(a.currentTarget).siblings('.popover')),
+ (d = b.timeout),
+ c.one('mouseenter', function() {
+ clearTimeout(d),
+ c.one('mouseleave', function() {
+ $.fn.popover.Constructor.prototype.leave.call(b, b);
+ });
+ }));
+}),
+ $('body').popover({
+ selector: '[data-popover]',
+ trigger: 'click hover',
+ delay: {
+ show: 50,
+ hide: 400,
+ },
+ }),
+ $(document).ready(function() {
+ init_sparklines(),
+ init_flot_chart(),
+ init_wysiwyg(),
+ init_InputMask(),
+ init_JQVmap(),
+ init_cropper(),
+ init_knob(),
+ init_IonRangeSlider(),
+ init_ColorPicker(),
+ init_TagsInput(),
+ init_parsley(),
+ init_daterangepicker(),
+ init_daterangepicker_right(),
+ init_daterangepicker_single_call(),
+ init_daterangepicker_reservation(),
+ init_SmartWizard(),
+ init_EasyPieChart(),
+ init_charts(),
+ init_echarts(),
+ init_morris_charts(),
+ init_skycons(),
+ init_select2(),
+ init_validator(),
+ init_DataTables(),
+ init_chart_doughnut(),
+ init_gauge(),
+ init_PNotify(),
+ init_starrr(),
+ init_calendar(),
+ init_compose(),
+ init_CustomNotification(),
+ init_autosize(),
+ init_autocomplete();
+ });
diff --git a/resources/assets/js/functions.js b/resources/assets/js/functions.js
index 0fb81c65e..03a8b62bc 100755
--- a/resources/assets/js/functions.js
+++ b/resources/assets/js/functions.js
@@ -1,17 +1,20 @@
// event bindings
-jQuery(function ($) {
-
- $('.cartadd').click(function (e) {
+jQuery(function($) {
+ $('.cartadd').click(function(e) {
if ($(this).hasClass('icon_cart_clicked')) return false;
- var guid = $(".guid").attr('id').substring(4);
+ var guid = $('.guid')
+ .attr('id')
+ .substring(4);
//alert(guid);
$.ajaxSetup({
headers: {
- 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
- }
+ 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
+ },
});
- $.post(SERVERROOT + "/cart/add?id=" + guid, function (resp) {
- $(e.target).addClass('icon_cart_clicked').attr('title', 'Added to Cart');
+ $.post(SERVERROOT + '/cart/add?id=' + guid, function(resp) {
+ $(e.target)
+ .addClass('icon_cart_clicked')
+ .attr('title', 'Added to Cart');
PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Release added to your Download Basket!',
@@ -20,27 +23,29 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
-
+ fallback: true,
+ },
});
});
return false;
});
-
- $('.sabsend').click(function (e) {
+ $('.sabsend').click(function(e) {
if ($(this).hasClass('icon_sab_clicked')) return false;
- var guid = $(".guid").attr('id').substring(4);
- var nzburl = SERVERROOT + "/sendtoqueue/" + guid;
+ var guid = $('.guid')
+ .attr('id')
+ .substring(4);
+ var nzburl = SERVERROOT + '/sendtoqueue/' + guid;
- $.post(nzburl, function (resp) {
- $(e.target).addClass('icon_sab_clicked').attr('title', 'Added to Queue');
+ $.post(nzburl, function(resp) {
+ $(e.target)
+ .addClass('icon_sab_clicked')
+ .attr('title', 'Added to Queue');
PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Release added to your download queue!',
@@ -49,26 +54,30 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
});
return false;
});
- $('.getsend').click(function (e) {
+ $('.getsend').click(function(e) {
if ($(this).hasClass('icon_nzbget_clicked')) return false;
- var guid = $(".guid").attr('id').substring(4);
- var nzburl = SERVERROOT + "/sendtoqueue/" + guid;
+ var guid = $('.guid')
+ .attr('id')
+ .substring(4);
+ var nzburl = SERVERROOT + '/sendtoqueue/' + guid;
- $.post(nzburl, function (resp) {
- $(e.target).addClass('icon_nzbget_clicked').attr('title', 'Added to Queue');
- PNotify.defaults.icons = "fontawesome5";
+ $.post(nzburl, function(resp) {
+ $(e.target)
+ .addClass('icon_nzbget_clicked')
+ .attr('title', 'Added to Queue');
+ PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Release added to your download queue!',
type: 'success',
@@ -76,25 +85,29 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
});
return false;
});
- $('.sendtocouch').click(function (e) {
+ $('.sendtocouch').click(function(e) {
if ($(this).hasClass('icon_cp_clicked')) return false;
- var id = $(this).attr('id').substring(4);
- var cpurl = SERVERROOT + "sendtocouch/" + id;
+ var id = $(this)
+ .attr('id')
+ .substring(4);
+ var cpurl = SERVERROOT + 'sendtocouch/' + id;
- $.post(cpurl, function (resp) {
- $(e.target).addClass('icon_cp_clicked').attr('title', 'Added to CouchPotato');
- PNotify.defaults.icons = "fontawesome5";
+ $.post(cpurl, function(resp) {
+ $(e.target)
+ .addClass('icon_cp_clicked')
+ .attr('title', 'Added to CouchPotato');
+ PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Movie added to CoucPotato wanted list!',
type: 'success',
@@ -102,48 +115,52 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
});
return false;
});
- $('.vortexsend').click(function (event) {
+ $('.vortexsend').click(function(event) {
if ($(this).hasClass('icon_nzbvortex_clicked')) return false;
- var guid = $(".guid").attr('id').substring(4);
+ var guid = $('.guid')
+ .attr('id')
+ .substring(4);
if (guid && guid.length > 0) {
- $.ajax
- ({
+ $.ajax({
url: SERVERROOT + 'nzbvortex?addQueue=' + guid + '&isAjax',
- cache: false
- }).done(function (html) {
- var message = 'Added ' + guid + ' to queue.';
- $(event.target).addClass('icon_nzbvortex_clicked').attr('title', message);
- PNotify.defaults.icons = "fontawesome5";
- PNotify.success({
-
- title: 'Release added to your download queue!',
- type: 'success',
- icon: 'fa fa-info fa-3x',
- Animate: {
- animate: true,
- in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
- },
- desktop: {
- desktop: true,
- fallback: true
- }
+ cache: false,
+ })
+ .done(function(html) {
+ var message = 'Added ' + guid + ' to queue.';
+ $(event.target)
+ .addClass('icon_nzbvortex_clicked')
+ .attr('title', message);
+ PNotify.defaults.icons = 'fontawesome5';
+ PNotify.success({
+ title: 'Release added to your download queue!',
+ type: 'success',
+ icon: 'fa fa-info fa-3x',
+ Animate: {
+ animate: true,
+ in_class: 'bounceInLeft',
+ out_class: 'bounceOutRight',
+ },
+ desktop: {
+ desktop: true,
+ fallback: true,
+ },
+ });
+ })
+ .fail(function(response) {
+ alert(response.responseText);
});
- }).fail(function (response) {
- alert(response.responseText);
- });
}
return false;
});
@@ -157,43 +174,63 @@ jQuery(function ($) {
vortexStates[5] = 'Skipped';
// browse.tpl, search.tpl -- show icons on hover
- var orig_opac = $('table.data tr').children('td.icons').children('div.icon').css('opacity');
+ var orig_opac = $('table.data tr')
+ .children('td.icons')
+ .children('div.icon')
+ .css('opacity');
$('table.data tr').hover(
- function () {
- $(this).children('td.icons').children('div.icon').css('opacity', 1);
+ function() {
+ $(this)
+ .children('td.icons')
+ .children('div.icon')
+ .css('opacity', 1);
},
- function () {
- $(this).children('td.icons').children('div.icon').css('opacity', orig_opac);
+ function() {
+ $(this)
+ .children('td.icons')
+ .children('div.icon')
+ .css('opacity', orig_opac);
}
);
- $(".forumpostsubmit").click(function (e) {
- if ($.trim($("#addMessage").val()) == "" || $.trim($("#addSubject").val()) == "") {
- alert("Please enter a subject and message.");
+ $('.forumpostsubmit').click(function(e) {
+ if ($.trim($('#addMessage').val()) == '' || $.trim($('#addSubject').val()) == '') {
+ alert('Please enter a subject and message.');
return false;
}
});
- $(".forumreplysubmit").click(function (e) {
- if ($.trim($("#addMessage").val()) == "") {
- alert("Please enter a message.");
+ $('.forumreplysubmit').click(function(e) {
+ if ($.trim($('#addMessage').val()) == '') {
+ alert('Please enter a message.');
return false;
}
});
- $(".check").click(function (e) {
+ $('.check').click(function(e) {
if (!$(e.target).is('input'))
- $(this).children(".nzb_check").attr('checked', !$(this).children(".nzb_check").attr('checked'));
+ $(this)
+ .children('.nzb_check')
+ .attr(
+ 'checked',
+ !$(this)
+ .children('.nzb_check')
+ .attr('checked')
+ );
});
- $(".descmore").click(function (e) {
- $(this).prev(".descinitial").hide();
- $(this).next(".descfull").show();
+ $('.descmore').click(function(e) {
+ $(this)
+ .prev('.descinitial')
+ .hide();
+ $(this)
+ .next('.descfull')
+ .show();
$(this).hide();
return false;
});
- $('.nzb_check_all').change(function () {
+ $('.nzb_check_all').change(function() {
if ($(this).attr('checked')) {
$('table.data tr td input:checkbox').attr('checked', $(this).attr('checked'));
} else {
@@ -201,9 +238,9 @@ jQuery(function ($) {
}
});
- $('.nzb_check_all_season').change(function () {
+ $('.nzb_check_all_season').change(function() {
var season = $(this).attr('name');
- $('table.data tr td input:checkbox').each(function (i, row) {
+ $('table.data tr td input:checkbox').each(function(i, row) {
if ($(row).attr('name') == season) {
$(row).attr('checked', !$(row).attr('checked'));
}
@@ -211,19 +248,23 @@ jQuery(function ($) {
});
// browse.tpl, search.tpl
- $('.icon_cart').click(function (e) {
+ $('.icon_cart').click(function(e) {
if ($(this).hasClass('icon_cart_clicked')) return false;
- var guid = $(this).attr('id').substring(4);
+ var guid = $(this)
+ .attr('id')
+ .substring(4);
//alert(guid);
//alert(SERVERROOT + "/cart/add?id=" + guid);
$.ajaxSetup({
headers: {
- 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
- }
+ 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
+ },
});
- $.post(SERVERROOT + "/cart/add?id=" + guid, function (resp) {
- $(e.target).addClass('icon_cart_clicked').attr('title', ' Release added to Cart');
- PNotify.defaults.icons = "fontawesome5";
+ $.post(SERVERROOT + '/cart/add?id=' + guid, function(resp) {
+ $(e.target)
+ .addClass('icon_cart_clicked')
+ .attr('title', ' Release added to Cart');
+ PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Release added to your download basket!',
type: 'success',
@@ -231,145 +272,157 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
});
return false;
});
- $('.icon_nzbvortex').click(function (event) {
+ $('.icon_nzbvortex').click(function(event) {
if ($(this).hasClass('icon_nzbvortex_clicked')) return false;
- var guid = $(this).parent().parent().attr('id').substring(4);
+ var guid = $(this)
+ .parent()
+ .parent()
+ .attr('id')
+ .substring(4);
if (guid && guid.length > 0) {
- $.ajax
- ({
+ $.ajax({
url: SERVERROOT + '/nzbvortex?addQueue=' + guid + '&isAjax',
- cache: false
- }).done(function (html) {
- var message = 'Added ' + guid + ' to queue.';
- $(event.target).addClass('icon_nzbvortex_clicked').attr('title', message);
- PNotify.defaults.icons = "fontawesome5";
- PNotify.success({
- title: 'ADDED TO NZBVORTEX!',
- type: 'success',
- icon: 'fa fa-info fa-3x',
- Animate: {
- animate: true,
- in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
- },
- desktop: {
- desktop: true,
- fallback: true
- }
+ cache: false,
+ })
+ .done(function(html) {
+ var message = 'Added ' + guid + ' to queue.';
+ $(event.target)
+ .addClass('icon_nzbvortex_clicked')
+ .attr('title', message);
+ PNotify.defaults.icons = 'fontawesome5';
+ PNotify.success({
+ title: 'ADDED TO NZBVORTEX!',
+ type: 'success',
+ icon: 'fa fa-info fa-3x',
+ Animate: {
+ animate: true,
+ in_class: 'bounceInLeft',
+ out_class: 'bounceOutRight',
+ },
+ desktop: {
+ desktop: true,
+ fallback: true,
+ },
+ });
+ })
+ .fail(function(response) {
+ alert(response.responseText);
});
- }).fail(function (response) {
- alert(response.responseText);
- });
}
return false;
});
- $(document).on('click', 'a.vortex-resume', function (event) {
+ $(document).on('click', 'a.vortex-resume', function(event) {
event.preventDefault();
$('#vortex-overlay-' + $(this).attr('href')).show();
- $.get(SERVERROOT + "nzbvortex?resume=" + $(this).attr('href') + '&isAjax');
+ $.get(SERVERROOT + 'nzbvortex?resume=' + $(this).attr('href') + '&isAjax');
$(this).removeAttr('href');
return false;
});
- $(document).on('click', 'a.vortex-pause', function (event) {
+ $(document).on('click', 'a.vortex-pause', function(event) {
event.preventDefault();
$('#vortex-overlay-' + $(this).attr('href')).show();
- $.get(SERVERROOT + "nzbvortex?pause=" + $(this).attr('href') + '&isAjax');
+ $.get(SERVERROOT + 'nzbvortex?pause=' + $(this).attr('href') + '&isAjax');
$(this).removeAttr('href');
return false;
});
- $(document).on('click', 'a.vortex-moveup', function (event) {
+ $(document).on('click', 'a.vortex-moveup', function(event) {
event.preventDefault();
$('#vortex-overlay-' + $(this).attr('href')).show();
- $.get(SERVERROOT + "nzbvortex?moveup=" + $(this).attr('href') + '&isAjax');
+ $.get(SERVERROOT + 'nzbvortex?moveup=' + $(this).attr('href') + '&isAjax');
$(this).removeAttr('href');
return false;
});
- $(document).on('click', 'a.vortex-movedown', function (event) {
+ $(document).on('click', 'a.vortex-movedown', function(event) {
event.preventDefault();
$('#vortex-overlay-' + $(this).attr('href')).show();
- $.get(SERVERROOT + "nzbvortex?movedown=" + $(this).attr('href') + '&isAjax');
+ $.get(SERVERROOT + 'nzbvortex?movedown=' + $(this).attr('href') + '&isAjax');
$(this).removeAttr('href');
return false;
});
- $(document).on('click', 'a.vortex-movetop', function (event) {
+ $(document).on('click', 'a.vortex-movetop', function(event) {
event.preventDefault();
$('#vortex-overlay-' + $(this).attr('href')).show();
- $.get(SERVERROOT + "nzbvortex?movetop=" + $(this).attr('href') + '&isAjax');
+ $.get(SERVERROOT + 'nzbvortex?movetop=' + $(this).attr('href') + '&isAjax');
$(this).removeAttr('href');
return false;
});
- $(document).on('click', 'a.vortex-movebottom', function (event) {
+ $(document).on('click', 'a.vortex-movebottom', function(event) {
event.preventDefault();
$('#vortex-overlay-' + $(this).attr('href')).show();
- $.get(SERVERROOT + "nzbvortex?movebottom=" + $(this).attr('href') + '&isAjax');
+ $.get(SERVERROOT + 'nzbvortex?movebottom=' + $(this).attr('href') + '&isAjax');
$(this).removeAttr('href');
return false;
});
- $(document).on('click', 'a.vortex-trash', function (event) {
+ $(document).on('click', 'a.vortex-trash', function(event) {
event.preventDefault();
$('#vortex-overlay-' + $(this).attr('href')).show();
- $.get(SERVERROOT + "nzbvortex?delete=" + $(this).attr('href') + '&isAjax');
+ $.get(SERVERROOT + 'nzbvortex?delete=' + $(this).attr('href') + '&isAjax');
$(this).removeAttr('href');
return false;
});
- $(document).on('click', 'a.vortex-filelist', function (event) {
+ $(document).on('click', 'a.vortex-filelist', function(event) {
event.preventDefault();
var id = $(this).attr('href');
$('#vortex-overlay-' + id).show();
$.colorbox({});
- $.ajax
- ({
+ $.ajax({
url: SERVERROOT + '/nzbvortex?filelist=' + id + '&isAjax',
- cache: false
- }).done(function (response) {
- $('#cboxLoadingGraphic').hide();
- var json = $.parseJSON(response);
- console.log(json);
- $.each(json.files, function (k, v) {
-
- $('#cboxContent').append('' + v.fileName + ' (' + vortexStates[v.state] + ') ');
+ cache: false,
+ })
+ .done(function(response) {
+ $('#cboxLoadingGraphic').hide();
+ var json = $.parseJSON(response);
+ console.log(json);
+ $.each(json.files, function(k, v) {
+ $('#cboxContent').append(
+ '' + v.fileName + ' (' + vortexStates[v.state] + ') '
+ );
+ });
+ })
+ .fail(function(response) {
+ alert('Unable to retrieve filelist: ' + response.responseText);
});
- }).fail(function (response) {
- alert('Unable to retrieve filelist: ' + response.responseText);
- });
-
$(this).removeAttr('href');
return false;
});
- $('.icon_sab').click(function (e) {
+ $('.icon_sab').click(function(e) {
if ($(this).hasClass('icon_sab_clicked')) return false;
- var guid = $(this).attr('id').substring(4);
- var nzburl = SERVERROOT + "/sendtoqueue/" + guid;
+ var guid = $(this)
+ .attr('id')
+ .substring(4);
+ var nzburl = SERVERROOT + '/sendtoqueue/' + guid;
- $.post(nzburl, function (resp) {
- $(e.target).addClass('icon_sab_clicked').attr('title', 'Release added to Queue');
- PNotify.defaults.icons = "fontawesome5";
+ $.post(nzburl, function(resp) {
+ $(e.target)
+ .addClass('icon_sab_clicked')
+ .attr('title', 'Release added to Queue');
+ PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Release added to your download queue!',
type: 'success',
@@ -377,26 +430,30 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
});
return false;
});
- $('.icon_nzbget').click(function (e) {
+ $('.icon_nzbget').click(function(e) {
if ($(this).hasClass('icon_nzbget_clicked')) return false;
- var guid = $(this).attr('id').substring(4);
- var nzburl = SERVERROOT + "/sendtoqueue/" + guid;
+ var guid = $(this)
+ .attr('id')
+ .substring(4);
+ var nzburl = SERVERROOT + '/sendtoqueue/' + guid;
- $.post(nzburl, function (resp) {
- $(e.target).addClass('icon_nzbget_clicked').attr('title', 'Added to Queue');
- PNotify.defaults.icons = "fontawesome5";
+ $.post(nzburl, function(resp) {
+ $(e.target)
+ .addClass('icon_nzbget_clicked')
+ .attr('title', 'Added to Queue');
+ PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Release added to your download queue!',
type: 'success',
@@ -404,132 +461,245 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
});
return false;
});
-
- $("table.data a.modal_nfo").colorbox({ // NFO modal
- href: function () {
+ $('table.data a.modal_nfo').colorbox({
+ // NFO modal
+ href: function() {
return $(this).attr('href') + '&modal';
},
- title: function () {
- return $(this).parent().parent().children('a.title').text();
+ title: function() {
+ return $(this)
+ .parent()
+ .parent()
+ .children('a.title')
+ .text();
},
- innerWidth: "800px", innerHeight: "90%", initialWidth: "800px", initialHeight: "90%", speed: 0, opacity: 0.7
+ innerWidth: '800px',
+ innerHeight: '90%',
+ initialWidth: '800px',
+ initialHeight: '90%',
+ speed: 0,
+ opacity: 0.7,
});
// Screenshot modal
- $("table.data a.modal_prev").colorbox({scrolling: false, maxWidth: "800px", maxHeight: "450px"});
-
- $("table.data a.modal_imdb").colorbox({ // IMDB modal
- href: function () {
- return SERVERROOT + "movie/" + $(this).attr('name').substring(4) + '&modal';
- },
- title: function () {
- return $(this).parent().parent().children('a.title').text();
- },
- innerWidth: "800px", innerHeight: "450px", initialWidth: "800px", initialHeight: "450px", speed: 0, opacity: 0.7
- }).click(function () {
- $('#colorbox').removeClass().addClass('cboxMovie');
+ $('table.data a.modal_prev').colorbox({
+ scrolling: false,
+ maxWidth: '800px',
+ maxHeight: '450px',
});
- $("a.modal_imdbtrailer").colorbox({ // IMDB trailer modal
- href: function () {
- return SERVERROOT + "movietrailer/" + $(this).attr('name').substring(4) + '&modal';
- },
- title: function () {
- return $(this).parent().parent().children('a.title').text();
- },
- innerWidth: "800px", innerHeight: "450px", initialWidth: "800px", initialHeight: "450px", speed: 0, opacity: 0.7
- }).click(function () {
- $('#colorbox').removeClass().addClass('cboxMovie');
- });
+ $('table.data a.modal_imdb')
+ .colorbox({
+ // IMDB modal
+ href: function() {
+ return (
+ SERVERROOT +
+ 'movie/' +
+ $(this)
+ .attr('name')
+ .substring(4) +
+ '&modal'
+ );
+ },
+ title: function() {
+ return $(this)
+ .parent()
+ .parent()
+ .children('a.title')
+ .text();
+ },
+ innerWidth: '800px',
+ innerHeight: '450px',
+ initialWidth: '800px',
+ initialHeight: '450px',
+ speed: 0,
+ opacity: 0.7,
+ })
+ .click(function() {
+ $('#colorbox')
+ .removeClass()
+ .addClass('cboxMovie');
+ });
+ $('a.modal_imdbtrailer')
+ .colorbox({
+ // IMDB trailer modal
+ href: function() {
+ return (
+ SERVERROOT +
+ 'movietrailer/' +
+ $(this)
+ .attr('name')
+ .substring(4) +
+ '&modal'
+ );
+ },
+ title: function() {
+ return $(this)
+ .parent()
+ .parent()
+ .children('a.title')
+ .text();
+ },
+ innerWidth: '800px',
+ innerHeight: '450px',
+ initialWidth: '800px',
+ initialHeight: '450px',
+ speed: 0,
+ opacity: 0.7,
+ })
+ .click(function() {
+ $('#colorbox')
+ .removeClass()
+ .addClass('cboxMovie');
+ });
- $("table.data a.modal_music").colorbox({ // Music modal
- href: function () {
- return SERVERROOT + "musicmodal/" + $(this).attr('name').substring(4) + '&modal';
- },
- title: function () {
- return $(this).parent().parent().children('a.title').text();
- },
- innerWidth: "800px", innerHeight: "450px", initialWidth: "800px", initialHeight: "450px", speed: 0, opacity: 0.7
- }).click(function () {
- $('#colorbox').removeClass().addClass('cboxMusic');
- });
- $("table.data a.modal_console").colorbox({ // Console modal
- href: function () {
- return SERVERROOT + "consolemodal/" + $(this).attr('name').substring(4) + '&modal';
- },
- title: function () {
- return $(this).parent().parent().children('a.title').text();
- },
- innerWidth: "800px", innerHeight: "450px", initialWidth: "800px", initialHeight: "450px", speed: 0, opacity: 0.7
- }).click(function () {
- $('#colorbox').removeClass().addClass('cboxConsole');
- });
- $("table.data a.modal_book").colorbox({ // Book modal
- href: function () {
- return SERVERROOT + "bookmodal/" + $(this).attr('name').substring(4) + '&modal';
- },
- title: function () {
- return $(this).parent().parent().children('a.title').text();
- },
- innerWidth: "800px", innerHeight: "450px", initialWidth: "800px", initialHeight: "450px", speed: 0, opacity: 0.7
- }).click(function () {
- $('#colorbox').removeClass().addClass('cboxBook');
- });
+ $('table.data a.modal_music')
+ .colorbox({
+ // Music modal
+ href: function() {
+ return (
+ SERVERROOT +
+ 'musicmodal/' +
+ $(this)
+ .attr('name')
+ .substring(4) +
+ '&modal'
+ );
+ },
+ title: function() {
+ return $(this)
+ .parent()
+ .parent()
+ .children('a.title')
+ .text();
+ },
+ innerWidth: '800px',
+ innerHeight: '450px',
+ initialWidth: '800px',
+ initialHeight: '450px',
+ speed: 0,
+ opacity: 0.7,
+ })
+ .click(function() {
+ $('#colorbox')
+ .removeClass()
+ .addClass('cboxMusic');
+ });
+ $('table.data a.modal_console')
+ .colorbox({
+ // Console modal
+ href: function() {
+ return (
+ SERVERROOT +
+ 'consolemodal/' +
+ $(this)
+ .attr('name')
+ .substring(4) +
+ '&modal'
+ );
+ },
+ title: function() {
+ return $(this)
+ .parent()
+ .parent()
+ .children('a.title')
+ .text();
+ },
+ innerWidth: '800px',
+ innerHeight: '450px',
+ initialWidth: '800px',
+ initialHeight: '450px',
+ speed: 0,
+ opacity: 0.7,
+ })
+ .click(function() {
+ $('#colorbox')
+ .removeClass()
+ .addClass('cboxConsole');
+ });
+ $('table.data a.modal_book')
+ .colorbox({
+ // Book modal
+ href: function() {
+ return (
+ SERVERROOT +
+ 'bookmodal/' +
+ $(this)
+ .attr('name')
+ .substring(4) +
+ '&modal'
+ );
+ },
+ title: function() {
+ return $(this)
+ .parent()
+ .parent()
+ .children('a.title')
+ .text();
+ },
+ innerWidth: '800px',
+ innerHeight: '450px',
+ initialWidth: '800px',
+ initialHeight: '450px',
+ speed: 0,
+ opacity: 0.7,
+ })
+ .click(function() {
+ $('#colorbox')
+ .removeClass()
+ .addClass('cboxBook');
+ });
-
- $('#nzb_multi_operations_form').submit(function () {
+ $('#nzb_multi_operations_form').submit(function() {
return false;
});
-
- $('button.nzb_multi_operations_download').on('click', (function () {
- var ids = "";
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
- if ($(row).val() != "on")
- ids += $(row).val() + ',';
+ $('button.nzb_multi_operations_download').on('click', function() {
+ var ids = '';
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
+ if ($(row).val() != 'on') ids += $(row).val() + ',';
});
ids = ids.substring(0, ids.length - 1);
- if (ids)
- window.location = SERVERROOT + "/getnzb?zip=1&id=" + ids;
- }));
+ if (ids) window.location = SERVERROOT + '/getnzb?zip=1&id=' + ids;
+ });
- $('input.nzb_multi_operations_download_cart').on('click', (function () {
- var ids = "";
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
- if ($(row).val() != "on")
- ids += $(row).val() + ',';
+ $('input.nzb_multi_operations_download_cart').on('click', function() {
+ var ids = '';
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
+ if ($(row).val() != 'on') ids += $(row).val() + ',';
});
ids = ids.substring(0, ids.length - 1);
- if (ids)
- window.location = SERVERROOT + "/getnzb?zip=1&id=" + ids;
- }));
+ if (ids) window.location = SERVERROOT + '/getnzb?zip=1&id=' + ids;
+ });
-
- $('button.nzb_multi_operations_cart').on('click', (function () {
+ $('button.nzb_multi_operations_cart').on('click', function() {
var guids = new Array();
$.ajaxSetup({
headers: {
- 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
- }
+ 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
+ },
});
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
var guid = $(row).val();
- var $cartIcon = $(row).parent().children('div.icons').children('.icon_cart');
+ var $cartIcon = $(row)
+ .parent()
+ .children('div.icons')
+ .children('.icon_cart');
if (guid && !$cartIcon.hasClass('icon_cart_clicked')) {
$cartIcon.addClass('icon_cart_clicked').attr('title', 'Added to Cart');
guids.push(guid);
- PNotify.defaults.icons = "fontawesome5";
+ PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Release added to your Download Basket!',
type: 'success',
@@ -537,31 +707,35 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
}
$(this).attr('checked', false);
});
var guidstring = guids.toString();
//alert (guidstring); // This is just for testing shit
- $.post(SERVERROOT + "/cart/add?id=" + guidstring);
- }));
- $('button.nzb_multi_operations_sab').on('click', (function () {
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
- var $sabIcon = $(row).parent().parent().children('td.icons').children('.icon_sab');
+ $.post(SERVERROOT + '/cart/add?id=' + guidstring);
+ });
+ $('button.nzb_multi_operations_sab').on('click', function() {
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
+ var $sabIcon = $(row)
+ .parent()
+ .parent()
+ .children('td.icons')
+ .children('.icon_sab');
var guid = $(row).val();
//alert(guid);
if (guid && !$sabIcon.hasClass('icon_sab_clicked')) {
- var nzburl = SERVERROOT + "/sendtoqueue/" + guid;
+ var nzburl = SERVERROOT + '/sendtoqueue/' + guid;
// alert(nzburl);
- $.post(nzburl, function (resp) {
+ $.post(nzburl, function(resp) {
$sabIcon.addClass('icon_sab_clicked').attr('title', 'Added to Queue');
- PNotify.defaults.icons = "fontawesome5";
+ PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Release added to your download queue!',
type: 'success',
@@ -569,27 +743,31 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
});
}
$(this).attr('checked', false);
});
- }));
- $('input.nzb_multi_operations_nzbget').on('click', (function () {
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
- var $nzbgetIcon = $(row).parent().parent().children('td.icons').children('.icon_nzbget');
+ });
+ $('input.nzb_multi_operations_nzbget').on('click', function() {
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
+ var $nzbgetIcon = $(row)
+ .parent()
+ .parent()
+ .children('td.icons')
+ .children('.icon_nzbget');
var guid = $(row).val();
if (guid && !$nzbgetIcon.hasClass('icon_nzbget_clicked')) {
- var nzburl = SERVERROOT + "/sendtoqueue/" + guid;
- $.post(nzburl, function (resp) {
+ var nzburl = SERVERROOT + '/sendtoqueue/' + guid;
+ $.post(nzburl, function(resp) {
$nzbgetIcon.addClass('icon_nzbget_clicked').attr('title', 'Added to Queue');
- PNotify.defaults.icons = "fontawesome5";
+ PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
title: 'Release added to your download queue!',
type: 'success',
@@ -597,48 +775,52 @@ jQuery(function ($) {
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
});
}
$(this).attr('checked', false);
});
- }));
+ });
//front end admin functions
- $('input.nzb_multi_operations_edit').click(function () {
- var ids = "";
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
- if ($(row).val() != "on")
- ids += '&id[]=' + $(row).val();
+ $('input.nzb_multi_operations_edit').click(function() {
+ var ids = '';
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
+ if ($(row).val() != 'on') ids += '&id[]=' + $(row).val();
});
if (ids)
$('input.nzb_multi_operations_edit').colorbox({
- href: function () {
- return SERVERROOT + "ajax_release-admin?action=edit" + ids + "&from=" + encodeURIComponent(window.location);
+ href: function() {
+ return (
+ SERVERROOT +
+ 'ajax_release-admin?action=edit' +
+ ids +
+ '&from=' +
+ encodeURIComponent(window.location)
+ );
},
title: 'Edit Release',
- innerWidth: "400px",
- innerHeight: "250px",
- initialWidth: "400px",
- initialHeight: "250px",
+ innerWidth: '400px',
+ innerHeight: '250px',
+ initialWidth: '400px',
+ initialHeight: '250px',
speed: 0,
- opacity: 0.7
+ opacity: 0.7,
});
});
- $('input.nzb_multi_operations_delete').click(function () {
- var ids = "";
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
- if ($(row).val() != "on")
- ids += '&id[]=' + $(row).val();
+ $('input.nzb_multi_operations_delete').click(function() {
+ var ids = '';
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
+ if ($(row).val() != 'on') ids += '&id[]=' + $(row).val();
});
if (ids) {
- PNotify.defaults.icons = "fontawesome5";
+ PNotify.defaults.icons = 'fontawesome5';
const notice = PNotify.alert({
title: 'Confirmation Needed',
text: 'Are you sure you want to delete the selected releases?',
@@ -646,340 +828,389 @@ jQuery(function ($) {
hide: false,
modules: {
Confirm: {
- confirm: true
- }
+ confirm: true,
+ },
},
Buttons: {
closer: false,
- sticker: false
+ sticker: false,
},
History: {
- history: false
- }
+ history: false,
+ },
});
- notice.on('pnotify.confirm', function () {
- $.post(SERVERROOT + "ajax_release-admin?action=dodelete" + ids, function (resp) {
+ notice.on('pnotify.confirm', function() {
+ $.post(SERVERROOT + 'ajax_release-admin?action=dodelete' + ids, function(resp) {
location.reload(true);
});
});
- notice.on('pnotify.cancel', function () {
+ notice.on('pnotify.cancel', function() {
alert('Cancelled');
});
}
});
- $('input.nzb_multi_operations_rebuild').click(function () {
- var ids = "";
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
- if ($(row).val() != "on")
- ids += '&id[]=' + $(row).val();
+ $('input.nzb_multi_operations_rebuild').click(function() {
+ var ids = '';
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
+ if ($(row).val() != 'on') ids += '&id[]=' + $(row).val();
});
if (ids)
if (confirm('Are you sure you want to rebuild the selected releases?')) {
- $.post(SERVERROOT + "ajax_release-admin?action=dorebuild" + ids, function (resp) {
+ $.post(SERVERROOT + 'ajax_release-admin?action=dorebuild' + ids, function(resp) {
location.reload(true);
});
}
});
//cart functions
- $('input.nzb_multi_operations_cartdelete').click(function () {
+ $('input.nzb_multi_operations_cartdelete').click(function() {
var ids = new Array();
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
- if ($(row).val() != "on")
- ids.push($(row).val());
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
+ if ($(row).val() != 'on') ids.push($(row).val());
});
$.ajaxSetup({
headers: {
- 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
- }
+ 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
+ },
});
//alert(SERVERROOT + "/cart/delete/" + ids);
if (ids) {
- PNotify.defaults.icons = "fontawesome5";
+ PNotify.defaults.icons = 'fontawesome5';
const notice = PNotify.alert({
title: 'Confirmation Needed',
text: 'Are you sure you want to delete the selected releases from your cart?',
hide: false,
modules: {
Confirm: {
- confirm: true
- }
+ confirm: true,
+ },
},
Buttons: {
closer: false,
- sticker: false
+ sticker: false,
},
History: {
- history: false
- }
+ history: false,
+ },
});
- notice.on('pnotify.confirm', function () {
- $.post(SERVERROOT + "/cart/delete/" + ids)
+ notice.on('pnotify.confirm', function() {
+ $.post(SERVERROOT + '/cart/delete/' + ids);
});
- notice.on('pnotify.cancel', function () {
+ notice.on('pnotify.cancel', function() {
alert('Cancelled');
});
}
});
- $('input.nzb_multi_operations_cartsab').click(function () {
+ $('input.nzb_multi_operations_cartsab').click(function() {
var ids = new Array();
- $("table.data INPUT[type='checkbox']:checked").each(function (i, row) {
+ $("table.data INPUT[type='checkbox']:checked").each(function(i, row) {
var guid = $(row).val();
- var nzburl = SERVERROOT + "/sendtoqueue/" + guid;
- $.post(nzburl, function () {
- PNotify.defaults.icons = "fontawesome5";
+ var nzburl = SERVERROOT + '/sendtoqueue/' + guid;
+ $.post(nzburl, function() {
+ PNotify.defaults.icons = 'fontawesome5';
PNotify.success({
-
title: 'Releases sent to queue!',
type: 'success',
icon: 'fa fa-info fa-3x',
Animate: {
animate: true,
in_class: 'bounceInLeft',
- out_class: 'bounceOutRight'
+ out_class: 'bounceOutRight',
},
desktop: {
desktop: true,
- fallback: true
- }
+ fallback: true,
+ },
});
});
});
});
-
// headermenu.tpl
$('#headsearch')
- .focus(function () {
- if (this.value == 'Search...') this.value = ''; else this.select();
+ .focus(function() {
+ if (this.value == 'Search...') this.value = '';
+ else this.select();
})
- .blur(function () {
+ .blur(function() {
if (this.value == '') this.value = 'Search...';
});
- $('#headsearch_form').submit(function () {
+ $('#headsearch_form').submit(function() {
$('#headsearch_go').trigger('click');
return false;
});
- $('#headsearch_go').click(function () {
+ $('#headsearch_go').click(function() {
if ($('#headsearch').val() && $('#headsearch').val() != 'Search...') {
-
var sText = $('#headsearch').val();
- var sCat = ($("#headcat").val() != -1 ? "&t=" + $("#headcat").val() : "");
- document.location = WWW_TOP + "/search?id=" + sText + sCat;
+ var sCat = $('#headcat').val() != -1 ? '&t=' + $('#headcat').val() : '';
+ document.location = WWW_TOP + '/search?id=' + sText + sCat;
}
});
// search.tpl
- $('#search_search_button').click(function () {
+ $('#search_search_button').click(function() {
if ($('#search').val())
- document.location = WWW_TOP + "/search?id=" + $('#search').val() + ($("#search_cat").val() != -1 ? "&t=" + $("#search_cat").val() : "");
+ document.location =
+ WWW_TOP +
+ '/search?id=' +
+ $('#search').val() +
+ ($('#search_cat').val() != -1 ? '&t=' + $('#search_cat').val() : '');
return false;
});
- $('#search')
- .focus(function () {
- this.select();
- })
+ $('#search').focus(function() {
+ this.select();
+ });
// searchraw.tpl
- $('#searchraw_search_button').click(function () {
- if ($('#search').val())
- document.location = WWW_TOP + "/searchraw/" + $('#search').val();
+ $('#searchraw_search_button').click(function() {
+ if ($('#search').val()) document.location = WWW_TOP + '/searchraw/' + $('#search').val();
return false;
});
- $('#searchraw_download_selected').click(function () {
- if ($('#dl input:checked').length)
- $('#dl').trigger('submit');
+ $('#searchraw_download_selected').click(function() {
+ if ($('#dl input:checked').length) $('#dl').trigger('submit');
return false;
});
// login.tpl, register.tpl, search.tpl, searchraw.tpl
- if ($('#username').length)
- $('#username').focus();
- if ($('#search').length)
- $('#search').focus();
+ if ($('#username').length) $('#username').focus();
+ if ($('#search').length) $('#search').focus();
// viewfilelist.tpl
- $('#viewfilelist_download_selected').click(function () {
- if ($('#fileform input:checked').length)
- $('#fileform').trigger('submit');
+ $('#viewfilelist_download_selected').click(function() {
+ if ($('#fileform input:checked').length) $('#fileform').trigger('submit');
return false;
});
// misc
- $('.confirm_action').click(function () {
+ $('.confirm_action').click(function() {
return confirm('Are you sure?');
});
// play audio preview
- $('.audioprev').click(function () {
- var a = document.getElementById($(this).next('audio').attr('ID'));
+ $('.audioprev').click(function() {
+ var a = document.getElementById(
+ $(this)
+ .next('audio')
+ .attr('ID')
+ );
if (a != null) {
- if ($(this).text() == "Listen") {
+ if ($(this).text() == 'Listen') {
a.play();
- $(this).text("Stop");
- }
- else {
+ $(this).text('Stop');
+ } else {
a.pause();
a.currentTime = 0;
- $(this).text("Listen");
+ $(this).text('Listen');
}
}
- a.addEventListener('ended', function () {
- $(this).prev().text("Listen");
+ a.addEventListener('ended', function() {
+ $(this)
+ .prev()
+ .text('Listen');
});
return false;
});
// mmenu
- $('.mmenu').click(function () {
- document.location = $(this).children('a').attr('href');
+ $('.mmenu').click(function() {
+ document.location = $(this)
+ .children('a')
+ .attr('href');
return false;
});
// mmenu_new
- $('.mmenu_new').click(function () {
- window.open($(this).children('a').attr('href'));
+ $('.mmenu_new').click(function() {
+ window.open(
+ $(this)
+ .children('a')
+ .attr('href')
+ );
return false;
});
// searchraw.tpl, viewfilelist.tpl -- checkbox operations
// selections
var last1, last2;
- $(".checkbox_operations .select_all").click(function () {
- $("table.data INPUT[type='checkbox']").attr('checked', true).trigger('change');
+ $('.checkbox_operations .select_all').click(function() {
+ $("table.data INPUT[type='checkbox']")
+ .attr('checked', true)
+ .trigger('change');
return false;
});
- $(".checkbox_operations .select_none").click(function () {
- $("table.data INPUT[type='checkbox']").attr('checked', false).trigger('change');
+ $('.checkbox_operations .select_none').click(function() {
+ $("table.data INPUT[type='checkbox']")
+ .attr('checked', false)
+ .trigger('change');
return false;
});
- $(".checkbox_operations .select_invert").click(function () {
- $("table.data INPUT[type='checkbox']").each(function () {
- $(this).attr('checked', !$(this).attr('checked')).trigger('change');
+ $('.checkbox_operations .select_invert').click(function() {
+ $("table.data INPUT[type='checkbox']").each(function() {
+ $(this)
+ .attr('checked', !$(this).attr('checked'))
+ .trigger('change');
});
return false;
});
- $(".checkbox_operations .select_range").click(function () {
+ $('.checkbox_operations .select_range').click(function() {
if (last1 && last2 && last1 < last2)
- $("table.data INPUT[type='checkbox']").slice(last1, last2).attr('checked', true).trigger('change');
+ $("table.data INPUT[type='checkbox']")
+ .slice(last1, last2)
+ .attr('checked', true)
+ .trigger('change');
else if (last1 && last2)
- $("table.data INPUT[type='checkbox']").slice(last2, last1).attr('checked', true).trigger('change');
+ $("table.data INPUT[type='checkbox']")
+ .slice(last2, last1)
+ .attr('checked', true)
+ .trigger('change');
return false;
});
- $('table.data td.check INPUT[type="checkbox"]').click(function (e) {
+ $('table.data td.check INPUT[type="checkbox"]').click(function(e) {
// range event interaction -- see further above
- var rowNum = $(e.target).parent().parent()[0].rowIndex;
+ var rowNum = $(e.target)
+ .parent()
+ .parent()[0].rowIndex;
if (last1) last2 = last1;
last1 = rowNum;
// perform range selection
if (e.shiftKey && last1 && last2) {
if (last1 < last2)
- $("table.data INPUT[type='checkbox']").slice(last1, last2).attr('checked', true).trigger('change');
+ $("table.data INPUT[type='checkbox']")
+ .slice(last1, last2)
+ .attr('checked', true)
+ .trigger('change');
else
- $("table.data INPUT[type='checkbox']").slice(last2, last1).attr('checked', true).trigger('change');
+ $("table.data INPUT[type='checkbox']")
+ .slice(last2, last1)
+ .attr('checked', true)
+ .trigger('change');
}
});
- $('table.data a.data_filename').click(function (e) { // click filenames to select
+ $('table.data a.data_filename').click(function(e) {
+ // click filenames to select
// range event interaction -- see further above
- var rowNum = $(e.target).parent().parent()[0].rowIndex;
+ var rowNum = $(e.target)
+ .parent()
+ .parent()[0].rowIndex;
if (last1) last2 = last1;
last1 = rowNum;
- var $checkbox = $('table.data tr:nth-child(' + (rowNum + 1) + ') td.selection INPUT[type="checkbox"]');
+ var $checkbox = $(
+ 'table.data tr:nth-child(' + (rowNum + 1) + ') td.selection INPUT[type="checkbox"]'
+ );
$checkbox.attr('checked', !$checkbox.attr('checked'));
return false;
});
// show/hide previews
- $('#showmoviepreviews').click(function () {
- $('#moviepreviews').next('form').toggle('fast');
- $('#moviepreviews').toggle('fast', function () {
- $('#showmoviepreviews').text(($('#moviepreviews').is(":visible") ? "Hide" : "Show") + " previews");
+ $('#showmoviepreviews').click(function() {
+ $('#moviepreviews')
+ .next('form')
+ .toggle('fast');
+ $('#moviepreviews').toggle('fast', function() {
+ $('#showmoviepreviews').text(
+ ($('#moviepreviews').is(':visible') ? 'Hide' : 'Show') + ' previews'
+ );
});
return false;
});
// show/hide invite form
- $('#lnkSendInvite').click(function () {
+ $('#lnkSendInvite').click(function() {
$('#divInvite').slideToggle('fast');
});
// send an invite
- $('#frmSendInvite').submit(function () {
- var inputEmailto = $("#txtInvite").val();
+ $('#frmSendInvite').submit(function() {
+ var inputEmailto = $('#txtInvite').val();
if (isValidEmailAddress(inputEmailto)) {
-
// no caching of results
$.ajax({
url: WWW_TOP + '/ajax_profile?action=1&rand=' + $.now(),
- data: {emailto: inputEmailto},
- dataType: "html",
- success: function (data) {
- $("#txtInvite").val("");
+ data: { emailto: inputEmailto },
+ dataType: 'html',
+ success: function(data) {
+ $('#txtInvite').val('');
$('#divInvite').slideToggle('fast');
- $("#divInviteSuccess").text(data).show();
- $("#divInviteError").hide();
+ $('#divInviteSuccess')
+ .text(data)
+ .show();
+ $('#divInviteError').hide();
+ },
+ error: function(xhr, err, e) {
+ alert('Error in ajax_profile: ' + err);
},
- error: function (xhr, err, e) {
- alert("Error in ajax_profile: " + err);
- }
});
- }
- else {
- $("#divInviteSuccess").hide();
- $("#divInviteError").text("Invalid email").show();
+ } else {
+ $('#divInviteSuccess').hide();
+ $('#divInviteError')
+ .text('Invalid email')
+ .show();
}
return false;
});
// movie.tpl
- $('.mlmore').click(function () { // show more movies
- $(this).parent().parent().hide();
- $(this).parent().parent().parent().children(".mlextra").show();
+ $('.mlmore').click(function() {
+ // show more movies
+ $(this)
+ .parent()
+ .parent()
+ .hide();
+ $(this)
+ .parent()
+ .parent()
+ .parent()
+ .children('.mlextra')
+ .show();
return false;
});
// lookup tmdb for a movie
- $('#frmMyMovieLookup').submit(function () {
- var movSearchText = $("#txtsearch").val();
+ $('#frmMyMovieLookup').submit(function() {
+ var movSearchText = $('#txtsearch').val();
// no caching of results
$.ajax({
url: WWW_TOP + '/ajax_mymovies?rand=' + $.now(),
- data: {id: movSearchText},
- dataType: "html",
- success: function (data) {
- $("#divMovResults").html(data);
+ data: { id: movSearchText },
+ dataType: 'html',
+ success: function(data) {
+ $('#divMovResults').html(data);
+ },
+ error: function(xhr, err, e) {
+ alert('Error in ajax_mymovies: ' + err);
},
- error: function (xhr, err, e) {
- alert("Error in ajax_mymovies: " + err);
- }
});
return false;
});
// season selector in TV
- $('a[id^="seas_"]').click(function () {
- seas = $(this).attr("ID").replace("seas_", "");
+ $('a[id^="seas_"]').click(function() {
+ seas = $(this)
+ .attr('ID')
+ .replace('seas_', '');
$('table[class^="tb_"]').hide();
$('.tb_' + seas).show();
- $("li", $(this).closest("ul")).removeClass("active");
- $(this).closest("li").addClass("active");
+ $('li', $(this).closest('ul')).removeClass('active');
+ $(this)
+ .closest('li')
+ .addClass('active');
return false;
});
});
-
-$.extend({ // http://plugins.jquery.com/project/URLEncode
- URLEncode: function (c) {
+$.extend({
+ // http://plugins.jquery.com/project/URLEncode
+ URLEncode: function(c) {
var o = '';
var x = 0;
c = c.toString();
@@ -990,7 +1221,8 @@ $.extend({ // http://plugins.jquery.com/project/URLEncode
o += m[1];
x += m[1].length;
} else {
- if (c[x] == ' ') o += '+'; else {
+ if (c[x] == ' ') o += '+';
+ else {
var d = c.charCodeAt(x);
var h = d.toString(16);
o += '%' + (h.length < 2 ? '0' : '') + h.toUpperCase();
@@ -1000,7 +1232,7 @@ $.extend({ // http://plugins.jquery.com/project/URLEncode
}
return o;
},
- URLDecode: function (s) {
+ URLDecode: function(s) {
var o = s;
var binVal, t;
var r = /(%[^%]{2})/;
@@ -1010,26 +1242,28 @@ $.extend({ // http://plugins.jquery.com/project/URLEncode
o = o.replace(m[1], t);
}
return o;
- }
+ },
});
-
function isValidEmailAddress(emailAddress) {
- var pattern = new RegExp(/^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i);
+ var pattern = new RegExp(
+ /^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i
+ );
return pattern.test(emailAddress);
}
function mymovie_del(imdbID, btn) {
$.ajax({
url: WWW_TOP + '/ajax_mymovies?rand=' + $.now(),
- data: {del: imdbID},
- dataType: "html",
- success: function (data) {
+ data: { del: imdbID },
+ dataType: 'html',
+ success: function(data) {
$(btn).hide();
- $(btn).prev("a").show();
+ $(btn)
+ .prev('a')
+ .show();
},
- error: function (xhr, err, e) {
- }
+ error: function(xhr, err, e) {},
});
return false;
@@ -1037,16 +1271,16 @@ function mymovie_del(imdbID, btn) {
function mymovie_add(imdbID, btn) {
$(btn).hide();
- $(btn).next("a").show();
+ $(btn)
+ .next('a')
+ .show();
$.ajax({
url: WWW_TOP + '/ajax_mymovies?rand=' + $.now(),
- data: {add: imdbID},
- dataType: "html",
- success: function (data) {
- },
- error: function (xhr, err, e) {
- }
+ data: { add: imdbID },
+ dataType: 'html',
+ success: function(data) {},
+ error: function(xhr, err, e) {},
});
return false;
@@ -1054,52 +1288,55 @@ function mymovie_add(imdbID, btn) {
//reset users api counts
function resetapireq(uid, type) {
- $.post(SERVERROOT + "ajax_resetusergrabs-admin?id=" + uid + "&action=" + type, function (resp) {
- });
+ $.post(SERVERROOT + 'ajax_resetusergrabs-admin?id=' + uid + '&action=' + type, function(
+ resp
+ ) {});
}
function getNzbGetQueue() {
$.ajax({
- url: "queuedata?type=nzbget&id=" + $.now(),
+ url: 'queuedata?type=nzbget&id=' + $.now(),
cache: false,
- success: function (html) {
- $(".nzbget_queue").html(html);
- setTimeout("getNzbGetQueue()", 2500);
+ success: function(html) {
+ $('.nzbget_queue').html(html);
+ setTimeout('getNzbGetQueue()', 2500);
},
- error: function () {
- $(".nzbget_queue").html("Could not contact your queue. Refresh ");
+ error: function() {
+ $('.nzbget_queue').html(
+ 'Could not contact your queue. Refresh '
+ );
},
- timeout: 5000
+ timeout: 5000,
});
}
function getHistory() {
$.ajax({
- url: "queuedata?type=history&id=" + $.now(),
+ url: 'queuedata?type=history&id=' + $.now(),
cache: false,
- success: function (html) {
- $(".sab_history").html(html);
- setTimeout("getHistory()", 10000);
+ success: function(html) {
+ $('.sab_history').html(html);
+ setTimeout('getHistory()', 10000);
},
- error: function () {
+ error: function() {
//$(".sab_history").html("Could not contact your queue. Refresh ");
},
- timeout: 5000
+ timeout: 5000,
});
}
/** ****** iswitch *********************** **/
-$(function () {
+$(function() {
var checkAll = $('input.flat-all');
var checkboxes = $('input.flat');
$('input').iCheck({
checkboxClass: 'icheckbox_flat-green',
- radioClass: 'iradio_flat-green'
+ radioClass: 'iradio_flat-green',
});
- checkAll.on('ifChecked ifUnchecked', function (event) {
+ checkAll.on('ifChecked ifUnchecked', function(event) {
if (event.type === 'ifChecked') {
checkboxes.iCheck('check');
} else {
@@ -1107,7 +1344,7 @@ $(function () {
}
});
- checkboxes.on('ifChanged', function (event) {
+ checkboxes.on('ifChanged', function(event) {
if (checkboxes.filter(':checked').length === checkboxes.length) {
checkAll.prop('checked', 'checked');
} else {
@@ -1121,19 +1358,20 @@ $(function () {
/** ****** tinyMCE ************************* **/
tinyMCE.init({
selector: 'textarea#addMessage',
- theme: "modern",
+ theme: 'modern',
plugins: [
'advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker',
'searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking',
- 'save table contextmenu directionality emoticons template paste textcolor code'
+ 'save table contextmenu directionality emoticons template paste textcolor code',
],
- theme_advanced_toolbar_location: "top",
- theme_advanced_toolbar_align: "left",
- toolbar: 'insertfile undo redo | styleselect | fontselect |sizeselect | fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | print preview media fullpage | forecolor backcolor emoticons | code',
- fontsize_formats: "8pt 9pt 10pt 11pt 12pt 13pt 14pt 15pt 16pt 17pt 18pt 24pt 36pt",
- mode: "exact",
+ theme_advanced_toolbar_location: 'top',
+ theme_advanced_toolbar_align: 'left',
+ toolbar:
+ 'insertfile undo redo | styleselect | fontselect |sizeselect | fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | print preview media fullpage | forecolor backcolor emoticons | code',
+ fontsize_formats: '8pt 9pt 10pt 11pt 12pt 13pt 14pt 15pt 16pt 17pt 18pt 24pt 36pt',
+ mode: 'exact',
relative_urls: false,
remove_script_host: false,
- convert_urls: true
+ convert_urls: true,
});
/** ****** /tinyMCE ************************* **/
diff --git a/resources/assets/js/utils-admin.js b/resources/assets/js/utils-admin.js
index 9fb5580c9..6922559a1 100644
--- a/resources/assets/js/utils-admin.js
+++ b/resources/assets/js/utils-admin.js
@@ -4,37 +4,41 @@
* @param id group id
* @param status 0 = deactive, 1 = activate
*/
-function ajax_group_status(id, what)
-{
+function ajax_group_status(id, what) {
// no caching of results
var rand_no = Math.random();
- if (what != undefined)
- {
+ if (what != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=toggle_group_active_status&rand=' + rand_no,
- data : { group_id: id, group_status: what },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=toggle_group_active_status&rand=' + rand_no,
+ data: { group_id: id, group_status: what },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// switch some links around
if (what == 0) {
- $('td#group-' + id).html('Activate ');
- }
- else {
- $('td#group-' + id).html('Deactivate ');
+ $('td#group-' + id).html(
+ 'Activate '
+ );
+ } else {
+ $('td#group-' + id).html(
+ 'Deactivate '
+ );
}
// fade.. mm
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_group_status: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_group_status: ' + err);
+ },
});
- }
- else
- {
+ } else {
alert('Weird.. what group id are looking for?');
}
}
@@ -45,37 +49,41 @@ function ajax_group_status(id, what)
* @param id site id
* @param status 0 = deactive, 1 = activate
*/
-function ajax_sharing_site_status(id, status)
-{
+function ajax_sharing_site_status(id, status) {
// no caching of results
var rand_no = Math.random();
- if (status != undefined)
- {
+ if (status != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_toggle_status&rand=' + rand_no,
- data : { site_id: id, site_status: status },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=sharing_toggle_status&rand=' + rand_no,
+ data: { site_id: id, site_status: status },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// switch some links around
if (status == 0) {
- $('td#site-' + id).html('Enable ');
- }
- else {
- $('td#site-' + id).html('Disable ');
+ $('td#site-' + id).html(
+ 'Enable '
+ );
+ } else {
+ $('td#site-' + id).html(
+ 'Disable '
+ );
}
// fade.. mm
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_sharing_site_status: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_sharing_site_status: ' + err);
+ },
});
- }
- else
- {
+ } else {
alert('Weird.. what site id are looking for?');
}
}
@@ -86,37 +94,41 @@ function ajax_sharing_site_status(id, status)
* @param id
* @param status 0 = deactive, 1 = activate
*/
-function ajax_sharing_enabled(id, status)
-{
+function ajax_sharing_enabled(id, status) {
// no caching of results
var rand_no = Math.random();
- if (status != undefined)
- {
+ if (status != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_toggle_enabled&rand=' + rand_no,
- data : { enabled_status: status },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=sharing_toggle_enabled&rand=' + rand_no,
+ data: { enabled_status: status },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// switch some links around
if (status == 0) {
- $('strong#enabled-' + id).html('[ENABLE] ');
- }
- else {
- $('strong#enabled-' + id).html('[DISABLE] ');
+ $('strong#enabled-' + id).html(
+ '[ENABLE] '
+ );
+ } else {
+ $('strong#enabled-' + id).html(
+ '[DISABLE] '
+ );
}
// fade.. mm
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_sharing_enabled: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_sharing_enabled: ' + err);
+ },
});
- }
- else
- {
+ } else {
alert('Weird.. what enabled id are looking for?');
}
}
@@ -127,37 +139,41 @@ function ajax_sharing_enabled(id, status)
* @param id
* @param status 0 = deactive, 1 = activate
*/
-function ajax_sharing_startposition(id, status)
-{
+function ajax_sharing_startposition(id, status) {
// no caching of results
var rand_no = Math.random();
- if (status != undefined)
- {
+ if (status != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_start_position&rand=' + rand_no,
- data : { start_position: status },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=sharing_start_position&rand=' + rand_no,
+ data: { start_position: status },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// switch some links around
if (status == 0) {
- $('strong#startposition-' + id).html('[ENABLE] ');
- }
- else {
- $('strong#startposition-' + id).html('[DISABLE] ');
+ $('strong#startposition-' + id).html(
+ '[ENABLE] '
+ );
+ } else {
+ $('strong#startposition-' + id).html(
+ '[DISABLE] '
+ );
}
// fade.. mm
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_sharing_startposition: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_sharing_startposition: ' + err);
+ },
});
- }
- else
- {
+ } else {
alert('Weird.. what enabled id are looking for?');
}
}
@@ -167,23 +183,23 @@ function ajax_sharing_startposition(id, status)
*
* @param id
*/
-function ajax_sharing_reset(id)
-{
+function ajax_sharing_reset(id) {
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_reset_settings&rand=' + rand_no,
- data : { reset_settings: id },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=sharing_reset_settings&rand=' + rand_no,
+ data: { reset_settings: id },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// fade.. mm
$('#message').fadeOut(5000);
- setTimeout('history.go(0);',1500);
+ setTimeout('history.go(0);', 1500);
+ },
+ error: function(xhr, err, e) {
+ alert('Error in ajax_sharing_reset: ' + err);
},
- error: function(xhr,err,e) { alert( "Error in ajax_sharing_reset: " + err ); }
});
}
@@ -192,23 +208,23 @@ function ajax_sharing_reset(id)
*
* @param id
*/
-function ajax_sharing_site_purge(id)
-{
+function ajax_sharing_site_purge(id) {
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_purge_site&rand=' + rand_no,
- data : { purge_site: id },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=sharing_purge_site&rand=' + rand_no,
+ data: { purge_site: id },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// fade.. mm
$('#message').fadeOut(5000);
- setTimeout('history.go(0);',1500);
+ setTimeout('history.go(0);', 1500);
+ },
+ error: function(xhr, err, e) {
+ alert('Error in ajax_sharing_site_purge: ' + err);
},
- error: function(xhr,err,e) { alert( "Error in ajax_sharing_site_purge: " + err ); }
});
}
@@ -218,37 +234,41 @@ function ajax_sharing_site_purge(id)
* @param id
* @param status 0 = deactive, 1 = activate
*/
-function ajax_sharing_posting(id, status)
-{
+function ajax_sharing_posting(id, status) {
// no caching of results
var rand_no = Math.random();
- if (status != undefined)
- {
+ if (status != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_toggle_posting&rand=' + rand_no,
- data : { posting_status: status },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=sharing_toggle_posting&rand=' + rand_no,
+ data: { posting_status: status },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// switch some links around
if (status == 0) {
- $('strong#posting-' + id).html('[ENABLE] ');
- }
- else {
- $('strong#posting-' + id).html('[DISABLE] ');
+ $('strong#posting-' + id).html(
+ '[ENABLE] '
+ );
+ } else {
+ $('strong#posting-' + id).html(
+ '[DISABLE] '
+ );
}
// fade.. mm
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_sharing_posting: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_sharing_posting: ' + err);
+ },
});
- }
- else
- {
+ } else {
alert('Weird.. what posting id are looking for?');
}
}
@@ -259,37 +279,41 @@ function ajax_sharing_posting(id, status)
* @param id
* @param status 0 = deactive, 1 = activate
*/
-function ajax_sharing_fetching(id, status)
-{
+function ajax_sharing_fetching(id, status) {
// no caching of results
var rand_no = Math.random();
- if (status != undefined)
- {
+ if (status != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_toggle_fetching&rand=' + rand_no,
- data : { fetching_status: status },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=sharing_toggle_fetching&rand=' + rand_no,
+ data: { fetching_status: status },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// switch some links around
if (status == 0) {
- $('strong#fetching-' + id).html('[ENABLE] ');
- }
- else {
- $('strong#fetching-' + id).html('[DISABLE] ');
+ $('strong#fetching-' + id).html(
+ '[ENABLE] '
+ );
+ } else {
+ $('strong#fetching-' + id).html(
+ '[DISABLE] '
+ );
}
// fade.. mm
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_sharing_fetching: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_sharing_fetching: ' + err);
+ },
});
- }
- else
- {
+ } else {
alert('Weird.. what fetching id are looking for?');
}
}
@@ -300,37 +324,41 @@ function ajax_sharing_fetching(id, status)
* @param id
* @param status 0 = deactive, 1 = activate
*/
-function ajax_sharing_auto(id, status)
-{
+function ajax_sharing_auto(id, status) {
// no caching of results
var rand_no = Math.random();
- if (status != undefined)
- {
+ if (status != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_toggle_site_auto_enabling&rand=' + rand_no,
- data : { auto_status: status },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=sharing_toggle_site_auto_enabling&rand=' + rand_no,
+ data: { auto_status: status },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// switch some links around
if (status == 0) {
- $('strong#auto-' + id).html('[ENABLE] ');
- }
- else {
- $('strong#auto-' + id).html('[DISABLE] ');
+ $('strong#auto-' + id).html(
+ '[ENABLE] '
+ );
+ } else {
+ $('strong#auto-' + id).html(
+ '[DISABLE] '
+ );
}
// fade.. mm
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_sharing_auto: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_sharing_auto: ' + err);
+ },
});
- }
- else
- {
+ } else {
alert('Weird.. what auto id are looking for?');
}
}
@@ -341,37 +369,41 @@ function ajax_sharing_auto(id, status)
* @param id
* @param status 0 = deactive, 1 = activate
*/
-function ajax_sharing_hide(id, status)
-{
+function ajax_sharing_hide(id, status) {
// no caching of results
var rand_no = Math.random();
- if (status != undefined)
- {
+ if (status != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_toggle_hide_users&rand=' + rand_no,
- data : { hide_status: status },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=sharing_toggle_hide_users&rand=' + rand_no,
+ data: { hide_status: status },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// switch some links around
if (status == 0) {
- $('strong#hide-' + id).html('[ENABLE] ');
- }
- else {
- $('strong#hide-' + id).html('[DISABLE] ');
+ $('strong#hide-' + id).html(
+ '[ENABLE] '
+ );
+ } else {
+ $('strong#hide-' + id).html(
+ '[DISABLE] '
+ );
}
// fade.. mm
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_sharing_hide: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_sharing_hide: ' + err);
+ },
});
- }
- else
- {
+ } else {
alert('Weird.. what hide id are looking for?');
}
}
@@ -381,20 +413,16 @@ function ajax_sharing_hide(id, status)
*
* @param status
*/
-function ajax_sharing_toggle_all(status)
-{
+function ajax_sharing_toggle_all(status) {
// no caching of results
var rand_no = Math.random();
- if (status != undefined)
- {
+ if (status != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=sharing_toggle_all_sites&rand=' + rand_no,
- data : { toggle_all: status },
- dataType : "html"
+ url: WWW_TOP + '/admin/ajax?action=sharing_toggle_all_sites&rand=' + rand_no,
+ data: { toggle_all: status },
+ dataType: 'html',
});
- }
- else
- {
+ } else {
alert('Weird.. what toggle status are you looking for?');
}
}
@@ -405,37 +433,41 @@ function ajax_sharing_toggle_all(status)
* @param id group id
* @param status 0 = deactive, 1 = activate
*/
-function ajax_backfill_status(id, what)
-{
+function ajax_backfill_status(id, what) {
// no caching of results
var rand_no = Math.random();
- if (what != undefined)
- {
+ if (what != undefined) {
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=toggle_group_backfill_status&rand=' + rand_no,
- data : { group_id: id, backfill_status: what },
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=toggle_group_backfill_status&rand=' + rand_no,
+ data: { group_id: id, backfill_status: what },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
// switch some links around
if (what == 0) {
- $('td#backfill-' + id).html('Activate ');
- }
- else {
- $('td#backfill-' + id).html('Deactivate ');
+ $('td#backfill-' + id).html(
+ 'Activate '
+ );
+ } else {
+ $('td#backfill-' + id).html(
+ 'Deactivate '
+ );
}
// fade.. mm
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_backfill_status: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_backfill_status: ' + err);
+ },
});
- }
- else
- {
+ } else {
alert('Weird.. what group id are looking for?');
}
}
@@ -445,22 +477,22 @@ function ajax_backfill_status(id, what)
*
* @param id group id
*/
-function ajax_group_delete(id)
-{
+function ajax_group_delete(id) {
// no caching of results
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=group_edit_delete_single&rand=' + rand_no,
- data : { group_id: id},
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=group_edit_delete_single&rand=' + rand_no,
+ data: { group_id: id },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
- $('#grouprow-'+id).fadeOut(2000);
+ $('#grouprow-' + id).fadeOut(2000);
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_group_delete: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_group_delete: ' + err);
+ },
});
}
@@ -469,22 +501,22 @@ function ajax_group_delete(id)
*
* @param id group id
*/
-function ajax_group_reset(id)
-{
+function ajax_group_reset(id) {
// no caching of results
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=group_edit_reset_single&rand=' + rand_no,
- data : { group_id: id},
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=group_edit_reset_single&rand=' + rand_no,
+ data: { group_id: id },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
- $('#grouprow-'+id).fadeTo(2000, 0.5);
+ $('#grouprow-' + id).fadeTo(2000, 0.5);
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_group_reset: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_group_reset: ' + err);
+ },
});
}
@@ -493,22 +525,22 @@ function ajax_group_reset(id)
*
* @param id group id
*/
-function ajax_group_purge(id)
-{
+function ajax_group_purge(id) {
// no caching of results
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=group_edit_purge_single&rand=' + rand_no,
- data : { group_id: id},
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=group_edit_purge_single&rand=' + rand_no,
+ data: { group_id: id },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
- $('#grouprow-'+id).fadeTo(2000, 0.5);
+ $('#grouprow-' + id).fadeTo(2000, 0.5);
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_group_purge: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_group_purge: ' + err);
+ },
});
}
@@ -517,44 +549,44 @@ function ajax_group_purge(id)
*
*
*/
-function ajax_all_reset()
-{
+function ajax_all_reset() {
// no caching of results
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=group_edit_reset_all&rand=' + rand_no,
- data : "All groups reset.",
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=group_edit_reset_all&rand=' + rand_no,
+ data: 'All groups reset.',
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
- $('#grouprow-'+id).fadeTo(2000, 0.5);
+ $('#grouprow-' + id).fadeTo(2000, 0.5);
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_all_reset: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_all_reset: ' + err);
+ },
});
}
/**
* ajax_all_purge()
*/
-function ajax_all_purge()
-{
+function ajax_all_purge() {
// no caching of results
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=group_edit_purge_all&rand=' + rand_no,
- data : "All groups purged",
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=group_edit_purge_all&rand=' + rand_no,
+ data: 'All groups purged',
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
- $('#grouprow-'+id).fadeTo(2000, 0.5);
+ $('#grouprow-' + id).fadeTo(2000, 0.5);
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_all_purge: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_all_purge: ' + err);
+ },
});
}
@@ -563,22 +595,22 @@ function ajax_all_purge()
*
* @param id binary id
*/
-function ajax_binaryblacklist_delete(id)
-{
+function ajax_binaryblacklist_delete(id) {
// no caching of results
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=binary_blacklist_delete&rand=' + rand_no,
- data : { row_id: id},
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=binary_blacklist_delete&rand=' + rand_no,
+ data: { row_id: id },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
- $('#row-'+id).fadeOut(2000);
+ $('#row-' + id).fadeOut(2000);
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_binaryblacklist_delete: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_binaryblacklist_delete: ' + err);
+ },
});
}
@@ -587,22 +619,22 @@ function ajax_binaryblacklist_delete(id)
*
* @param id binary id
*/
-function ajax_category_regex_delete(id)
-{
+function ajax_category_regex_delete(id) {
// no caching of results
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=category_regex_delete&rand=' + rand_no,
- data : { row_id: id},
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=category_regex_delete&rand=' + rand_no,
+ data: { row_id: id },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
- $('#row-'+id).fadeOut(2000);
+ $('#row-' + id).fadeOut(2000);
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_category_regex_delete: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_category_regex_delete: ' + err);
+ },
});
}
@@ -611,22 +643,22 @@ function ajax_category_regex_delete(id)
*
* @param id binary id
*/
-function ajax_collection_regex_delete(id)
-{
+function ajax_collection_regex_delete(id) {
// no caching of results
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=collection_regex_delete&rand=' + rand_no,
- data : { row_id: id},
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=collection_regex_delete&rand=' + rand_no,
+ data: { row_id: id },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
- $('#row-'+id).fadeOut(2000);
+ $('#row-' + id).fadeOut(2000);
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_collection_regex_delete: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_collection_regex_delete: ' + err);
+ },
});
}
@@ -635,49 +667,48 @@ function ajax_collection_regex_delete(id)
*
* @param id binary id
*/
-function ajax_release_naming_regex_delete(id)
-{
+function ajax_release_naming_regex_delete(id) {
// no caching of results
var rand_no = Math.random();
$.ajax({
- url : WWW_TOP + '/admin/ajax?action=release_naming_regex_delete&rand=' + rand_no,
- data : { row_id: id},
- dataType : "html",
- success : function(data)
- {
+ url: WWW_TOP + '/admin/ajax?action=release_naming_regex_delete&rand=' + rand_no,
+ data: { row_id: id },
+ dataType: 'html',
+ success: function(data) {
$('div#message').html(data);
$('div#message').show('fast', function() {});
- $('#row-'+id).fadeOut(2000);
+ $('#row-' + id).fadeOut(2000);
$('#message').fadeOut(5000);
},
- error: function(xhr,err,e) { alert( "Error in ajax_release_naming_regex_delete: " + err ); }
+ error: function(xhr, err, e) {
+ alert('Error in ajax_release_naming_regex_delete: ' + err);
+ },
});
}
-jQuery(function($){
-
+jQuery(function($) {
$('#regexGroupSelect').change(function() {
- document.location="?group=" + $("#regexGroupSelect option:selected").attr('value');
+ document.location = '?group=' + $('#regexGroupSelect option:selected').attr('value');
});
-// misc
- $('.confirm_action').click(function(){ return confirm('Are you sure?'); });
-
+ // misc
+ $('.confirm_action').click(function() {
+ return confirm('Are you sure?');
+ });
});
//enable Custom checkboxes for fix crap releases
-function enableFixCrapCustom(){
+function enableFixCrapCustom() {
var inputs = document.getElementsByName('fix_crap_opt');
if (inputs[2].checked == true) {
- var checks = document.getElementsByName('fix_crap[]')
- for (var t = 0; t < checks.length; t ++) {
+ var checks = document.getElementsByName('fix_crap[]');
+ for (var t = 0; t < checks.length; t++) {
checks[t].disabled = false;
checks[t].readonly = false;
}
- }
- else {
- var checks = document.getElementsByName('fix_crap[]')
- for (var t = 0; t < checks.length; t ++) {
+ } else {
+ var checks = document.getElementsByName('fix_crap[]');
+ for (var t = 0; t < checks.length; t++) {
checks[t].disabled = true;
checks[t].readonly = true;
}
@@ -687,54 +718,57 @@ function enableFixCrapCustom(){
/** ****** tinyMCE ***************************/
tinyMCE.init({
selector: 'textarea#body',
- theme : "modern",
+ theme: 'modern',
plugins: [
'advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker',
'searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking',
- 'save table contextmenu directionality emoticons template paste textcolor code'
+ 'save table contextmenu directionality emoticons template paste textcolor code',
],
- theme_advanced_toolbar_location : "top",
- theme_advanced_toolbar_align : "left",
- toolbar: 'insertfile undo redo | styleselect | fontselect |sizeselect | fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | print preview media fullpage | forecolor backcolor emoticons | code',
- fontsize_formats: "8pt 9pt 10pt 11pt 12pt 13pt 14pt 15pt 16pt 17pt 18pt 24pt 36pt",
- mode : "exact",
- relative_urls : false,
- remove_script_host : false,
- convert_urls : true
+ theme_advanced_toolbar_location: 'top',
+ theme_advanced_toolbar_align: 'left',
+ toolbar:
+ 'insertfile undo redo | styleselect | fontselect |sizeselect | fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | print preview media fullpage | forecolor backcolor emoticons | code',
+ fontsize_formats: '8pt 9pt 10pt 11pt 12pt 13pt 14pt 15pt 16pt 17pt 18pt 24pt 36pt',
+ mode: 'exact',
+ relative_urls: false,
+ remove_script_host: false,
+ convert_urls: true,
});
tinyMCE.init({
selector: 'textarea#metadescription',
- theme : "modern",
+ theme: 'modern',
plugins: [
'advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker',
'searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking',
- 'save table contextmenu directionality emoticons template paste textcolor code'
+ 'save table contextmenu directionality emoticons template paste textcolor code',
],
- theme_advanced_toolbar_location : "top",
- theme_advanced_toolbar_align : "left",
- toolbar: 'insertfile undo redo | styleselect | fontselect |sizeselect | fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | print preview media fullpage | forecolor backcolor emoticons | code',
- fontsize_formats: "8pt 9pt 10pt 11pt 12pt 13pt 14pt 15pt 16pt 17pt 18pt 24pt 36pt",
- mode : "exact",
- relative_urls : false,
- remove_script_host : false,
- convert_urls : true
+ theme_advanced_toolbar_location: 'top',
+ theme_advanced_toolbar_align: 'left',
+ toolbar:
+ 'insertfile undo redo | styleselect | fontselect |sizeselect | fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | print preview media fullpage | forecolor backcolor emoticons | code',
+ fontsize_formats: '8pt 9pt 10pt 11pt 12pt 13pt 14pt 15pt 16pt 17pt 18pt 24pt 36pt',
+ mode: 'exact',
+ relative_urls: false,
+ remove_script_host: false,
+ convert_urls: true,
});
tinyMCE.init({
selector: 'textarea#metakeywords',
- theme : "modern",
+ theme: 'modern',
plugins: [
'advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker',
'searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking',
- 'save table contextmenu directionality emoticons template paste textcolor code'
+ 'save table contextmenu directionality emoticons template paste textcolor code',
],
- theme_advanced_toolbar_location : "top",
- theme_advanced_toolbar_align : "left",
- toolbar: 'insertfile undo redo | styleselect | fontselect |sizeselect | fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | print preview media fullpage | forecolor backcolor emoticons | code',
- fontsize_formats: "8pt 9pt 10pt 11pt 12pt 13pt 14pt 15pt 16pt 17pt 18pt 24pt 36pt",
- mode : "exact",
- relative_urls : false,
- remove_script_host : false,
- convert_urls : true
-});
\ No newline at end of file
+ theme_advanced_toolbar_location: 'top',
+ theme_advanced_toolbar_align: 'left',
+ toolbar:
+ 'insertfile undo redo | styleselect | fontselect |sizeselect | fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | print preview media fullpage | forecolor backcolor emoticons | code',
+ fontsize_formats: '8pt 9pt 10pt 11pt 12pt 13pt 14pt 15pt 16pt 17pt 18pt 24pt 36pt',
+ mode: 'exact',
+ relative_urls: false,
+ remove_script_host: false,
+ convert_urls: true,
+});