Prevent a JS error when working with embedded media in TinyMCE.

props wonderboymusic. fixes #23876.



git-svn-id: http://core.svn.wordpress.org/trunk@23895 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2013-04-03 20:49:41 +00:00
parent 0d19695389
commit 7858e5e9a8

View File

@ -438,7 +438,7 @@
}
// Add HTML5 video element
if (typeItem.name === 'Video' && data.video.sources[0]) {
if (typeItem.name === 'Video' && data.video.sources && data.video.sources[0]) {
// Create new object element
video = new Node('video', 1).attr(tinymce.extend({
id : node.attr('id'),
@ -477,7 +477,7 @@
}
// Add HTML5 audio element
if (typeItem.name === 'Audio' && data.video.sources[0]) {
if (typeItem.name === 'Audio' && data.video.sources && data.video.sources[0]) {
// Create new object element
audio = new Node('audio', 1).attr(tinymce.extend({
id : node.attr('id'),