Remove redefinition of Tiddler.hasField() and added Tiddler.isPlugin()

hasField() was already being defined in boot.js
print-window-tiddler
Jeremy Ruston 2013-04-30 22:37:02 +01:00
rodzic e12fbf0f9f
commit a54a7806d5
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -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) {