Ck Editor not showing the youtube - ckeditor

I have build website and added the Ckeditor,
in HTml mode i added the follwoing code:
<iframe width="560" height="315" src="http://www.youtube.com/embed/pe3DH-_uapU" frameborder="0" allowfullscreen></iframe>
but its shwoing empty box in all browser

In the New Version Of the CKEditor You Could ply The YouTube Video in the editor
i tried your code and its working
Down load it from here
http://ckeditor.com/download

Related

PhoneGap Html simple HTML not working

I am trying to learn create an app with PhoneGap but I cannot seem to get the most basic HTML to work. I have stripped it down to the following in the index.html page:
<html><body>
Click
</body>
</html>
When I run the resulting app it shows the page fine, but clicking the link does nothing.

How to run framework 7 Android Material for PhoneGap?

I downloaded Framework 7 1.5.2 for Phonegap because the latter's built in template is for iOS. And what I need is for Android. However, when I open index.html it shows two phones but no effect.
http://imgur.com/Cx9aWpB
Here's what it looks like when I click on the kitchen sink for search bar:
http://imgur.com/BIzU8V5
How do I view it with the Materials Design?
Kindly just open the images in another tab.
Please follow this step to make it work:
First, open your framework7 folder after you downloaded it.
Rename folder "dist" to "build"
Open file "index.html" with notepad or other code editor
Scrolldown to body and add "index.html" to all links. Example : <iframe src="./kitchen-sink-ios/" scrolling="no" frameborder="0"></iframe> become <iframe src="./kitchen-sink-ios/index.html" scrolling="no" frameborder="0"></iframe>
Save and run.

How to put google slide on Jekyll

Can someone tell me steps to put google shared slides like this on Jekyll my Blog?
Do I have to convert every slide in markdown format or convert in pdf and then in markdown?
No clues. please help
To embed a Google Slides presentation in a Jekyll post or page, open the presentation and select “Publish to Web” from the “File” menu.
Choose the options you require, then select the “Embed” tab. You’ll be provided with an embed code. Paste this into your Jekyll post or page - i.e. straight into the markdown file. Generate your site as usual, and the iframe with your presentation will be embedded in the rendered HTML.
This works because when Jekyll parses markdown it also reads any HTML that it finds.
It won’t be responsive out of the box, so you’ll need a bit of CSS. I’ve shown this inline, but you could add the CSS to your stylesheet:
<style>
.responsive-wrap iframe{ max-width: 100%;}
</style>
<div class="responsive-wrap">
<!-- this is the embed code provided by Google -->
<iframe src="https://docs.google.com/presentation/d/1F0DQTNPg3YG_By6LMGcgwT3icJ3eMhCiupAZm76CIfE/embed?start=false&loop=false&delayms=3000" frameborder="0" width="960" height="569" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
<!-- Google embed ends -->
</div>
You can see an example on a Jekyll site here.

Unable to download base64 encoded image on Chrome

I have an app that, when clicking on a link, opens a new window with the following code:
<html>
<head>
</head>
<body>
<img src="data:image/png;base64,...">
</body>
</html>
On Chrome, if I right-click and select Save image as... option, the pop up to select saving location does not appear.
At the beginning I thought it was a Chrome error, but to test it I have copied the same code on a separate html page and I am able to download it.
So, anyone has a clue for what can be happening here?

Firefox Addon SDK - doesn't play SWF file loaded from data resources

I have a little bit problem with a Firefox extension. So, the extension has a content script and this script inserts HTML code (image and SWF) into loaded pages. It works in google chrome and with the code below it shows image and also plays SWF:
// OK
<img src="chrome-extension://{extension_id}/data/images/loader.gif">
// OK
<embed type="application/x-shockwave-flash" src="chrome-extension://{extension_id}/data/images/anim.swf" width="100%" height="100%" menu="false" quality="autohigh" wmode="transparent" loop="false" play="true">
But Firefox has a problem with the SWF file:
// OK
<img src="resource://{extension_id}/{extension_name}/data/images/loader.gif">
// SWF is not loaded
<embed type="application/x-shockwave-flash" src="resource://{extension_id}/{extension_name}/data/images/anim.swf" menu="false" quality="autohigh" wmode="transparent" loop="false" play="true" height="100%" width="100%">
It shows an error:
Security Error: Content at http://localhost/ may not load or link to resource://{extension_id}/{extension_name}/data/images/anim.swf.
Also another thing, when I enter the URL
"resource://{extension_id}/{extension_name}/data/images/anim.swf"
directly to the address bar then it doesn't play the file but on the left from the address bar is a small icon with a popup where is text "Adobe Flash is enabled on .....".
Is there any way how to bypass this security issue?

Resources