Comparing version 0.0.1 to 0.0.2
@@ -5,3 +5,4 @@ { | ||
"ep_align.middle" : "Middle", | ||
"ep_align.right" : "Right" | ||
"ep_align.right" : "Right", | ||
"ep_align.justify" : "Justify" | ||
} |
@@ -5,3 +5,4 @@ { | ||
"ep_align.middle" : "Middle", | ||
"ep_align.right" : "Right" | ||
"ep_align.right" : "Right", | ||
"ep_align.justify" : "Justify" | ||
} |
{ | ||
"description": "Adds Align Center & Right support", | ||
"name": "ep_align", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"author": "John McLear <john@mclear.co.uk>", | ||
@@ -6,0 +6,0 @@ "contributors": [], |
@@ -9,3 +9,3 @@ var _, $, jQuery; | ||
// All our tags are block elements, so we just return them. | ||
var tags = ['left', 'center', 'right']; | ||
var tags = ['left', 'center', 'right', 'justify']; | ||
var aceRegisterBlockElements = function(){ | ||
@@ -12,0 +12,0 @@ return tags; |
var _ = require('ep_etherpad-lite/static/js/underscore'); | ||
var tags = ['left', 'center', 'right']; | ||
var tags = ['left', 'center', 'right', 'justify']; | ||
@@ -5,0 +5,0 @@ var collectContentPre = function(hook, context){ |
Sorry, the diff of this file is not supported yet
7112
192