Skip to content

Commit

Permalink
Remove curly braces from qualified identifiers
Browse files Browse the repository at this point in the history
Fixes #860
  • Loading branch information
Jermolene committed Sep 19, 2014
1 parent 5dbcc5f commit b239b3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/modules/widgets/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ Widget.prototype.getStateQualifier = function(name) {
}
node = node.parentWidget;
}
return "{" + $tw.utils.hashString(output.join("")) + "}";
return $tw.utils.hashString(output.join(""));
};

/*
Expand Down
2 changes: 1 addition & 1 deletion editions/de-AT/tiddlers/system/SelectDefaultTab.tid
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
title: $:/state/tab/sidebar-{-1835078512}
title: $:/state/tab/sidebar--1835078512

This comment has been minimized.

Copy link
@pmario

pmario Sep 19, 2014

Member

oh. thanks :)

InhaltsVerzeichnis
2 changes: 1 addition & 1 deletion editions/tw5.com/tiddlers/Default to the contents tab.tid
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
title: $:/state/tab/sidebar-{-1835078512}
title: $:/state/tab/sidebar--1835078512

TableOfContents

0 comments on commit b239b3d

Please sign in to comment.