forked from JasonMortonNZ/bs3-sublime-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dc0512
commit 0455d2a
Showing
10 changed files
with
49 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
<!-- Latest compiled and minified CSS --> | ||
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> | ||
]]></content> | ||
<tabTrigger>bs3-cdn:css</tabTrigger> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
<!-- Latest compiled and minified CSS & JS --> | ||
<link rel="stylesheet" media="screen" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"> | ||
<link rel="stylesheet" media="screen" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> | ||
${1:<script src="//code.jquery.com/jquery.js"></script>} | ||
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> | ||
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> | ||
]]></content> | ||
<tabTrigger>bs3-cdn</tabTrigger> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
<div class="form-group"> | ||
<label for="input${1/(\w+)/\u\1/g}" class="col-${2:sm-2} control-label">${1/(\w+)/\u\1/g}:</label> | ||
<div class="col-${2:sm-10}"> | ||
<select name="${1}" id="input${1/(\w+)/\u\1/g}" class="form-control" ${3:required="required"}> | ||
<option value="">${0}</option> | ||
</select> | ||
</div> | ||
</div> | ||
]]></content> | ||
<tabTrigger>bs3-select:h</tabTrigger> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
<select name="${1}" id="input${1/(\w+)/\u\1/g}" class="form-control" ${2:required="required"}> | ||
<option value="">${0}</option> | ||
</select> | ||
]]></content> | ||
<tabTrigger>bs3-select</tabTrigger> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"install": "messages/install.txt", | ||
"1.1.2": "messages/1-1-2.txt" | ||
"1.1.3": "messages/1-1-3.txt" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
============================================================ | ||
Bootstrap 3 Snippets - Has been updated !! -> v1.1.3 | ||
============================================================ | ||
HAPPY NEW YEAR Bootstrap 3 Snippet users !! | ||
============================================================ | ||
Follow me on Twitter: @JasonMortonNZ | ||
------------------------------------------------------------ | ||
|
||
New Features | ||
------------------------------------------------------------ | ||
- Added bs3-select & bs3-select:h snippets (form element) | ||
- Updated CDN references to Bootstrap v3.0.3 | ||
- Updated HTML5 template to include lang meta tag | ||
- Updated bs3-icon to include a base fa class | ||
- COMING SOON - A Dedicated website for Bootstrap 3 Snippets | ||
- Complete with easy browse docs and videos. | ||
------------------------------------------------------------ | ||
Documentation, examples & issue filing can be found here: | ||
https://github.com/JasonMortonNZ/bs3-sublime-plugin |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters