Remove V8 plugin
[platform/core/uifw/dali-toolkit.git] / docs / content / programming-guide / programming-languages.md
@@ -24,29 +24,6 @@ bool OnPressed( Dali::Actor, const TouchData& touch )
 actor.TouchSignal().Connect( &OnPressed );
 ~~~
 
-*/
-
-## JavaScript {#java-script-support}
-
-~~~{.js}
-var actor = new dali.Actor();
-actor.parentOrigin = dali.CENTER;
-actor.anchorPoint = dali.CENTER;
-dali.stage.add( actor );
-...
-function onPressed( actor, touch )
-{
-  var animOptions = { alpha: "bounce", delay: 0, duration: 15 };
-  var anim = new dali.Animation();
-  anim.animateTo( actor, "position", [ 200, -100, 0 ], animOptions );
-  anim.play();
-  return true; // consume the touch event
-}
-...
-actor.connect( "touch", onPressed );
-
-~~~
-
 ## JSON {#json-support}
 
 ~~~{.json}
@@ -81,4 +58,4 @@ actor.connect( "touch", onPressed );
     }
   ]
 }
-~~~
\ No newline at end of file
+~~~