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

Commit

Permalink
Update HTML dialog elements according to previous style rules,
Browse files Browse the repository at this point in the history
Indent JS using two space soft tabs, per GitHub JavaScript guidelines
https://github.com/styleguide/javascript
  • Loading branch information
Triangle717 committed Mar 11, 2014
1 parent acd5fa3 commit 451c744
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 159 deletions.
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# News #

## 1.1.4 ##

### 3/??/14 ###

* Replace `transform` CSS properties ([#8](https://github.com/le717/brackets-html-skeleton/issues/8))
* Removed duplicate value assignments
* Indent HTML and CSS using two space soft tabs ([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))

## 1.1.3 ##

### 2/22/14 ###
Expand Down
10 changes: 5 additions & 5 deletions htmlContent/mainDialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ <h3>{{ELEMENTS}}</h3>
<input type="checkbox" id="img-tag" />
<label for="img-tag">{{PICTURE_IMAGE}}<br></label>

<input type="number" id="img-width" min="0" placeholder="{{WIDTH}}" /> <span class="html-skeleton" id="img-size-x">x</span>
<input type="number" id="img-height" min="0" placeholder="{{HEIGHT}}" />
<input id="img-width" type="number" min="0" placeholder="{{WIDTH}}" /><span class="html-skeleton" id="img-size-x"> x </span>
<input id="img-height" type="number" min="0" placeholder="{{HEIGHT}}" />

<br>
<input type="checkbox" id="full-skelly" />
<input id="full-skelly" type="checkbox" />

<label for="full-skelly">{{FULL_SKELETON}}<br>
<span id="full-skelly-description">{{FULL_SKELETON_DESCRIPTION}}</span>
Expand All @@ -53,7 +53,7 @@ <h3>{{ELEMENTS}}</h3>
</div> <!-- .html-skeleton-modal-body -->

<div class="modal-footer">
<a href="#" class="dialog-button btn" data-button-id="cancel">{{BTN_CANCEL}}</a>
<a href="#" class="dialog-button btn primary" data-button-id="ok">{{BTN_DONE}}</a>
<a class="dialog-button btn" data-button-id="cancel" href="#">{{BTN_CANCEL}}</a>
<a class="dialog-button btn primary" data-button-id="ok" href="#">{{BTN_DONE}}</a>
</div>
</div>
Loading

0 comments on commit 451c744

Please sign in to comment.