From d89d23c59f38fa113a53a2f66ceead9fd842b72d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=20Kriszti=C3=A1n?= Date: Fri, 22 May 2015 14:37:52 +0200 Subject: [PATCH] Fix focus and blur color In 7aa38ad3a53bea0e228df84795c2ed8d6eabf8ae the colors got switched up from the previous code, if you take a closer look. --- floatlabels.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/floatlabels.js b/floatlabels.js index af97444..7b83783 100644 --- a/floatlabels.js +++ b/floatlabels.js @@ -18,8 +18,8 @@ transitionEasing : 'ease-in-out', labelClass : '', typeMatches : /text|password|email|number|search|url|tel/, - focusColor : '#838780', - blurColor : '#2996cc' + focusColor : '#2996cc', + blurColor : '#838780' }; function Plugin ( element, options ) { this.$element = $(element);