From 538e64c572220bba43960a3073468c0ce3dc5f4c Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Wed, 18 Dec 2013 14:57:35 -0500
Subject: [PATCH] Fix Closure-compiler warnings, small code improvements

---
 plugins/vcard_attachments/vcardattach.js |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/plugins/vcard_attachments/vcardattach.js b/plugins/vcard_attachments/vcardattach.js
index 29bc1a6..b287acd 100644
--- a/plugins/vcard_attachments/vcardattach.js
+++ b/plugins/vcard_attachments/vcardattach.js
@@ -1,4 +1,4 @@
-/*
+/**
  * vcard_attachments plugin script
  * @version @package_version@
  */
@@ -13,6 +13,7 @@
 function plugin_vcard_insertrow(data)
 {
   var ctype = data.row.ctype;
+
   if (ctype == 'text/vcard' || ctype == 'text/x-vcard' || ctype == 'text/directory') {
     $('#rcmrow'+data.uid+' > td.attachment').html('<img src="'+rcmail.env.vcard_icon+'" alt="" />');
   }

--
Gitblit v1.9.1