Commit 511676e8236aafc14b1dedc6c3508c8228c27d42
- Diff rendering mode:
- inline
- side by side
microdata.vevent.js
(1 / 1)
|   | |||
| 27 | 27 | var maxLen = 75; | |
| 28 | 28 | while (line.length > maxLen) { | |
| 29 | 29 | output += line.substr(0, maxLen); | |
| 30 | line = line.subStr(maxLen); | ||
| 30 | line = line.substr(maxLen); | ||
| 31 | 31 | output += '\r\n '; | |
| 32 | 32 | maxLen = 74; | |
| 33 | 33 | } |

