Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #215
  • Loading branch information
torinfo committed Mar 7, 2015
1 parent acb7572 commit 740cb9a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion editor/js/tree.js
Expand Up @@ -659,7 +659,8 @@ var EDITOR = (function ($, parent) {
level = level.append(leveltitle);

var advnodes_level = false;
for (var i=0; i<new_nodes.length; i++)
// Weird, the flash editor showed the nodes in reversed order
for (var i=new_nodes.length-1; i>=0; i--)
{
var item = new_nodes[i];
var itemname = item;
Expand Down

0 comments on commit 740cb9a

Please sign in to comment.