mirror of
https://github.com/correl/melpa.git
synced 2024-12-22 11:08:54 +00:00
IE8 fixes (should work with next mithril release)
This commit is contained in:
parent
162099dac6
commit
3c8113f669
1 changed files with 2 additions and 2 deletions
|
@ -212,7 +212,7 @@
|
||||||
])
|
])
|
||||||
]),
|
]),
|
||||||
m("p", [
|
m("p", [
|
||||||
m("input.form-control", {type: "search", placeholder: "Enter filter terms", autofocus: true,
|
m("input.form-control[type=search]", {placeholder: "Enter filter terms", autofocus: true,
|
||||||
value: ctrl.filterTerms(), onkeyup: m.withAttr("value", ctrl.filterTerms)}),
|
value: ctrl.filterTerms(), onkeyup: m.withAttr("value", ctrl.filterTerms)}),
|
||||||
" ",
|
" ",
|
||||||
m("span.help-block", ["Showing ", _.keys(visible).length, " matching package(s)"])
|
m("span.help-block", ["Showing ", _.keys(visible).length, " matching package(s)"])
|
||||||
|
@ -230,7 +230,7 @@
|
||||||
]),
|
]),
|
||||||
m("tbody",
|
m("tbody",
|
||||||
ctrl.sortedPackages().map(function(p) {
|
ctrl.sortedPackages().map(function(p) {
|
||||||
return m("tr", {class: visible[p.name] ? '' : 'filtered'},
|
return m("tr", { "class": visible[p.name] ? '' : 'filtered'},
|
||||||
[
|
[
|
||||||
m("td", [
|
m("td", [
|
||||||
m("a", {href: "/" + p.name, config: m.route}, [
|
m("a", {href: "/" + p.name, config: m.route}, [
|
||||||
|
|
Loading…
Reference in a new issue