Skip to content

Commit

Permalink
Fixed breakage with inline flash style
Browse files Browse the repository at this point in the history
  • Loading branch information
mde committed Jun 9, 2013
1 parent 4bc5046 commit 33c2d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/template/helpers/flash.js
Expand Up @@ -14,7 +14,7 @@ var getDisplayClass
getDisplayClass = function (type, mode) {
var config = geddy.config.flash;
if (mode === "inline" && config.inlineClasses[type] != null) {
return this.config.inlineClasses[type];
return config.inlineClasses[type];
}
if (mode === "block" && config.blockClasses[type] != null) {
return config.blockClasses[type];
Expand Down

0 comments on commit 33c2d3f

Please sign in to comment.