瀏覽代碼

add toString method to frappe.user

version-14
Faris Ansari 8 年之前
父節點
當前提交
dec7b337c6
共有 1 個檔案被更改,包括 13 行新增0 行删除
  1. +13
    -0
      frappe/public/js/frappe/misc/user.js

+ 13
- 0
frappe/public/js/frappe/misc/user.js 查看文件

@@ -141,6 +141,19 @@ $.extend(frappe.user, {
quote: quote
});
}
},

/* Normally frappe.user is an object
* having properties and methods.
* But in the following case
*
* if (frappe.user === 'Administrator')
*
* frappe.user will cast to a string
* returning frappe.user.name
*/
toString: function() {
return this.name;
}
});



Loading…
取消
儲存