Skip to content

Commit

Permalink
Minor changes 🛠
Browse files Browse the repository at this point in the history
  • Loading branch information
actuallyakash committed Jul 7, 2021
1 parent 4d1ed6a commit 2b03d62
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 8 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/docs/
14 changes: 7 additions & 7 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
<link rel="stylesheet" href="css/prism.css">
<link rel="stylesheet" href="spacers/spacers.min.css">

<meta name="description" content="spacers is a JS plugin that supports multiple spacers for controlling padding/margin, linking functionality & much more!">
<meta name="description" content="spacers is a JS library that supports multiple spacers for controlling padding/margin, linking functionality & much more!">
<meta name="keywords" content="spacers, spacing, spacers, vanillajs, plugin, space">
<!-- Open Graph -->
<meta property="og:title" content="spacers - when you need more space" />
<meta property="og:description" content="spacers is a JS plugin that supports multiple spacers for controlling padding/margin, linking functionality & much more!"
<meta property="og:description" content="spacers is a JS library that supports multiple spacers for controlling padding/margin, linking functionality & much more!"
/>
<meta property="og:type" content="article" />
<meta property="og:url" content="http://actuallyakash.github.io/spacers/" />
Expand All @@ -27,7 +27,7 @@
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="spacers - when you need more space" />
<meta name="twitter:description" content="spacers is a JS plugin that supports multiple spacers for controlling padding/margin, linking functionality & much more!"/>
<meta name="twitter:description" content="spacers is a JS library that supports multiple spacers for controlling padding/margin, linking functionality & much more!"/>
<meta name="twitter:creator" content="@actuallyakash" />
<meta name="twitter:image:src" content="https://res.cloudinary.com/dmz9bftyk/image/upload/v1625301678/spacers_giwb8b.gif" />
<meta name="twitter:domain" content="http://actuallyakash.github.io/spacers/" />
Expand Down Expand Up @@ -145,7 +145,7 @@ <h2 class="text-center text-md-left">
<div class="docs-section" id="introduction">
<h2 class="docs-title">Introduction</h2>

<p>spacers is a JS plugin that supports multiple spacers for controlling padding/margin, linking functionality &amp; much more!</p>
<p>spacers is a JS library that supports multiple spacers for controlling padding/margin, linking functionality &amp; much more!</p>
<p>spacers make spacing as easy as a drag ↕</p>
</div>

Expand Down Expand Up @@ -286,15 +286,15 @@ <h2 class="docs-title">padding / margin</h2>
</div>

<div class="element col-6 col-md-4">
<div class="element-block margin-prop">
<div class="element-block padding-margin-prop">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Eius, eveniet laudantium, sit soluta ipsum
reprehenderit libero eaque ex, unde nesciunt blanditiis itaque nemo exercitationem voluptates modi
et cumque quas. Aliquid.
</div>
</div>

<div class="element col-6 col-md-4">
<div class="element-block margin-prop">
<div class="element-block padding-margin-prop">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Eius, eveniet laudantium, sit soluta ipsum
reprehenderit libero eaque ex, unde nesciunt blanditiis itaque nemo exercitationem voluptates modi
et cumque quas. Aliquid.
Expand Down Expand Up @@ -871,7 +871,7 @@ <h2 class="docs-title">Play</h2>
<h2 class="docs-title">Download</h2>

<div class="text-center">
<a href="https://github.com/actuallyakash/spacers/archive/refs/tags/1.0.0.zip" class="btn btn-primary docs-btn">Download Now</a>
<a href="https://github.com/actuallyakash/spacers/archive/refs/tags/1.0.3.zip" class="btn btn-primary docs-btn">Download Now</a>
<a href="http://github.com/actuallyakash/spacers" target="_blank" class="btn btn-primary docs-btn">View on GitHub</a>
</div>
</div>
Expand Down
10 changes: 10 additions & 0 deletions docs/spacers/spacers.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
(っ◔◡◔)っ ♥ 𝒔𝒑𝒂𝒄𝒆𝒓𝒔.𝒋𝒔 ♥
Version: 1.0.3
Author: Akash Gupta
Website: http://akashgupta.xyz
Docs: https://actuallyakash.github.io/spacers
Repo: https://github.com/actuallyakash/spacers
Issues: https://github.com/actuallyakash/spacers/issues
*/
function spacers( options ) {

let document = options.containedArea ? options.containedArea : window.document;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "spacersjs",
"version": "1.0.2",
"version": "1.0.3",
"description": "when you need more space",
"main": "spacers/spacers.js",
"repository": {
Expand Down
10 changes: 10 additions & 0 deletions spacers/spacers.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
(っ◔◡◔)っ ♥ 𝒔𝒑𝒂𝒄𝒆𝒓𝒔.𝒋𝒔 ♥
Version: 1.0.3
Author: Akash Gupta
Website: http://akashgupta.xyz
Docs: https://actuallyakash.github.io/spacers
Repo: https://github.com/actuallyakash/spacers
Issues: https://github.com/actuallyakash/spacers/issues
*/
function spacers( options ) {

let document = options.containedArea ? options.containedArea : window.document;
Expand Down

0 comments on commit 2b03d62

Please sign in to comment.