summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-10-30 02:51:15 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-10-30 02:51:15 +0000
commit82b7e4e72b3a7c3311606cc003272f8e8ff1f116 (patch)
tree084293bba0c631c8a4856fcf3981d16d18902916 /libs
parentb9dfdb9d0db4463a168a22293cb4c48fb92823c5 (diff)
libs/web: add html5 placeholder attribute support to cbi options
Diffstat (limited to 'libs')
-rw-r--r--libs/web/luasrc/view/cbi/value.htm5
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/web/luasrc/view/cbi/value.htm b/libs/web/luasrc/view/cbi/value.htm
index a7b49de7f..84daafd46 100644
--- a/libs/web/luasrc/view/cbi/value.htm
+++ b/libs/web/luasrc/view/cbi/value.htm
@@ -13,7 +13,10 @@ $Id$
-%>
<%+cbi/valueheader%>
- <input type="<%=self.password and 'password" class="cbi-input-password' or 'text" class="cbi-input-text' %>" onchange="cbi_d_update(this.id)"<%= attr("name", cbid) .. attr("id", cbid) .. attr("value", self:cfgvalue(section) or self.default) .. ifattr(self.size, "size")%> />
+ <input type="<%=self.password and 'password" class="cbi-input-password' or 'text" class="cbi-input-text' %>" onchange="cbi_d_update(this.id)"<%=
+ attr("name", cbid) .. attr("id", cbid) .. attr("value", self:cfgvalue(section) or self.default) ..
+ ifattr(self.size, "size") .. ifattr(self.placeholder, "placeholder")
+ %> />
<% if self.password then %><img src="<%=resource%>/cbi/reload.gif" style="vertical-align:middle" title="<%:Reveal/hide password%>" onclick="var e = document.getElementById('<%=cbid%>'); e.type = (e.type=='password') ? 'text' : 'password';" /><% end %>
<% if #self.keylist > 0 or self.datatype then -%>
<script type="text/javascript">