Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
tivie committed Jan 6, 2015
2 parents bba2aef + bd24272 commit 0902600
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 12 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
language: node_js
node_js:
- 0.6
- 0.8
- "0.8"
- "0.10"

before_install:
- '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g npm@1.4.28'
- npm install -g npm@latest
2 changes: 1 addition & 1 deletion compressed/Showdown.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion compressed/Showdown.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions compressed/Showdown.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion compressed/extensions/github.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion compressed/extensions/prettify.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion compressed/extensions/table.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion compressed/extensions/twitter.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "showdown",
"version": "0.3.3",
"version": "0.3.4",
"author": "John Fraser",
"contributors": [
"John Gruber",
Expand Down
2 changes: 1 addition & 1 deletion src/ng-showdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


//Check if AngularJs and Showdown is defined and only load ng-Showdown if both are present
if (angular && Showdown) {
if (typeof angular !== 'undefined' && typeof Showdown !== 'undefined') {

(function (module, Showdown) {

Expand Down

0 comments on commit 0902600

Please sign in to comment.