Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/sequence-diagram-raphael.js
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ _.extend(BaseTheme.prototype, {
// Bottom box
this.drawActor(a, y + this.actorsHeight_ + this.signalsHeight_, this.actorsHeight_);

// Veritical line
// Vertical line
var aX = getCenterX(a);
this.drawLine(
aX, y + this.actorsHeight_ - ACTOR_MARGIN,
Expand Down
4 changes: 2 additions & 2 deletions dist/sequence-diagram-snap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ _.extend(BaseTheme.prototype, {
// Bottom box
this.drawActor(a, y + this.actorsHeight_ + this.signalsHeight_, this.actorsHeight_);

// Veritical line
// Vertical line
var aX = getCenterX(a);
this.drawLine(
aX, y + this.actorsHeight_ - ACTOR_MARGIN,
Expand Down Expand Up @@ -1275,7 +1275,7 @@ _.extend(BaseTheme.prototype, {
* Simplified BSD license.
*/
/*global Diagram, Snap, WebFont _ */
// TODO Move defintion of font onto the <svg>, so it can easily be override at each level
// TODO Move definition of font onto the <svg>, so it can easily be override at each level
if (typeof Snap != 'undefined') {

var xmlns = 'http://www.w3.org/2000/svg';
Expand Down
4 changes: 2 additions & 2 deletions dist/sequence-diagram.js
Original file line number Diff line number Diff line change
Expand Up @@ -1147,7 +1147,7 @@ _.extend(BaseTheme.prototype, {
// Bottom box
this.drawActor(a, y + this.actorsHeight_ + this.signalsHeight_, this.actorsHeight_);

// Veritical line
// Vertical line
var aX = getCenterX(a);
this.drawLine(
aX, y + this.actorsHeight_ - ACTOR_MARGIN,
Expand Down Expand Up @@ -1274,7 +1274,7 @@ _.extend(BaseTheme.prototype, {
* Simplified BSD license.
*/
/*global Diagram, Snap, WebFont _ */
// TODO Move defintion of font onto the <svg>, so it can easily be override at each level
// TODO Move definition of font onto the <svg>, so it can easily be override at each level
if (typeof Snap != 'undefined') {

var xmlns = 'http://www.w3.org/2000/svg';
Expand Down
2 changes: 1 addition & 1 deletion src/theme-snap.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Simplified BSD license.
*/
/*global Diagram, Snap, WebFont _ */
// TODO Move defintion of font onto the <svg>, so it can easily be override at each level
// TODO Move definition of font onto the <svg>, so it can easily be override at each level
if (typeof Snap != 'undefined') {

var xmlns = 'http://www.w3.org/2000/svg';
Expand Down
2 changes: 1 addition & 1 deletion src/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ _.extend(BaseTheme.prototype, {
// Bottom box
this.drawActor(a, y + this.actorsHeight_ + this.signalsHeight_, this.actorsHeight_);

// Veritical line
// Vertical line
var aX = getCenterX(a);
this.drawLine(
aX, y + this.actorsHeight_ - ACTOR_MARGIN,
Expand Down