MCPcopy Index your code
hub / github.com/cnodejs/nodeclub / _fullscreenenter

Function _fullscreenenter

public/javascripts/editor.js:50–61  ·  view source on GitHub ↗
($e)

Source from the content-addressed store, hash-verified

48
49 // 进入全屏模式时,给编辑器增加一些额外的样式
50 function _fullscreenenter ($e) {
51 var d = {
52 margin: '90px 8px 8px 8px',
53 padding: '8px',
54 border: '1px solid #aaa',
55 width: $e.width() - 34,
56 height: $e.height() - 114
57 };
58 setTimeout(function () {
59 $e.css(d);
60 }, 100);
61 }
62 function _fullscreenexit ($e) {
63 $e.css({
64 margin: '0',

Callers 1

fullscreenenterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected