Skip to content

Commit

Permalink
v1.1.4 / Fix bug in options extends
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-D committed Sep 23, 2014
1 parent 57a9e4f commit aa529c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "trumbowyg",
"version": "1.1.3",
"version": "1.1.4",
"homepage": "https://github.com/Alex-D/Trumbowyg",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "trumbowyg",
"title": "Trumbowyg",
"description": "A lightweight WYSIWYG editor",
"version": "1.1.2",
"version": "1.1.4",
"main": "dist/trumbowyg.js",
"homepage": "http://alex-d.github.io/Trumbowyg",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/trumbowyg.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
t.lang = $.extend(true, {}, $.trumbowyg.langs.en, $.trumbowyg.langs[opts.lang]);

// Defaults Options
t.o = $.extend(true, {
t.o = $.extend(true, {}, {
lang: 'en',
dir: 'ltr',
duration: 200, // Duration of modal box animations
Expand Down

0 comments on commit aa529c3

Please sign in to comment.