mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
b1804afeaf
Also use 'back-compat' in some inline comments where backward compatibility is the subject and shorthand feels more natural. Note: 'backwards compatibility/compatibile' can also be considered correct, though it's primary seen in regular use in British English. Props ocean90. Fixes #36835. Built from https://develop.svn.wordpress.org/trunk@37431 git-svn-id: http://core.svn.wordpress.org/trunk@37397 1a063a9b-81f0-0310-95a4-ce76da25c4cd
40 lines
684 B
JavaScript
40 lines
684 B
JavaScript
/**
|
|
* Distraction-Free Writing (wp-fullscreen) backward compatibility stub.
|
|
* Todo: remove at the end of 2016.
|
|
*
|
|
* Original was deprecated in 4.1, removed in 4.3.
|
|
*/
|
|
( function() {
|
|
var noop = function(){};
|
|
|
|
window.wp = window.wp || {};
|
|
window.wp.editor = window.wp.editor || {};
|
|
window.wp.editor.fullscreen = {
|
|
bind_resize: noop,
|
|
dfwWidth: noop,
|
|
off: noop,
|
|
on: noop,
|
|
refreshButtons: noop,
|
|
resizeTextarea: noop,
|
|
save: noop,
|
|
switchmode: noop,
|
|
toggleUI: noop,
|
|
|
|
settings: {},
|
|
pubsub: {
|
|
publish: noop,
|
|
subscribe: noop,
|
|
unsubscribe: noop,
|
|
topics: {}
|
|
},
|
|
fade: {
|
|
In: noop,
|
|
Out: noop
|
|
},
|
|
ui: {
|
|
fade: noop,
|
|
init: noop
|
|
}
|
|
};
|
|
}());
|