kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Remove redefinition of Tiddler.hasField() and added Tiddler.isPlugin()
hasField() was already being defined in boot.jsprint-window-tiddler
rodzic
e12fbf0f9f
commit
a54a7806d5
|
@ -3,7 +3,7 @@ title: $:/core/modules/tiddler.js
|
|||
type: application/javascript
|
||||
module-type: tiddlermethod
|
||||
|
||||
Extension methods for the $tw.Tiddler object
|
||||
Extension methods for the $tw.Tiddler object (constructor and methods required at boot time are in boot/boot.js)
|
||||
|
||||
\*/
|
||||
(function(){
|
||||
|
@ -16,8 +16,8 @@ exports.hasTag = function(tag) {
|
|||
return this.fields.tags && this.fields.tags.indexOf(tag) !== -1;
|
||||
};
|
||||
|
||||
exports.hasField = function(field) {
|
||||
return $tw.utils.hop(this.fields,field);
|
||||
exports.isPlugin = function() {
|
||||
return this.fields.type === "application/json" && this.hasField("plugin") && this.hasField("plugin-type");
|
||||
}
|
||||
|
||||
exports.getFieldString = function(field) {
|
||||
|
|
Ładowanie…
Reference in New Issue