浏览代码

HUE-638 [beeswax] Use buttons instead of input type="button"

Romain Rigaux 13 年之前
父节点
当前提交
b2a66d8
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      apps/beeswax/src/beeswax/templates/create_table_manually.mako

+ 2 - 2
apps/beeswax/src/beeswax/templates/create_table_manually.mako

@@ -287,8 +287,8 @@ ${layout.menubar(section='tables')}
     </fieldset>
 </div>
 <div class="form-actions">
-    <input id="backBtn" type="button" class="btn hide" value="${_('Back')}" />
-    <input id="nextBtn" type="button" class="btn primary" value="${_('Next')}" />
+    <button type="button" id="backBtn" class="btn hide">${_('Back')}</button>
+    <button type="button" id="nextBtn" class="btn primary">${_('Next')}</button>
     <input id="submit" type="submit" class="btn primary hide" value="${_('Create table')}" />
 </div>
 </form>