Changeset 27131
- Timestamp:
- 02/08/2014 12:51:14 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/edit-comments.js
r26889 r27131 622 622 highlight_last: adminCommentsL10n.hotkeys_highlight_last, 623 623 prev_page_link_cb: make_hotkeys_redirect('prev'), 624 next_page_link_cb: make_hotkeys_redirect('next'), 624 next_page_link_cb: make_hotkeys_redirect('next'), 625 625 hotkeys_opts: { 626 626 disableInInput: true, -
trunk/src/wp-admin/js/media-upload.js
r26945 r27131 1 /* global tinymce, QTags , tb_remove*/1 /* global tinymce, QTags */ 2 2 // send html to the post editor 3 3 -
trunk/src/wp-admin/js/post.js
r27110 r27131 371 371 372 372 jQuery(document).ready( function($) { 373 var stamp, visibility, $submitButtons, updateVisibility, updateText, 373 var stamp, visibility, $submitButtons, updateVisibility, updateText, $content, 374 374 sticky = '', 375 375 last = 0, … … 1067 1067 if ( ! ( 'ontouchstart' in window ) ) { 1068 1068 // When scrolling with mouse wheel or trackpad inside the Text editor, don't scroll the whole window 1069 var$content = $('#content').on( 'onwheel' in $document[0] ? 'wheel.text-editor-scroll' : 'mousewheel.text-editor-scroll', function( event ) {1069 $content = $('#content').on( 'onwheel' in $document[0] ? 'wheel.text-editor-scroll' : 'mousewheel.text-editor-scroll', function( event ) { 1070 1070 var delta, origEvent = event.originalEvent; 1071 1071 -
trunk/src/wp-includes/js/media-editor.js
r27051 r27131 911 911 */ 912 912 open: function( id, options ) { 913 var workflow , editor;913 var workflow; 914 914 915 915 options = options || {}; -
trunk/src/wp-includes/js/quicktags.js
r26941 r27131 1 /* global adminpage, wpActiveEditor, quicktagsL10n, wpLink, fullscreen,prompt */1 /* global adminpage, wpActiveEditor, quicktagsL10n, wpLink, prompt */ 2 2 /* 3 3 * Quicktags -
trunk/tests/qunit/.jshintrc
r25992 r27131 1 1 { 2 2 "globals": { 3 "asyncTest" : false, 4 "deepEqual" : false, 5 "equal" : false, 6 "expect" : false, 7 "module" : false, 8 "notDeepEqual" : false, 9 "notEqual" : false, 10 "notStrictEqual" : false, 11 "ok" : false, 12 "QUnit" : false, 13 "raises" : false, 14 "start" : false, 15 "stop" : false, 16 "strictEqual" : false, 17 "test" : false 3 "asyncTest" : false, 4 "deepEqual" : false, 5 "equal" : false, 6 "expect" : false, 7 "module" : false, 8 "notDeepEqual" : false, 9 "notEqual" : false, 10 "notStrictEqual" : false, 11 "ok" : false, 12 "QUnit" : false, 13 "raises" : false, 14 "start" : false, 15 "stop" : false, 16 "strictEqual" : false, 17 "test" : false, 18 19 "_" : false, 20 "jQuery" : false 18 21 } 19 22 }
Note: See TracChangeset
for help on using the changeset viewer.