Index: wp-includes/js/media-views.js
===================================================================
--- wp-includes/js/media-views.js	(revision 36060)
+++ wp-includes/js/media-views.js	(working copy)
@@ -1196,7 +1196,18 @@
 	 * @param {wp.media.model.Attachment} attachment
 	 * @returns {Backbone.Model}
 	 */
-	display: function( attachment ) {
+	display: function( attachment ) {	
+		
+		/*
+		*	Attachments whos mime types != 'image/*' set 'Link To' param 'Attachment Page'
+		*	See Core Trac Ticket #35153: https://core.trac.wordpress.org/ticket/35153
+		*/
+		if( attachment.attributes.mime.indexOf( 'image/' ) == -1 ) {
+			this._defaultDisplaySettings = {
+				link:  'file'
+			};
+		}
+		
 		var displays = this._displays;
 
 		if ( ! displays[ attachment.cid ] ) {
@@ -8490,4 +8501,4 @@
 
 module.exports = View;
 
-},{}]},{},[19]);
+},{}]},{},[19]);
\ No newline at end of file
