Skip to content

Commit

Permalink
Merge pull request #54 from bkraul/develop-1.3.x
Browse files Browse the repository at this point in the history
Added MarkItUp toolbar support for custom textarea fields.
  • Loading branch information
bkraul authored Mar 20, 2019
2 parents 8c96876 + 1e75db1 commit 49cde0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions BBCodePlus/files/markitup-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
$("textarea[name='additional_information']").markItUp(mySettings);
if ( $("textarea[name='body']") )
$("textarea[name='body']").markItUp( mySettings );
if ( $("textarea[name^='custom_field_']") )
$("textarea[name^='custom_field_']").markItUp( mySettings );

});
})(jQuery);
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ If you would like to contribute to BBCode plus, please [read this guide first](h

## Change Log

### 1.3.2
* Added MarkItUp toolbar support for custom textarea fields.
### 1.3.1
* Updated README for all languages supported by code highlighter.

Expand Down

0 comments on commit 49cde0d

Please sign in to comment.