-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
77b2e55
commit 8e73150
Showing
17 changed files
with
31 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,12 +51,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
Dirty Forms is available over jsDelivr CDN and can directly included to every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.min.js"></script> | ||
``` | ||
|
||
jsDelivr also supports [on-the-fly concatenation of files](https://github.com/jsdelivr/jsdelivr#load-multiple-files-with-single-http-request), so you can reference only 1 URL to get jQuery, jquery.facebox, and jquery.dirtyforms in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],jquery.facebox,[email protected].2"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],jquery.facebox,[email protected].3"></script> | ||
``` | ||
|
||
#### Self-Hosted | ||
|
@@ -93,7 +93,7 @@ A [SourceMap](https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b- | |
####CDN | ||
|
||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
Submodule jquery.dirtyforms
updated
10 files
Submodule jquery.dirtyforms.helpers.alwaysdirty
updated
3 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+3 −8 | package.json |
Submodule jquery.dirtyforms.helpers.ckeditor
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+15 −6 | jquery.dirtyforms.helpers.ckeditor.js | |
+1 −1 | jquery.dirtyforms.helpers.ckeditor.min.js | |
+1 −1 | jquery.dirtyforms.helpers.ckeditor.min.js.map | |
+3 −8 | package.json |
Submodule jquery.dirtyforms.helpers.tinymce
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+2 −1 | jquery.dirtyforms.helpers.tinymce.js | |
+1 −1 | jquery.dirtyforms.helpers.tinymce.min.js | |
+1 −1 | jquery.dirtyforms.helpers.tinymce.min.js.map | |
+3 −8 | package.json |
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 |
---|---|---|
|
@@ -28,12 +28,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
The Always Dirty helper is available over jsDelivr CDN and can directly included to every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.helpers.alwaysdirty.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.helpers.alwaysdirty.min.js"></script> | ||
``` | ||
|
||
jsDelivr also supports [on-the-fly concatenation of files](https://github.com/jsdelivr/jsdelivr#load-multiple-files-with-single-http-request), so you can reference only 1 URL to get jQuery, jquery.facebox, jquery.dirtyforms, and jquery.dirtyforms.helpers.alwaysdirty in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],jquery.facebox,[email protected].2(jquery.dirtyforms.min.js+jquery.dirtyforms.helpers.alwaysdirty.min.js)"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],jquery.facebox,[email protected].3(jquery.dirtyforms.min.js+jquery.dirtyforms.helpers.alwaysdirty.min.js)"></script> | ||
``` | ||
|
||
#### Self-Hosted | ||
|
@@ -70,7 +70,7 @@ A [SourceMap](https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b- | |
#### CDN | ||
|
||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.helpers.alwaysdirty.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.helpers.alwaysdirty.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
@@ -87,8 +87,8 @@ This helper is completely automatic - there are no properties or methods to inte | |
|
||
```HTML | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.helpers.alwaysdirty.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.helpers.alwaysdirty.min.js" type="text/javascript"></script> | ||
``` | ||
|
||
> If not using a CDN, you need to apply the dependencies in the same order as in the example above. |
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 @@ | ||
{ | ||
"name": "jquery.dirtyforms.helpers.alwaysdirty", | ||
"main": "jquery.dirtyforms.helpers.alwaysdirty.min.js", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"homepage": "https://github.com/snikch/jquery.dirtyforms", | ||
"authors": [ | ||
"Mal Curtis <[email protected]>" | ||
|
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 |
---|---|---|
|
@@ -26,12 +26,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
The CKEditor helper is available over jsDelivr CDN and can directly included to every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.helpers.ckeditor.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.helpers.ckeditor.min.js"></script> | ||
``` | ||
|
||
jsDelivr also supports [on-the-fly concatenation of files](https://github.com/jsdelivr/jsdelivr#load-multiple-files-with-single-http-request), so you can reference only 1 URL to get jQuery, jquery.facebox, ckeditor, jquery.dirtyforms, and jquery.dirtyforms.helpers.ckeditor in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],jquery.facebox,ckeditor(ckeditor.js),[email protected].2(jquery.dirtyforms.min.js+jquery.dirtyforms.helpers.ckeditor.min.js)"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],jquery.facebox,ckeditor(ckeditor.js),[email protected].3(jquery.dirtyforms.min.js+jquery.dirtyforms.helpers.ckeditor.min.js)"></script> | ||
``` | ||
|
||
#### Self-Hosted | ||
|
@@ -68,7 +68,7 @@ A [SourceMap](https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b- | |
#### CDN | ||
|
||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.helpers.ckeditor.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.helpers.ckeditor.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
@@ -86,8 +86,8 @@ This helper is completely automatic - there are no properties or methods to inte | |
```HTML | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/ckeditor/latest/ckeditor.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.helpers.ckeditor.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.helpers.ckeditor.min.js" type="text/javascript"></script> | ||
``` | ||
|
||
> If not using a CDN, you need to apply the dependencies in the same order as in the example above. |
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 @@ | ||
{ | ||
"name": "jquery.dirtyforms.helpers.ckeditor", | ||
"main": "jquery.dirtyforms.helpers.ckeditor.min.js", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"homepage": "https://github.com/snikch/jquery.dirtyforms", | ||
"authors": [ | ||
"Mal Curtis <[email protected]>" | ||
|
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 |
---|---|---|
|
@@ -31,12 +31,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
The TinyMCE helper is available over jsDelivr CDN and can directly included to every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.helpers.tinymce.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.helpers.tinymce.min.js"></script> | ||
``` | ||
|
||
jsDelivr also supports [on-the-fly concatenation of files](https://github.com/jsdelivr/jsdelivr#load-multiple-files-with-single-http-request), so you can reference only 1 URL to get jQuery, jquery.facebox, TinyMCE, the jQuery TinyMCE plugin, jquery.dirtyforms, and jquery.dirtyforms.helpers.tinymce in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],tinymce(tinymce.min.js+jquery.tinymce.min.js),jquery.facebox,[email protected].2(jquery.dirtyforms.min.js+jquery.dirtyforms.helpers.tinymce.min.js)"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],tinymce(tinymce.min.js+jquery.tinymce.min.js),jquery.facebox,[email protected].3(jquery.dirtyforms.min.js+jquery.dirtyforms.helpers.tinymce.min.js)"></script> | ||
``` | ||
|
||
#### Self-Hosted | ||
|
@@ -73,7 +73,7 @@ A [SourceMap](https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b- | |
#### CDN | ||
|
||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.helpers.tinymce.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.helpers.tinymce.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
@@ -92,8 +92,8 @@ This helper is completely automatic - there are no properties or methods to inte | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/tinymce/latest/tinymce.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/tinymce/latest/jquery.tinymce.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.2/jquery.dirtyforms.helpers.tinymce.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/1.2.3/jquery.dirtyforms.helpers.tinymce.min.js" type="text/javascript"></script> | ||
``` | ||
|
||
> If not using a CDN, you need to apply the dependencies in the same order as in the example above. |
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 @@ | ||
{ | ||
"name": "jquery.dirtyforms.helpers.tinymce", | ||
"main": "jquery.dirtyforms.helpers.tinymce.min.js", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"homepage": "https://github.com/snikch/jquery.dirtyforms", | ||
"authors": [ | ||
"Mal Curtis <[email protected]>" | ||
|
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
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 @@ | ||
{ | ||
"name": "jquery.dirtyforms", | ||
"main": "jquery.dirtyforms.min.js", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"homepage": "https://github.com/snikch/jquery.dirtyforms", | ||
"authors": [ | ||
"Mal Curtis <[email protected]>", | ||
|
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