mirror of https://github.com/ColorlibHQ/AdminLTE
				
				
				
			fullscreen plugin/button (#2906)
* add fullscreen plugin * add fullscreen buton in topnav * remove old mozilla functionpull/2911/head
							parent
							
								
									42a184233e
								
							
						
					
					
						commit
						c9603ef5aa
					
				| 
						 | 
				
			
			@ -4,6 +4,7 @@ import ControlSidebar from './ControlSidebar'
 | 
			
		|||
import DirectChat from './DirectChat'
 | 
			
		||||
import Dropdown from './Dropdown'
 | 
			
		||||
import ExpandableTable from './ExpandableTable'
 | 
			
		||||
import Fullscreen from './Fullscreen'
 | 
			
		||||
import Layout from './Layout'
 | 
			
		||||
import PushMenu from './PushMenu'
 | 
			
		||||
import SidebarSearch from './SidebarSearch'
 | 
			
		||||
| 
						 | 
				
			
			@ -18,6 +19,7 @@ export {
 | 
			
		|||
  DirectChat,
 | 
			
		||||
  Dropdown,
 | 
			
		||||
  ExpandableTable,
 | 
			
		||||
  Fullscreen,
 | 
			
		||||
  Layout,
 | 
			
		||||
  PushMenu,
 | 
			
		||||
  SidebarSearch,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -0,0 +1,117 @@
 | 
			
		|||
/**
 | 
			
		||||
 * --------------------------------------------
 | 
			
		||||
 * AdminLTE Fullscreen.js
 | 
			
		||||
 * License MIT
 | 
			
		||||
 * --------------------------------------------
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
import $ from 'jquery'
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Constants
 | 
			
		||||
 * ====================================================
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
const NAME = 'Fullscreen'
 | 
			
		||||
const DATA_KEY = 'lte.fullscreen'
 | 
			
		||||
const JQUERY_NO_CONFLICT = $.fn[NAME]
 | 
			
		||||
 | 
			
		||||
const SELECTOR_DATA_WIDGET = '[data-widget="fullscreen"]'
 | 
			
		||||
const SELECTOR_ICON = `${SELECTOR_DATA_WIDGET} i`
 | 
			
		||||
 | 
			
		||||
const Default = {
 | 
			
		||||
  minimizeIcon: 'fa-compress-arrows-alt',
 | 
			
		||||
  maximizeIcon: 'fa-expand-arrows-alt'
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Class Definition
 | 
			
		||||
 * ====================================================
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
class Fullscreen {
 | 
			
		||||
  constructor(_element, _options) {
 | 
			
		||||
    this.element = _element
 | 
			
		||||
    this.options = $.extend({}, Default, _options)
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Public
 | 
			
		||||
 | 
			
		||||
  toggle() {
 | 
			
		||||
    if (document.fullscreenElement ||
 | 
			
		||||
      document.mozFullScreenElement ||
 | 
			
		||||
      document.webkitFullscreenElement ||
 | 
			
		||||
      document.msFullscreenElement) {
 | 
			
		||||
      this.windowed()
 | 
			
		||||
    } else {
 | 
			
		||||
      this.fullscreen()
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  fullscreen() {
 | 
			
		||||
    if (document.documentElement.requestFullscreen) {
 | 
			
		||||
      document.documentElement.requestFullscreen()
 | 
			
		||||
    } else if (document.documentElement.webkitRequestFullscreen) {
 | 
			
		||||
      document.documentElement.webkitRequestFullscreen()
 | 
			
		||||
    } else if (document.documentElement.msRequestFullscreen) {
 | 
			
		||||
      document.documentElement.msRequestFullscreen()
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    $(SELECTOR_ICON).removeClass(this.options.maximizeIcon).addClass(this.options.minimizeIcon)
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  windowed() {
 | 
			
		||||
    if (document.exitFullscreen) {
 | 
			
		||||
      document.exitFullscreen()
 | 
			
		||||
    } else if (document.webkitExitFullscreen) {
 | 
			
		||||
      document.webkitExitFullscreen()
 | 
			
		||||
    } else if (document.msExitFullscreen) {
 | 
			
		||||
      document.msExitFullscreen()
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    $(SELECTOR_ICON).removeClass(this.options.minimizeIcon).addClass(this.options.maximizeIcon)
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Static
 | 
			
		||||
 | 
			
		||||
  static _jQueryInterface(config) {
 | 
			
		||||
    let data = $(this).data(DATA_KEY)
 | 
			
		||||
 | 
			
		||||
    if (!data) {
 | 
			
		||||
      data = $(this).data()
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    const _options = $.extend({}, Default, typeof config === 'object' ? config : data)
 | 
			
		||||
    const plugin = new Fullscreen($(this), _options)
 | 
			
		||||
 | 
			
		||||
    $(this).data(DATA_KEY, typeof config === 'object' ? config : data)
 | 
			
		||||
 | 
			
		||||
    if (typeof config === 'string' && config.match(/toggle|fullscreen|windowed/)) {
 | 
			
		||||
      plugin[config]()
 | 
			
		||||
    } else {
 | 
			
		||||
      plugin.init()
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
  * Data API
 | 
			
		||||
  * ====================================================
 | 
			
		||||
  */
 | 
			
		||||
$(document).on('click', SELECTOR_DATA_WIDGET, function () {
 | 
			
		||||
  Fullscreen._jQueryInterface.call($(this), 'toggle')
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * jQuery API
 | 
			
		||||
 * ====================================================
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
$.fn[NAME] = Fullscreen._jQueryInterface
 | 
			
		||||
$.fn[NAME].Constructor = Fullscreen
 | 
			
		||||
$.fn[NAME].noConflict = function () {
 | 
			
		||||
  $.fn[NAME] = JQUERY_NO_CONFLICT
 | 
			
		||||
  return Fullscreen._jQueryInterface
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default Fullscreen
 | 
			
		||||
| 
						 | 
				
			
			@ -143,6 +143,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -130,6 +130,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -139,6 +139,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -172,6 +172,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -132,6 +132,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -134,6 +134,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -132,6 +132,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -133,6 +133,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -151,6 +151,11 @@
 | 
			
		|||
          </a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -166,6 +166,11 @@
 | 
			
		|||
          </li>
 | 
			
		||||
        </ul>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -131,6 +131,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -141,6 +141,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -130,6 +130,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -130,6 +130,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -131,6 +131,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -129,6 +129,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -130,6 +130,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -130,6 +130,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -131,6 +131,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -131,6 +131,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -128,6 +128,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -130,6 +130,11 @@
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -133,6 +133,11 @@ scratch. This page gets rid of all links and provides the needed markup only.
 | 
			
		|||
          <a href="#" class="dropdown-item dropdown-footer">See All Notifications</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="fullscreen" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-expand-arrows-alt"></i>
 | 
			
		||||
        </a>
 | 
			
		||||
      </li>
 | 
			
		||||
      <li class="nav-item">
 | 
			
		||||
        <a class="nav-link" data-widget="control-sidebar" data-slide="true" href="#" role="button">
 | 
			
		||||
          <i class="fas fa-th-large"></i>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue