UNPKG

jssocials

Version:

jsSocials - jQuery Social Network Sharing Plugin

27 lines (26 loc) 994 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title>jsSocials Test Suite</title> <!-- Load local jQuery. --> <script src="../bower_components/jquery/dist/jquery.js"></script> <!-- Load local QUnit. --> <link rel="stylesheet" href="../bower_components/qunit/qunit/qunit.css" media="screen"> <script src="../bower_components/qunit/qunit/qunit.js"></script> <!-- Load local lib and tests. --> <script src="../src/jssocials.js"></script> <script src="../src/jssocials.shares.js"></script> <script src="jssocials.tests.js"></script> <!-- Removing access to jQuery and $. But it'll still be available as _$, if you REALLY want to mess around with jQuery in the console. REMEMBER WE ARE TESTING A PLUGIN HERE, THIS HELPS ENSURE BEST PRACTICES. REALLY. --> <script>window._$ = jQuery.noConflict(true);</script> </head> <body> <div id="qunit"></div> <div id="qunit-fixture"> <div id="share"></div> </div> </body> </html>