Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Jan 23, 2019
2 parents ec9f635 + 02b5ba0 commit 073a411
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/webgl_geometry_spline_editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@

controls.addEventListener( 'start', function () {

cancelHideTransorm();
cancelHideTransform();

} );

Expand All @@ -173,13 +173,13 @@
// Hiding transform situation is a little in a mess :()
transformControl.addEventListener( 'change', function () {

cancelHideTransorm();
cancelHideTransform();

} );

transformControl.addEventListener( 'mouseDown', function () {

cancelHideTransorm();
cancelHideTransform();

} );

Expand All @@ -200,7 +200,7 @@
dragcontrols.addEventListener( 'hoveron', function ( event ) {

transformControl.attach( event.object );
cancelHideTransorm();
cancelHideTransform();

} );

Expand All @@ -214,7 +214,7 @@

function delayHideTransform() {

cancelHideTransorm();
cancelHideTransform();
hideTransform();

}
Expand All @@ -229,7 +229,7 @@

}

function cancelHideTransorm() {
function cancelHideTransform() {

if ( hiding ) clearTimeout( hiding );

Expand Down

0 comments on commit 073a411

Please sign in to comment.