- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am trying to post an operation with a tool being optional. It looks as if the post should be outputting the "/" needed for the block skip but it is not. I dont know if i am missing something in the Post or if there is something different i need to do. Attached is the portion of the post that i feel needs attention.
/**
Writes the specified optional block.
*/
function writeOptionalBlock() {
if (properties.showSequenceNumbers) {
var words = formatWords(arguments);
if (words) {
writeWords("/", "N" + sequenceNumber, words);
sequenceNumber += properties.sequenceNumberIncrement;
}
} else {
writeWords2("/", arguments);
}
}
function formatComment(text) {
return "(" + filterText(String(text).toUpperCase(), permittedCommentChars) + ")";
Solved! Go to Solution.