Skip to content
This repository was archived by the owner on Dec 7, 2017. It is now read-only.

Commit 09709b2

Browse files
committed
Tag version 0.8.1.
1 parent 6db51de commit 09709b2

File tree

4 files changed

+14
-24
lines changed

4 files changed

+14
-24
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.8.1 (May 30, 2014)
2+
3+
* Update Suit CSS URL.
4+
15
### 0.8.0 (February 7, 2014)
26

37
* Remove the UMD wrapper to avoid CLI conflicts on pages using AMD.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "html-inspector",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"main": "html-inspector.js",
55
"ignore": [
66
"bin",

html-inspector.js

Lines changed: 8 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
2-
* HTML Inspector - v0.8.0
2+
* HTML Inspector - v0.8.1
33
*
44
* Copyright (c) 2014 Philip Walton <http://philipwalton.com>
55
* Released under the MIT license
66
*
7-
* Date: 2014-02-07
7+
* Date: 2014-05-30
88
*/
99

1010
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
@@ -370,7 +370,7 @@ var isArray = require('../lang/isArray');
370370

371371

372372
},{"../lang/isArray":9,"./forOwn":16}],15:[function(require,module,exports){
373-
var hasOwn = require('./hasOwn');
373+
374374

375375
var _hasDontEnumBug,
376376
_dontEnums;
@@ -412,25 +412,11 @@ var hasOwn = require('./hasOwn');
412412
}
413413
}
414414

415-
416415
if (_hasDontEnumBug) {
417-
var ctor = obj.constructor,
418-
isProto = !!ctor && obj === ctor.prototype;
419-
420416
while (key = _dontEnums[i++]) {
421-
// For constructor, if it is a prototype object the constructor
422-
// is always non-enumerable unless defined otherwise (and
423-
// enumerated above). For non-prototype objects, it will have
424-
// to be defined on this object, since it cannot be defined on
425-
// any prototype objects.
426-
//
427-
// For other [[DontEnum]] properties, check if the value is
428-
// different than Object prototype value.
429-
if (
430-
(key !== 'constructor' ||
431-
(!isProto && hasOwn(obj, key))) &&
432-
obj[key] !== Object.prototype[key]
433-
) {
417+
// since we aren't using hasOwn check we need to make sure the
418+
// property was overwritten
419+
if (obj[key] !== Object.prototype[key]) {
434420
if (exec(fn, obj, key, thisObj) === false) {
435421
break;
436422
}
@@ -447,7 +433,7 @@ var hasOwn = require('./hasOwn');
447433

448434

449435

450-
},{"./hasOwn":17}],16:[function(require,module,exports){
436+
},{}],16:[function(require,module,exports){
451437
var hasOwn = require('./hasOwn');
452438
var forIn = require('./forIn');
453439

@@ -1846,7 +1832,7 @@ module.exports = {
18461832
// I'm aware of. To make things easier, I refer to the
18471833
// methodologies by the name of projects that utilize them.
18481834
//
1849-
// suit: https://github.com/necolas/suit
1835+
// suit: http://suitcss.github.io/
18501836
// -------------------------------------
18511837
// BlockName
18521838
// BlockName--modifierName

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "html-inspector",
33
"title": "HTML Inspector",
4-
"version": "0.8.0",
4+
"version": "0.8.1",
55
"description": "HTML Inspector is a code quality tool to help you and your team write better markup. It's written in JavaScript and runs in the browser, so testing your HTML has never been easier.",
66
"license": "MIT",
77
"author": {

0 commit comments

Comments
 (0)