diff --git a/app/lib/surface/CocoSprite.coffee b/app/lib/surface/CocoSprite.coffee index 505c7c43f..f09410e12 100644 --- a/app/lib/surface/CocoSprite.coffee +++ b/app/lib/surface/CocoSprite.coffee @@ -455,7 +455,7 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass allProps = allProps.concat (@thang.moreProgrammableProperties ? []) for property in allProps - if m = property.match /.*(Range|Distance)$/ + if m = property.match /.*(Range|Distance|Radius)$/ if @thang[m[0]]? and @thang[m[0]] < 9001 @ranges.push name: m[0] diff --git a/app/lib/surface/Mark.coffee b/app/lib/surface/Mark.coffee index b74f2dd73..8a42b3272 100644 --- a/app/lib/surface/Mark.coffee +++ b/app/lib/surface/Mark.coffee @@ -54,7 +54,7 @@ module.exports = class Mark extends CocoClass if @name is 'bounds' then @buildBounds() else if @name is 'shadow' then @buildShadow() else if @name is 'debug' then @buildDebug() - else if @name.match(/.+(Range|Distance)$/) then @buildRadius(@name) + else if @name.match(/.+(Range|Distance|Radius)$/) then @buildRadius(@name) else if @thangType then @buildSprite() else console.error "Don't know how to build mark for", @name @mark?.mouseEnabled = false diff --git a/app/styles/account/profile.sass b/app/styles/account/profile.sass index 0d0f4e450..57c15b0fc 100644 --- a/app/styles/account/profile.sass +++ b/app/styles/account/profile.sass @@ -33,6 +33,7 @@ .job-profile-container width: 100% height: 100% + min-height: 600px padding: 0 display: table diff --git a/app/templates/account/profile.jade b/app/templates/account/profile.jade index 9aa9ed2cb..1d1041307 100644 --- a/app/templates/account/profile.jade +++ b/app/templates/account/profile.jade @@ -68,7 +68,7 @@ block content if profile.education.length h3.experience-header img.header-icon(src="/images/pages/account/profile/education.png", alt="") - span(data-i18n="account_profile.work_experience") Education + span(data-i18n="account_profile.education") Education each school in profile.education div.duration.pull-right= school.duration | #{school.degree} at #{school.school}