Skip to content

Commit 5bbd85f

Browse files
committed
Version bump and readme updates.
1 parent 067c211 commit 5bbd85f

File tree

144 files changed

+158
-160
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+158
-160
lines changed

ListingBuilder/Program.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.IO;
1+
using System.IO;
42
using System.Linq;
53
using System.Text;
6-
using System.Threading.Tasks;
74
using System.Xml;
85

96
namespace ListingBuilder

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
[![Build status](https://ci.appveyor.com/api/projects/status/3o0b1ofu94xuqpsa?svg=true)](https://ci.appveyor.com/project/kspearrin/visual-studio-jquery-code-snippets)
44

5-
I have updated the popular jQuery code snippets for use in Visual Studio 2012, 2013, and 2015. See a demo video on YouTube here: <http://www.youtube.com/watch?v=Escy0hbEkI8&hd=1>
6-
7-
Most of these snippets were originally developed by [John Sheehan](http://jquerysnippets.codeplex.com/) for Visual Studio 2010. Credit given where due.
5+
This project hosts a collection of common jQuery code snippets for use in Visual Studio 2012, 2013, and 2015. See a demo video on YouTube here: <http://www.youtube.com/watch?v=Escy0hbEkI8&hd=1>.
86

97
## Installation
108

@@ -23,11 +21,10 @@ There are over 130 code snippets for jQuery included. Check out the [snippet lis
2321

2422
## Changelog
2523

26-
**v1.5.0**
27-
- Added VS 2015 support. Thanks @madskristensen!
28-
- Upgraded project files to VS 2013.
24+
**v1.6.0**
25+
- Added `jqOff`, `jqOffSel`, and `jqOnSel` snippets. Thanks @everettcaleb!
26+
- Removed `type="text/javascript"` from all script tags in HTML snippets.
2927
- Updated HTML snippet default library versions to latest.
30-
- Added wrapping quotes to `jqWrap*` snippets.
3128

3229
[Previous Versions](https://github.com/kspearrin/Visual-Studio-jQuery-Code-Snippets/wiki/Release-Notes)
3330

SnippetListing.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,14 @@
8686
<tr><td>JavaScript</td><td>jqMouseOver</td><td>Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element.</td></tr>
8787
<tr><td>JavaScript</td><td>jqMouseUp</td><td>Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element.</td></tr>
8888
<tr><td>JavaScript</td><td>jqNamespace</td><td>A namespace template. ref: http://enterprisejquery.com/2010/10/how-good-c-habits-can-encourage-bad-javascript-habits-part-1/</td></tr>
89+
<tr><td>JavaScript</td><td>jqOff</td><td>Detach an event handler from one or more events on the selected elements.</td></tr>
90+
<tr><td>JavaScript</td><td>jqOffSel</td><td>Detach an event handler from one or more events on the document with the specified selector.</td></tr>
8991
<tr><td>JavaScript</td><td>jqOffsetGet</td><td>Get the current coordinates of the first element, or set the coordinates of every element, in the set of matched elements, relative to the document.</td></tr>
9092
<tr><td>JavaScript</td><td>jqOffsetParent</td><td>Get the closest ancestor element that is positioned.</td></tr>
9193
<tr><td>JavaScript</td><td>jqOn</td><td>Attach an event handler function for one or more events to the selected elements.</td></tr>
9294
<tr><td>JavaScript</td><td>jqOne</td><td>Attach a handler to an event for the elements. The handler is executed at most once per element per event type.</td></tr>
9395
<tr><td>JavaScript</td><td>jqOneWithData</td><td>Attach a handler to an event for the elements. The handler is executed at most once per element per event type.</td></tr>
96+
<tr><td>JavaScript</td><td>jqOnSel</td><td>Attach an event handler function for one or more events to the document filtered by the selector.</td></tr>
9497
<tr><td>JavaScript</td><td>jqOuterHeight</td><td>Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns a number (without "px") representation of the value or null if called on an empty set of elements.</td></tr>
9598
<tr><td>JavaScript</td><td>jqOuterWidth</td><td>Get the current computed width for the first element in the set of matched elements, including padding and border.</td></tr>
9699
<tr><td>JavaScript</td><td>jqPlugin</td><td>Plugin template.</td></tr>

Tests/SnippetTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class SnippetTests
1010
// --- CONFIGURATION ---
1111
private const string SnippetPath = @"../../../jQueryCodeSnippets";
1212
private const string HelpUrl = "https://github.com/kspearrin/Visual-Studio-jQuery-Code-Snippets";
13-
private const string Version = "1.5.0";
13+
private const string Version = "1.6.0";
1414
// --- END CONFIGURATION ---
1515

1616
[Fact]

jQueryCodeSnippets/HTML/jQuery/jq.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/HTML/jQuery/jqScript.snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>
@@ -16,7 +16,7 @@
1616
<Literal Editable="true">
1717
<ID>path</ID>
1818
<ToolTip>Path to jQuery script</ToolTip>
19-
<Default>/scripts/jquery-1.9.0.min.js</Default>
19+
<Default>/scripts/jquery-2.2.0.min.js</Default>
2020
<Function>
2121
</Function>
2222
</Literal>

jQueryCodeSnippets/HTML/jQuery/jqScriptCdnGoogle.snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>
@@ -16,7 +16,7 @@
1616
<Literal Editable="true">
1717
<ID>version</ID>
1818
<ToolTip>Library version number</ToolTip>
19-
<Default>1.11.2</Default>
19+
<Default>2.2.0</Default>
2020
<Function>
2121
</Function>
2222
</Literal>

jQueryCodeSnippets/HTML/jQuery/jqScriptCdnMs.snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>
@@ -16,7 +16,7 @@
1616
<Literal Editable="true">
1717
<ID>version</ID>
1818
<ToolTip>Library version number</ToolTip>
19-
<Default>1.11.2</Default>
19+
<Default>2.2.0</Default>
2020
<Function>
2121
</Function>
2222
</Literal>

jQueryCodeSnippets/HTML/jQuery/jqScriptMin.snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>
@@ -16,7 +16,7 @@
1616
<Literal Editable="true">
1717
<ID>path</ID>
1818
<ToolTip>Path to jQuery script</ToolTip>
19-
<Default>/scripts/jquery-1.11.2.min.js</Default>
19+
<Default>/scripts/jquery-2.2.0.min.js</Default>
2020
<Function>
2121
</Function>
2222
</Literal>

jQueryCodeSnippets/HTML/jQuery/jqScriptUiCdnGoogle.snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>
@@ -16,7 +16,7 @@
1616
<Literal Editable="true">
1717
<ID>version</ID>
1818
<ToolTip>Library version number</ToolTip>
19-
<Default>1.11.3</Default>
19+
<Default>1.11.4</Default>
2020
<Function>
2121
</Function>
2222
</Literal>

jQueryCodeSnippets/HTML/jQuery/jqScriptValidateCdnMs.snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>
@@ -16,7 +16,7 @@
1616
<Literal Editable="true">
1717
<ID>version</ID>
1818
<ToolTip>Library version number</ToolTip>
19-
<Default>1.13.1</Default>
19+
<Default>1.14.0</Default>
2020
<Function>
2121
</Function>
2222
</Literal>

jQueryCodeSnippets/HTML/jQuery/jqScriptValidateUnobtrusiveCdnMs.snippet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>
@@ -16,7 +16,7 @@
1616
<Literal Editable="true">
1717
<ID>version</ID>
1818
<ToolTip>Library version number</ToolTip>
19-
<Default>5.1</Default>
19+
<Default>5.2.3</Default>
2020
<Function>
2121
</Function>
2222
</Literal>

jQueryCodeSnippets/JavaScript/jQuery/func.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAfter.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAjax.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAjaxAspNetWebService.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAppend.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAppendTo.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAttrGet.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAttrRemove.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAttrSet.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAttrSetFn.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqAttrSetObj.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqBefore.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqBind.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqBindWithData.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqBlur.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqChange.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqClassAdd.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqClassRemove.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqClassToggle.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqClassToggleSwitch.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqClick.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqClone.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqCloneWithEvents.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqCssGet.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqCssSet.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

jQueryCodeSnippets/JavaScript/jQuery/jqCssSetObj.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3-
<CodeSnippet Format="1.5.0">
3+
<CodeSnippet Format="1.6.0">
44
<Header>
55
<SnippetTypes>
66
<SnippetType>Expansion</SnippetType>

0 commit comments

Comments
 (0)