|
|
@@ -28,68 +28,6 @@ $(function(){
|
|
|
|
|
|
});
|
|
|
|
|
|
- // slideToTop
|
|
|
- var slideToTop = $("<div />");
|
|
|
- slideToTop.html('<i class="fa fa-chevron-up"></i>');
|
|
|
- slideToTop.css({
|
|
|
- position: 'fixed',
|
|
|
- bottom: '20px',
|
|
|
- right: '25px',
|
|
|
- width: '40px',
|
|
|
- height: '40px',
|
|
|
- color: '#eee',
|
|
|
- 'font-size': '',
|
|
|
- 'line-height': '40px',
|
|
|
- 'text-align': 'center',
|
|
|
- 'background-color': '#222d32',
|
|
|
- cursor: 'pointer',
|
|
|
- 'border-radius': '5px',
|
|
|
- 'z-index': '99999',
|
|
|
- opacity: '.7',
|
|
|
- 'display': 'none'
|
|
|
- });
|
|
|
- slideToTop.on('mouseenter', function () {
|
|
|
- $(this).css('opacity', '1');
|
|
|
- });
|
|
|
- slideToTop.on('mouseout', function () {
|
|
|
- $(this).css('opacity', '.7');
|
|
|
- });
|
|
|
- $('.wrapper').append(slideToTop);
|
|
|
- $(window).scroll(function () {
|
|
|
- if ($(window).scrollTop() >= 150) {
|
|
|
- if (!$(slideToTop).is(':visible')) {
|
|
|
- $(slideToTop).fadeIn(500);
|
|
|
- }
|
|
|
- } else {
|
|
|
- $(slideToTop).fadeOut(500);
|
|
|
- }
|
|
|
- });
|
|
|
- $(slideToTop).click(function () {
|
|
|
- $("html,body").animate({ // firefox ie not support body, chrome support body. but found that new version chrome not support body too.
|
|
|
- scrollTop: 0
|
|
|
- }, 100);
|
|
|
- });
|
|
|
-
|
|
|
- // left menu status v: js + server + cookie
|
|
|
- $('.sidebar-toggle').click(function(){
|
|
|
- var xxljob_adminlte_settings = $.cookie('xxljob_adminlte_settings'); // on=open,off=close
|
|
|
- if ('off' == xxljob_adminlte_settings) {
|
|
|
- xxljob_adminlte_settings = 'on';
|
|
|
- } else {
|
|
|
- xxljob_adminlte_settings = 'off';
|
|
|
- }
|
|
|
- $.cookie('xxljob_adminlte_settings', xxljob_adminlte_settings, { expires: 7 }); //$.cookie('the_cookie', '', { expires: -1 });
|
|
|
- });
|
|
|
-
|
|
|
- // left menu status v1: js + cookie
|
|
|
- /*
|
|
|
- var xxljob_adminlte_settings = $.cookie('xxljob_adminlte_settings');
|
|
|
- if (xxljob_adminlte_settings == 'off') {
|
|
|
- $('body').addClass('sidebar-collapse');
|
|
|
- }
|
|
|
- */
|
|
|
-
|
|
|
-
|
|
|
// update pwd
|
|
|
$('#updatePwd').on('click', function(){
|
|
|
$('#updatePwdModal').modal({backdrop: false, keyboard: false}).modal('show');
|
|
|
@@ -160,5 +98,57 @@ $(function(){
|
|
|
updatePwdModalValidate.resetForm();
|
|
|
$("#updatePwdModal .form .form-group").removeClass("has-error");
|
|
|
});
|
|
|
-
|
|
|
+
|
|
|
+ // slideToTop
|
|
|
+ var slideToTop = $("<div />");
|
|
|
+ slideToTop.html('<i class="fa fa-chevron-up"></i>');
|
|
|
+ slideToTop.css({
|
|
|
+ position: 'fixed',
|
|
|
+ bottom: '20px',
|
|
|
+ right: '25px',
|
|
|
+ width: '40px',
|
|
|
+ height: '40px',
|
|
|
+ color: '#eee',
|
|
|
+ 'font-size': '',
|
|
|
+ 'line-height': '40px',
|
|
|
+ 'text-align': 'center',
|
|
|
+ 'background-color': '#222d32',
|
|
|
+ cursor: 'pointer',
|
|
|
+ 'border-radius': '5px',
|
|
|
+ 'z-index': '99999',
|
|
|
+ opacity: '.7',
|
|
|
+ 'display': 'none'
|
|
|
+ });
|
|
|
+ slideToTop.on('mouseenter', function () {
|
|
|
+ $(this).css('opacity', '1');
|
|
|
+ });
|
|
|
+ slideToTop.on('mouseout', function () {
|
|
|
+ $(this).css('opacity', '.7');
|
|
|
+ });
|
|
|
+ $('.wrapper').append(slideToTop);
|
|
|
+ $(window).scroll(function () {
|
|
|
+ if ($(window).scrollTop() >= 150) {
|
|
|
+ if (!$(slideToTop).is(':visible')) {
|
|
|
+ $(slideToTop).fadeIn(500);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ $(slideToTop).fadeOut(500);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ $(slideToTop).click(function () {
|
|
|
+ $("html,body").animate({ // firefox ie not support body, chrome support body. but found that new version chrome not support body too.
|
|
|
+ scrollTop: 0
|
|
|
+ }, 100);
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ // change menu status
|
|
|
+ $('.sidebar-toggle').click(function(){
|
|
|
+ if ( 'close' == $.cookie('sidebar_status') ) {
|
|
|
+ $.cookie('sidebar_status', 'open', { expires: 7 });
|
|
|
+ } else {
|
|
|
+ $.cookie('sidebar_status', 'close', { expires: 7 }); //$.cookie('the_cookie', '', { expires: -1 });
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
});
|