Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Commit

Permalink
New version
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Sinchok committed Aug 12, 2014
2 parents 002ad17 + bc61758 commit c85e947
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "onion-editor",
"version": "0.2.14",
"version": "0.2.16",
"homepage": "https://github.com/theonion/editor",
"authors": [
"Mike Wnuk <mwnuk@theonion.com>"
Expand Down
2 changes: 1 addition & 1 deletion build/onion-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -10538,7 +10538,7 @@ define('scribe-plugin-onion-video',[],function () {
}

function edit(block, callback) {
var id = $(block).attr('data-video-id');
var id = $(block).attr('data-video-id') || $(block).attr('data-videoid');
config.editDialog(id);
}
};
Expand Down
2 changes: 1 addition & 1 deletion build/onion-editor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "onion-editor",
"version": "0.2.14",
"version": "0.2.16",
"author": {
"name": "Mike Wnuk",
"email": "mwnuk@theonion.com"
Expand Down
2 changes: 1 addition & 1 deletion src/js/plugins/scribe-plugin-onion-video.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ define('scribe-plugin-onion-video',[],function () {
}

function edit(block, callback) {
var id = $(block).attr('data-video-id');
var id = $(block).attr('data-video-id') || $(block).attr('data-videoid');
config.editDialog(id);
}
};
Expand Down

0 comments on commit c85e947

Please sign in to comment.