Skip to content

Commit

Permalink
rebuild and rebump
Browse files Browse the repository at this point in the history
  • Loading branch information
ded committed Nov 30, 2012
1 parent 9e8440e commit 6b10934
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bonzo.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
, doc = win.document
, html = doc.documentElement
, parentNode = 'parentNode'
, query = null // used for setting a selector engine host
, specialAttributes = /^(checked|value|selected|disabled)$/i
, specialTags = /^(select|fieldset|table|tbody|tfoot|td|tr|colgroup)$/i // tags that we have trouble inserting *into*
, simpleScriptTagRe = /\s*<script +src=['"]([^'"]+)['"]>/
Expand Down Expand Up @@ -65,6 +64,7 @@
, whitespaceRegex = /\s+/
, toString = String.prototype.toString
, unitless = { lineHeight: 1, zoom: 1, zIndex: 1, opacity: 1, boxFlex: 1, WebkitBoxFlex: 1, MozBoxFlex: 1 }
, query = doc.querySelectorAll && function (selector) { return doc.querySelectorAll(selector) }
, trim = String.prototype.trim ?
function (s) {
return s.trim()
Expand Down
Loading

0 comments on commit 6b10934

Please sign in to comment.