| Index: lib/utils.js |
| =================================================================== |
| --- a/lib/utils.js |
| +++ b/lib/utils.js |
| @@ -51,21 +51,16 @@ |
| direction = /^(?:ar|fa|he|ug|ur)\b/.test(this.appLocale) ? "rtl" : "ltr"; |
| Object.defineProperty( |
| this, |
| "readingDirection", |
| {value: direction, enumerable: true} |
| ); |
| return this.readingDirection; |
| }, |
| - generateChecksum(lines) |
| - { |
| - // We cannot calculate MD5 checksums yet :-( |
| - return null; |
| - }, |
| getDocLink(linkID) |
| { |
| let docLink = require("./prefs").Prefs.documentation_link; |
| return docLink.replace(/%LINK%/g, linkID) |
| .replace(/%LANG%/g, Utils.appLocale); |
| }, |