Skip to content

Commit

Permalink
built website from ced3b2b
Browse files Browse the repository at this point in the history
  • Loading branch information
mixonic committed Aug 25, 2015
1 parent ced3b2b commit 785641b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion website/global/content-kit-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -3095,7 +3095,7 @@ define('content-kit-editor/models/markup-section', ['exports', 'content-kit-edit

if (adjustedTail > headOffset && adjustedHead < tailOffset) {
var head = Math.max(headOffset - adjustedHead, 0);
var tail = adjustedTail < tailOffset ? m.length : m.length - (adjustedTail - tailOffset);
var tail = m.length - Math.max(adjustedTail - tailOffset, 0);
var cloned = m.clone();

cloned.value = m.value.slice(head, tail);
Expand Down
2 changes: 1 addition & 1 deletion website/global/content-kit-editor.map

Large diffs are not rendered by default.

0 comments on commit 785641b

Please sign in to comment.