Skip to content

Commit

Permalink
Update demo to v.1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyamoon committed Feb 4, 2016
1 parent 81ec568 commit a129ae5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions demo/bower_components/svgxuse/.bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"demo"
],
"homepage": "https://github.com/Keyamoon/svgxuse",
"version": "1.1.5",
"_release": "1.1.5",
"version": "1.1.6",
"_release": "1.1.6",
"_resolution": {
"type": "version",
"tag": "v1.1.5",
"commit": "c219c10f3d98448de0efac5cc867f6d0424bb8bc"
"tag": "v1.1.6",
"commit": "b78ef6779ec2fc0e798c54dcd1c3bf552f3703c1"
},
"_source": "git://github.com/Keyamoon/svgxuse.git",
"_target": "~1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion demo/bower_components/svgxuse/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svgxuse",
"version": "1.1.5",
"version": "1.1.6",
"description": "A polyfill that fetches external SVGs referenced in use elements when the browser itself fails to do so.",
"main": "svgxuse.js",
"files": [
Expand Down
8 changes: 4 additions & 4 deletions demo/bower_components/svgxuse/svgxuse.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @copyright Copyright (c) 2015 IcoMoon.io
* @license Licensed under MIT license
* See https://github.com/Keyamoon/svgxuse
* @version 1.1.5
* @version 1.1.6
*/
/*jslint browser: true */
/*global XDomainRequest, MutationObserver, window */
Expand All @@ -23,7 +23,7 @@
var observer;
if (window.MutationObserver) {
observer = new MutationObserver(debouncedCheck);
observer.observe(document.body, {
observer.observe(document.documentElement, {
childList: true,
subtree: true,
attributes: true
Expand All @@ -34,9 +34,9 @@
} catch (ignore) {}
};
} else {
document.body.addEventListener('DOMSubtreeModified', debouncedCheck, false);
document.documentElement.addEventListener('DOMSubtreeModified', debouncedCheck, false);
unobserveChanges = function () {
document.body.removeEventListener('DOMSubtreeModified', debouncedCheck, false);
document.documentElement.removeEventListener('DOMSubtreeModified', debouncedCheck, false);
};
}
};
Expand Down
8 changes: 4 additions & 4 deletions demo/bower_components/svgxuse/svgxuse.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a129ae5

Please sign in to comment.