Skip to content
This repository has been archived by the owner on May 25, 2019. It is now read-only.

Commit

Permalink
v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Triangle717 committed Mar 24, 2014
1 parent 17cb8af commit c642c5d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
* Removed duplicate value assignments
* Indent HTML and CSS using two space soft tabs (per [http://mdo.github.io/code-guide/#html-syntax](http://mdo.github.io/code-guide/#html-syntax),
[http://mdo.github.io/code-guide/#css-syntax](http://mdo.github.io/code-guide/#css-syntax))
* Indent JavaScript using twp space soft tabs (per [https://github.com/styleguide/javascript](https://github.com/styleguide/javascript))
* Indent JavaScript using two space soft tabs (per [https://github.com/styleguide/javascript](https://github.com/styleguide/javascript))
* Update HTML elements per aforementioned style guide
* Changed code indentation to two spaces (was four spaces)
* Changed inserted code indentation to two spaces (was four spaces)
* Removed keyboard shortcut

## 1.1.3 ##
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Method 2: Download directly from GitHub using either the [latest revision](https
# Usage #

1. Place your cursor in the location you want to insert the elements
2. Open the dialog by pressing `<Ctrl + Shift + N>` or by going to `Edit > Insert HTML Elements`
2. Open the dialog by going to `Edit > Insert HTML Elements`
3. Select the desired elements, and press Done
4. Fill in all blank attributes as needed

Expand Down
12 changes: 1 addition & 11 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ define(function (require, exports, module) {
/* ------- Begin Available HTML Elements ------- */

// Assign a variable for 2 space indentation for easier coding
// FUTURE Replace with Sprint 37 prefs system
// FUTURE Replace with Sprint 37 preferences system
var twoSpaceIndent = "\u0020\u0020";

// Placeholder variables for image size
Expand Down Expand Up @@ -193,16 +193,6 @@ define(function (require, exports, module) {

// Upon closing the dialog, run function to gather and apply choices
$doneButton.on("click", _getOptions);

/* FUTURE Disabled unless persistent values are a good thing to have */
// If the width and height boxes are not the default size (0), reuse the previous value.
// Technically, the values are already reused, but this makes it more obvious.
// if ($imgWidth !== 0) {
// $("#img-width").val($imgWidth);
// }
// if ($imgHeight !== 0) {
// $("#img-height").val($imgHeight);
// }
}


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "HTML Skeleton",
"description": "HTML Skeleton allows you to add various HTML elements straight into your document, freeing you from typing it yourself.",
"homepage": "https://github.com/le717/brackets-html-skeleton",
"version": "1.1.3",
"version": "1.1.4",
"author": "Triangle717 (http://Triangle717.WordPress.com)",
"license": "The MIT License",
"engines": {
Expand Down

0 comments on commit c642c5d

Please sign in to comment.