Logo white

ADAM / AIAHTML5

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues
  • Merge Requests 14
  • Labels
  • Wiki
  • Snippets
  • AIAHTML5
  • ..
  • SpeechBubble
  • demo.js
  • all is working fine except toggle button in male anterior. ...
    1ddf7575
    in this commit.
    1. layer change and Annoatations are working fine.
    Nikita Kulshreshtha authored
    2016-05-02 17:55:34 +0530  
    Browse Code ยป
demo.js 488 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
$(document).ready(function() {

    $("#target1, #target2, #target3")
        .draggable()
        .bubble({editable:true});

    $("#dynamic")
        .draggable()
        .bubble({
             title: "Dynamic Content",
             content: "Bubble markup not preset in HTML.  Instead title and content are passed as options when the bubble widget is invoked."
         });

    $("#dynamic2")
        .draggable()
        .bubble({
             ajax: "example.json"
         });

});