From aca0e060a47685720fd1a7c73189f05352738b03 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 7 Jun 2016 20:47:37 +0100 Subject: [PATCH] Also change velocity-vector commit & requires Because it needs a versiob where the package name is actually updated and the requires need to use the right package name --- package.json | 2 +- src/Velociraptor.js | 2 +- src/VelocityBounce.js | 2 +- src/components/views/login/RegistrationForm.js | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 76cb824483..f5972473dd 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "react-dom": "^15.0.1", "react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#c3d942e", "sanitize-html": "^1.11.1", - "velocity-vector": "vector-im/velocity#a70ebc7" + "velocity-vector": "vector-im/velocity#059e3b2" }, "//babelversion": [ "brief experiments with babel6 seems to show that it generates source ", diff --git a/src/Velociraptor.js b/src/Velociraptor.js index 2a8453c7ea..f45925867f 100644 --- a/src/Velociraptor.js +++ b/src/Velociraptor.js @@ -1,6 +1,6 @@ var React = require('react'); var ReactDom = require('react-dom'); -var Velocity = require('velocity-animate'); +var Velocity = require('velocity-vector'); /** * The Velociraptor contains components and animates transitions with velocity. diff --git a/src/VelocityBounce.js b/src/VelocityBounce.js index c85aa254fa..168b0b14af 100644 --- a/src/VelocityBounce.js +++ b/src/VelocityBounce.js @@ -1,4 +1,4 @@ -var Velocity = require('velocity-animate'); +var Velocity = require('velocity-vector'); // courtesy of https://github.com/julianshapiro/velocity/issues/283 // We only use easeOutBounce (easeInBounce is just sort of nonsensical) diff --git a/src/components/views/login/RegistrationForm.js b/src/components/views/login/RegistrationForm.js index ecc02c40d2..a172d77bb4 100644 --- a/src/components/views/login/RegistrationForm.js +++ b/src/components/views/login/RegistrationForm.js @@ -17,8 +17,8 @@ limitations under the License. 'use strict'; var React = require('react'); -var Velocity = require('velocity-animate'); -require('velocity-animate/velocity.ui'); +var Velocity = require('velocity-vector'); +require('velocity-vector/velocity.ui'); var sdk = require('../../../index'); var Email = require('../../../email'); var Modal = require("../../../Modal");