1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +00:00

Adjust fields widget to sort fields

Making it easier to track .tid files under source code control
This commit is contained in:
Jeremy Ruston 2013-06-05 14:12:52 +01:00
parent 5221362791
commit e925f1c3dd

View File

@ -37,7 +37,15 @@ FieldsWidget.prototype.generate = function() {
// Compose the template
var text = [];
if(this.template && tiddler) {
var fields = [];
for(var fieldName in tiddler.fields) {
if(exclude.indexOf(fieldName) === -1) {
fields.push(fieldName);
}
}
fields.sort();
for(var f=0; f<fields.length; f++) {
fieldName = fields[f];
if(exclude.indexOf(fieldName) === -1) {
var row = this.template,
value = tiddler.getFieldString(fieldName);