Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantin committed Jan 26, 2015
1 parent 6d3c300 commit 1173044
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions build/development/plugins/tauCharts.export.js
Original file line number Diff line number Diff line change
Expand Up @@ -5999,7 +5999,7 @@ define('../node_modules/requirejs-text/text',['module'], function (module) {
});


define('../node_modules/requirejs-text/text!print.style.css',[],function () { return 'body > * {\n visibility: hidden;\n}\nbody {\n overflow: hidden;\n}\nbody * {\n visibility: hidden !important;\n}\n\n.graphical-report__print-block {\n position: absolute;\n top: 0;\n left: 0;\n visibility: visible !important;\n display: block;\n width: 100%;\n /*height: 100%;*/\n}\n';});
define('../node_modules/requirejs-text/text!print.style.css',[],function () { return 'body > * {\n visibility: hidden;\n}\nbody {\n overflow: hidden;\n}\nbody * {\n visibility: hidden !important;\n}\n\n.graphical-report__print-block {\n position: absolute;\n top: 0;\n left: 0;\n visibility: visible !important;\n display: block !important;\n width: 100%;\n /*height: 100%;*/\n}\n';});

(function() {

Expand Down Expand Up @@ -6339,7 +6339,11 @@ define("../bower_components/fetch/fetch", function(){});
if ('onafterprint' in window) {
window.addEventListener('afterprint', removePrintStyles);
} else {
window.matchMedia('screen').addListener(removePrintStyles);
window.matchMedia('screen').addListener(function(exp){
if(exp.matches) {
removePrintStyles();
}
});
}
var focusinDetected;
var isSupportFocusin = function isSupportFocusin() {
Expand Down
Loading

0 comments on commit 1173044

Please sign in to comment.