Giter Club home page Giter Club logo

Comments (17)

ritz078 avatar ritz078 commented on May 25, 2024

Currently there's no such feature.

from embed-js.

 avatar commented on May 25, 2024

Topic change: Request function :)

from embed-js.

ritz078 avatar ritz078 commented on May 25, 2024

I don't think its possible to unload as i am not storing the original text and actually modifying the original text. Though loading a block is in my mind for the next version :)

from embed-js.

 avatar commented on May 25, 2024

Hope the option for loading a block can be available soon :)

from embed-js.

ritz078 avatar ritz078 commented on May 25, 2024

it has come too soon 👍 test it so that i can merge all the new changes to master.

from embed-js.

 avatar commented on May 25, 2024

Thnx! i use the following to get the value of the WRITE area (like this editor here on Github) i have also a tab called Preview. Whe i click the tab, the EmbedBlock must be called but it only works on 1th click. New changes are not converted.

Am i using the -your- function as suposed to be?

<html>
<textarea id="comment" rows="8"></textarea>
<div id="preview"></div>
<button type="button" id="prevClick">preview</button>
</html>

<script>

$('#prevClick').click(function(){

    $("#preview").empty();

    // convert linebreaks            
    var div = $("#preview")[0];
    var lines = $("#comment").val().replace(/\r\n/g, "\n").split("\n");
    for (var i = 0, len = lines.length; i < len; ++i) {
        if (i) div.appendChild(document.createElement("br"));
        div.appendChild(document.createTextNode(lines[i]));
    } 

    $('#preview').embedBlock({
        // options
    });

});
</script>

from embed-js.

ritz078 avatar ritz078 commented on May 25, 2024

can't understand until i see the whole code.

from embed-js.

 avatar commented on May 25, 2024

code updated

from embed-js.

ritz078 avatar ritz078 commented on May 25, 2024

it will be better if you create a jsfiddle

from embed-js.

 avatar commented on May 25, 2024

http://jsfiddle.net/50a7kwp5/2/

from embed-js.

ritz078 avatar ritz078 commented on May 25, 2024

If you aren't setting anything in gDevAuthKey , you have disable videoEmbed

<html>
<textarea id="comment" rows="8"></textarea>
<div id="preview"></div>
<button type="button" id="prevClick">preview</button>
</html>

<script>

$('#prevClick').click(function(){

    $("#preview").empty();

    // convert linebreaks            
    var div = $("#preview")[0];
    var lines = $("#comment").val().replace(/\r\n/g, "\n").split("\n");
    for (var i = 0, len = lines.length; i < len; ++i) {
        if (i) div.appendChild(document.createElement("br"));
        div.appendChild(document.createTextNode(lines[i]));
    } 

    $('#preview').embedBlock({
        videoEmbed:false  //setting videoembed to false ... if you enable it , you will have to set //gDevAuthKey
    });

});
</script>

from embed-js.

 avatar commented on May 25, 2024

http://jsfiddle.net/50a7kwp5/9/

@ comment for you:)

from embed-js.

ritz078 avatar ritz078 commented on May 25, 2024

check now :)

from embed-js.

 avatar commented on May 25, 2024

found a bug , sorry :)

http://jsfiddle.net/50a7kwp5/20/

al DOC items are in 1 Doc box.

from embed-js.

ritz078 avatar ritz078 commented on May 25, 2024

thats because you have replaced newline with <br>
your string becomes http://open.spotify.com/track/4th1RQAelzqgY7wL53UGQt<br>https://www.cca.edu/sites/default/files/pdf/08/word-to-pdf.pdf if there is a space or a normal newline character this bug won't happen.

from embed-js.

ritz078 avatar ritz078 commented on May 25, 2024

i have fixed that. now that should be fine. Please make a new issue for each bug. Its easy to track.

from embed-js.

 avatar commented on May 25, 2024

Thanx! updated my code. it works fine on doc now. Posting new issues in new topic :)

from embed-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.