From 387b5916fb8494234bf43a52bc53055246b494cc Mon Sep 17 00:00:00 2001 From: Ramya Achutha Rao Date: Sun, 2 Apr 2017 13:03:09 -0700 Subject: [PATCH] Fixes #491 No expand when css abbr ends with : --- lib/resolver/css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/resolver/css.js b/lib/resolver/css.js index 78caf6a9..290c4437 100644 --- a/lib/resolver/css.js +++ b/lib/resolver/css.js @@ -829,7 +829,7 @@ define(function(require, exports, module) { } if (!snippet) { - if (!abbrData.property) { + if (!abbrData.property || abbrData.property.endsWith(':')) { return null; } snippet = abbrData.property + ':' + defaultValue;