Index: src/wp-includes/js/tinymce/plugins/wpview/editor_plugin_src.js
===================================================================
--- src/wp-includes/js/tinymce/plugins/wpview/editor_plugin_src.js	(revision 26173)
+++ src/wp-includes/js/tinymce/plugins/wpview/editor_plugin_src.js	(working copy)
@@ -2,6 +2,8 @@
  * WordPress View plugin.
  */
 
+/* global tinymce */
+
 (function() {
 	var VK = tinymce.VK,
 		TreeWalker = tinymce.dom.TreeWalker,
@@ -8,7 +10,7 @@
 		selected;
 
 	tinymce.create('tinymce.plugins.wpView', {
-		init : function( editor, url ) {
+		init : function( editor ) {
 			var wpView = this;
 
 			// Check if the `wp.mce` API exists.
@@ -33,7 +35,7 @@
 
 			// When the editor's content has been updated and the DOM has been
 			// processed, render the views in the document.
-			editor.onSetContent.add( function( editor, o ) {
+			editor.onSetContent.add( function( editor ) {
 				wp.mce.view.render( editor.getDoc() );
 			});
 
@@ -41,7 +43,7 @@
 
 				// When a view is selected, ensure content that is being pasted
 				// or inserted is added to a text node (instead of the view).
-				editor.selection.onBeforeSetContent.add( function( selection, o ) {
+				editor.selection.onBeforeSetContent.add( function( selection ) {
 					var view = wpView.getParentView( selection.getNode() ),
 						walker, target;
 
@@ -95,7 +97,7 @@
 
 			// Triggers when the selection is changed.
 			// Add the event handler to the top of the stack.
-			editor.onNodeChange.addToTop( function( editor, controlManager, node, collapsed, o ) {
+			editor.onNodeChange.addToTop( function( editor, controlManager, node ) {
 				var view = wpView.getParentView( node );
 
 				// Update the selected view.
