Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.116.62.169
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
Admin /
docs /
javascript /
[ HOME SHELL ]
Name
Size
Permission
Action
card-refresh.md
2.74
KB
-rw-r--r--
card-widget.md
5.84
KB
-rw-r--r--
control-sidebar.md
1.91
KB
-rw-r--r--
direct-chat.md
1.12
KB
-rw-r--r--
layout.md
914
B
-rw-r--r--
push-menu.md
1.67
KB
-rw-r--r--
toasts.md
1.98
KB
-rw-r--r--
todo-list.md
1.15
KB
-rw-r--r--
treeview.md
1.76
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : control-sidebar.md
--- layout: page title: Control Sidebar Plugin --- The control sidebar component is part of AdminLTE's layout as the right sidebar. ##### Usage This plugin can be activated as a jQuery plugin or using the data api. To activate the plugin, you must first add the HTML markup to your layout, then create the toggle button as shown below. ###### HTML Markup {: .text-bold } ```html <!-- Control Sidebar --> <aside class="control-sidebar control-sidebar-dark"> <!-- Control sidebar content goes here --> </aside> <!-- /.control-sidebar --> ``` ###### Data api {: .text-bold } Add `data-widget="control-sidebar"` to any button or a element to activate the plugin. ```html <a href="#" data-widget="control-sidebar">Toggle Control Sidebar</a> ``` ###### jQuery {: .text-bold } Just like all other AdminLTE plugins, you can also activate the toggle button using jQuery by running the following example. ```js $("#my-toggle-button").ControlSidebar('toggle'); ``` ##### Options |--- | Name | Type | Default | Description |-|-|-|- |controlsidebarSlide | Boolean | TRUE | Whether the sidebar should slide over the content or push the content to make space for itself. |scrollbarTheme | Boolean | `os-theme-light` | Scrollbar Theme used while SideBar Fixed |scrollbarAutoHide | Boolean | `l` | Scrollbar auto-hide trigger {: .table .table-bordered .bg-light} > ##### Tip! > You can use any option via the data-attributes like this to enable auto collapse sidebar on 768 pixels width. > ```html > <a href="#" data-widget="control-sidebar" data-controlsidebar-slide="false">Toggle Control Sidebar</a> > ``` {: .quote-info} ##### Events {: .mt-4} |--- | Event Type | Description |-|- |expanded.lte.controlsidebar | Triggered after a control sidebar expands. |collapsed.lte.controlsidebar | Triggered after a control sidebar collapses. {: .table .table-bordered .bg-light} Example: `$('#toggle-button').on('expanded.lte.controlsidebar', handleExpandedEvent)`
Close