
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
jd-style-update
Advanced tools
Updating service for CSS - Ensuring that style-critical function calls are not executed while CSS is being loaded.
bower install jd-style-update
angular.module('myApp', ['jd-style-update'])
When the following style tag is added to a page
<style type="text/css">
@import url('http://my.webfont.provider.example.org/fonts.css');
body {
background: fuchsia;
}
</style>
It's not possible to get a reliable JS callback when the style is actually applied because the webfont request will block CSS rendering and will not trigger any JS callbacks when done.
We add a custom CSS rule to each style update
<style type="text/css">
@import url('http://my.webfont.provider.example.org/fonts.css');
/* ... */
.jd-style-update-loading-123456789 {
content: "loaded";
}
</style>
and a Marker element to the dom
<div class="jd-style-update-loading-123456789"></div>
then each style-crytical function is passed into a queue that is aware of the current css loading state
// pseudo code
queue.push(function() { /* ... */ });
and then we check for this rule to be applied
// pseudo code
while ($marker.css('content') !== 'loaded') {
wait();
}
and run the queue
queue.run();
angular.module('myApp').run(function(jdStyleUpdater) {
jdStyleUpdater.update([
'@import url("http://my.webfont.provider.example.org/fonts.css");',
'body {',
' background: fuchsia;',
'}'
].join('')).then(function() {
expect(angular.element(document.body)
.css('background')).toBe('fuchsia');
});
// get promise without triggering an update
jdStyleUpdater.ready().then(successCallback).catch(errorCallback);
});
angular.module('myApp').run(function(jdStyleSafe) {
// callbacks will be executed whenever there
// is no jdStyleUpdater.update in process
jdStyleSafe.apply(myCallback, ['foo', 'bar']);
jdStyleSafe.call(myOtherCallback, 'foo', 'bar');
});
angular.module('myApp').
// base class that is applied to the marker element
.constant('jdsuApplicatorMarkerClass', 'jd-style-update-loading-');
// class for the <style> element
.constant('jdsuStyleTagClass', 'jd-style-update-style');
// the css property that is used to check if the style is applied
.constant('jdsuApplicatorLoadingProperty', 'content');
// the properties value that is used to check if the style is applied
.constant('jdsuApplicatorLoadingValue', 'loaded');
// amount of time after we stop looking for the style and fail
.constant('jdsuApplicatorTimeout', 2000);
// amount of time between update checks
.constant('jdsuApplicatorCheckInterval', 200);
npm install
grunt
: Execute testsgrunt coverage
: Serve coverage report on port 7000grunt test
: Just testgrunt test:e2e
: Just test end to endgrunt test:unit
: Just test unitgrunt tdd
: Watch source and test files and run testsgrunt tdd:e2e
: Watch and test just end to endgrunt tdd:unit
: Watch and test just unitgrunt build
: Just buildgrunt release
: Test, build, bump patch version, commit, add version tag and pushtest
tasks have a --browsers
option to specify the browsers you want to use
See grunt-angular-toolbox for details
The MIT License
Copyright (c) 2015 Jimdo GmbH http://jimdo.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Updating service for CSS
The npm package jd-style-update receives a total of 572 weekly downloads. As such, jd-style-update popularity was classified as not popular.
We found that jd-style-update demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.