raptor-dom
Advanced tools
Comparing version 0.2.0-beta to 0.2.1-beta
@@ -100,2 +100,20 @@ 'use strict'; | ||
var jquery = window.$; | ||
if (!jquery) { | ||
try { | ||
jquery = require('jquery'); | ||
} | ||
catch(e) {} | ||
} | ||
if (jquery) { | ||
dom.ready = function(callback, thisObj) { | ||
jquery(function() { | ||
callback.call(thisObj); | ||
}); | ||
}; | ||
} else { | ||
dom.ready = require('./raptor-dom_documentReady'); | ||
} | ||
module.exports = dom; |
{ | ||
"path": "/Users/psteeleidem/development/github/raptorjs3/raptor-dom/package.json", | ||
"name": "raptor-dom", | ||
"version": "0.2.0-beta", | ||
"description": "Utility functions for working with the DOM", | ||
@@ -24,3 +24,4 @@ "repository": { | ||
"registry": "https://registry.npmjs.org/" | ||
} | ||
} | ||
}, | ||
"version": "0.2.1-beta" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8662
5
218