国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
388B

  1. (function($) {
  2. 'use strict';
  3. $(function() {
  4. var $fullText = $('.admin-fullText');
  5. $('#admin-fullscreen').on('click', function() {
  6. $.AMUI.fullscreen.toggle();
  7. });
  8. $(document).on($.AMUI.fullscreen.raw.fullscreenchange, function() {
  9. $.AMUI.fullscreen.isFullscreen ? $fullText.text('关闭全屏') : $fullText.text('开启全屏');
  10. });
  11. });
  12. })(jQuery);