From 9124e8675f3f90801c54204b7156f2a19043c1bf Mon Sep 17 00:00:00 2001 From: Dominik Amon Date: Wed, 19 Oct 2011 22:46:33 +0200 Subject: [PATCH] [#3] Fixed wrong #{list} closing tag template --- .../org/playframework/playclipse/editors/html/HTMLEditor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/src/org/playframework/playclipse/editors/html/HTMLEditor.java b/source/src/org/playframework/playclipse/editors/html/HTMLEditor.java index a600870..d1201c0 100644 --- a/source/src/org/playframework/playclipse/editors/html/HTMLEditor.java +++ b/source/src/org/playframework/playclipse/editors/html/HTMLEditor.java @@ -136,7 +136,7 @@ public void templates(String contentType, String ctx) { if(contentType == "default") { template("if", "Insert a #if tag", "#{if ${}}\n ${cursor}\n#{/if}"); template("extends", "Insert a #extends tag", "#{extends '${}' /}${cursor}"); - template("list", "Insert a #list tag", "#{list ${}, as:'${i}'}\n ${cursor}\n#{/list>"); + template("list", "Insert a #list tag", "#{list ${}, as:'${i}'}\n ${cursor}\n#{/list}"); template("doctype", "Insert an HTML5 doctype element", ""); } // Magic