From c1cdc1ae408f21d2bd1b917d454641385aff3473 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Tue, 8 Dec 2009 09:24:24 +0000 Subject: [PATCH] add the new anims svn path=/trunk/KDE/kdebase/runtime/; revision=1060137 --- scriptengines/javascript/simplejavascriptapplet.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scriptengines/javascript/simplejavascriptapplet.cpp b/scriptengines/javascript/simplejavascriptapplet.cpp index b0bd7241b..c06bd7288 100644 --- a/scriptengines/javascript/simplejavascriptapplet.cpp +++ b/scriptengines/javascript/simplejavascriptapplet.cpp @@ -374,11 +374,13 @@ void SimpleJavaScriptApplet::populateAnimationsHash() { if (s_animationDefs.isEmpty()) { s_animationDefs.insert("fade", Plasma::Animator::FadeAnimation); + s_animationDefs.insert("geometry", Plasma::Animator::GeometryAnimation); s_animationDefs.insert("grow", Plasma::Animator::GrowAnimation); s_animationDefs.insert("pulse", Plasma::Animator::PulseAnimation); s_animationDefs.insert("rotate", Plasma::Animator::RotationAnimation); s_animationDefs.insert("rotateStacked", Plasma::Animator::RotationStackedAnimation); s_animationDefs.insert("slide", Plasma::Animator::SlideAnimation); + s_animationDefs.insert("zoom", Plasma::Animator::ZoomAnimation); } }