From c642c5df1686da799251f32a12366d51c9c09681 Mon Sep 17 00:00:00 2001 From: Triangle717 Date: Mon, 24 Mar 2014 06:52:09 -0400 Subject: [PATCH] v1.1.4 --- NEWS.md | 4 ++-- README.md | 2 +- main.js | 12 +----------- package.json | 2 +- 4 files changed, 5 insertions(+), 15 deletions(-) diff --git a/NEWS.md b/NEWS.md index b39afbb..63c8915 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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 ## diff --git a/README.md b/README.md index 0a0fb99..b9d321c 100644 --- a/README.md +++ b/README.md @@ -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 `` 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 diff --git a/main.js b/main.js index 4e838b1..3654557 100644 --- a/main.js +++ b/main.js @@ -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 @@ -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); - // } } diff --git a/package.json b/package.json index 8e12d0c..6fca643 100644 --- a/package.json +++ b/package.json @@ -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": {