(content, storeName, contentOnly)
| 58 | } |
| 59 | } |
| 60 | edit(content, storeName, contentOnly) { |
| 61 | this.content = content; |
| 62 | if (!contentOnly) { |
| 63 | this.intro = ''; |
| 64 | this.outro = ''; |
| 65 | } |
| 66 | this.storeName = storeName; |
| 67 | this.edited = true; |
| 68 | return this; |
| 69 | } |
| 70 | prependLeft(content) { |
| 71 | this.outro = content + this.outro; |
| 72 | } |