Skip to content

Commit

Permalink
Fix "infinityMode" typo
Browse files Browse the repository at this point in the history
(cherry picked from commit e10ce23)
  • Loading branch information
kjac authored and nul800sebastiaan committed Aug 9, 2019
1 parent 88349c6 commit a0cd542
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
editor.moveRight = true;
editor.level = 0;
editor.styleIndex = 0;

editor.infinityMode = true;


// push the new editor to the dom
scope.editors.push(editor);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
z-index: @zIndexEditor;
}

.umb-editor--infinityMode {
.umb-editor--infiniteMode {
transform: none;
will-change: transform;
transition: transform 400ms ease-in-out;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ng-class="{'umb-editor--small': model.size === 'small',
'umb-editor--animating': model.animating,
'--notInFront': model.inFront !== true,
'umb-editor--infinityMode': model.infinityMode,
'umb-editor--infiniteMode': model.infiniteMode,
'moveRight': model.moveRight,
'umb-editor--n0': model.styleIndex === 0,
'umb-editor--n1': model.styleIndex === 1,
Expand Down

0 comments on commit a0cd542

Please sign in to comment.