This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { BrowserRouter as Router, Route } from "react-router-dom"; | |
import routes from "./routes"; | |
import withTracker from "./withTracker"; | |
import "bootstrap/dist/css/bootstrap.min.css"; | |
import "./shards-dashboard/styles/shards-dashboards.1.1.0.min.css"; | |
import { DefaultLayout } from "./layouts"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<object style="width: 100%; min-height: 600px;" data="Your PDF URL." type="application/pdf"> | |
<iframe src="Your PDF URL."></iframe> | |
</object> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
(function($) { | |
$(document).ready(function() { | |
$('#my-custom-tabs .et_pb_tab_1').click(function() { | |
window.open('Your PDF URL here.', '_blank') | |
}); | |
}); | |
})(jQuery) | |
</script> |