-
-
Notifications
You must be signed in to change notification settings - Fork 55
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
2a0d399
commit 1bc48de
Showing
46 changed files
with
80 additions
and
80 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 |
---|---|---|
|
@@ -50,12 +50,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
Dirty Forms is available over jsDelivr CDN and can directly be included on every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/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 and jquery.dirtyforms in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected]-beta00008"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected]"></script> | ||
``` | ||
|
||
#### Self-Hosted | ||
|
@@ -92,7 +92,7 @@ A [SourceMap](https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b- | |
#### CDN | ||
|
||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
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 |
---|---|---|
|
@@ -28,12 +28,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
The BlockUI dialog module is available over jsDelivr CDN and can directly be included on every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.blockui.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.blockui.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, BlockUI, jquery.dirtyforms, and jquery.dirtyforms.dialogs.blockui in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected],[email protected]-beta00008(jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.blockui.min.js)"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected],[email protected](jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.blockui.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/2.0.0-beta00008/jquery.dirtyforms.dialogs.blockui.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.blockui.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
@@ -88,8 +88,8 @@ This dialog module is automatic. Simply include the reference to the dialog modu | |
```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.blockui/2.70.0/jquery.blockUI.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.blockui.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.blockui.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.dialogs.blockui", | ||
"main": "jquery.dirtyforms.dialogs.blockui.min.js", | ||
"version": "2.0.0-beta00008", | ||
"version": "2.0.0", | ||
"homepage": "https://github.com/snikch/jquery.dirtyforms", | ||
"authors": [ | ||
"Shad Storhaug <[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 |
---|---|---|
|
@@ -28,12 +28,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
The Bootstrap Modal dialog module is available over jsDelivr CDN and can directly be included on every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.bootstrap.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.bootstrap.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, bootstrap, jquery.dirtyforms, and jquery.dirtyforms.dialogs.bootstrap in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected],[email protected]-beta00008(jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.bootstrap.min.js)"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected],[email protected](jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.bootstrap.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/2.0.0-beta00008/jquery.dirtyforms.dialogs.bootstrap.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.bootstrap.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
@@ -92,8 +92,8 @@ This dialog module is automatic. Simply include the reference to the dialog modu | |
// JavaScript | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/bootstrap/3.0.0/js/bootstrap.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.bootstrap.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.bootstrap.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.dialogs.bootstrap", | ||
"main": "jquery.dirtyforms.dialogs.bootstrap.min.js", | ||
"version": "2.0.0-beta00008", | ||
"version": "2.0.0", | ||
"homepage": "https://github.com/snikch/jquery.dirtyforms", | ||
"authors": [ | ||
"Shad Storhaug <[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 |
---|---|---|
|
@@ -28,12 +28,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
The Facebox dialog module is available over jsDelivr CDN and can directly be included on every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.facebox.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.facebox.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.dialogs.facebox in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],jquery.facebox,[email protected]-beta00008(jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.facebox.min.js)"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],jquery.facebox,[email protected](jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.facebox.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/2.0.0-beta00008/jquery.dirtyforms.dialogs.facebox.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.facebox.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
@@ -92,8 +92,8 @@ This dialog module is automatic. Simply include the reference to the dialog modu | |
// JavaScript | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.facebox/latest/jquery.facebox.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.facebox.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.facebox.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.dialogs.facebox", | ||
"main": "jquery.dirtyforms.dialogs.facebox.min.js", | ||
"version": "2.0.0-beta00008", | ||
"version": "2.0.0", | ||
"homepage": "https://github.com/snikch/jquery.dirtyforms", | ||
"authors": [ | ||
"Shad Storhaug <[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 |
---|---|---|
|
@@ -28,12 +28,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
The jQuery UI dialog module is available over jsDelivr CDN and can directly be included on every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.jquery-ui.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.jquery-ui.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 UI, jquery.dirtyforms, and jquery.dirtyforms.dialogs.jquery-ui in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected],[email protected]-beta00008(jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.jquery-ui.min.js)"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected],[email protected](jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.jquery-ui.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/2.0.0-beta00008/jquery.dirtyforms.dialogs.jquery-ui.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.jquery-ui.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
@@ -93,8 +93,8 @@ This dialog module is automatic. Simply include the reference to the dialog modu | |
// JavaScript | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.ui/1.11.3/jquery-ui.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.jquery-ui.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.jquery-ui.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.dialogs.jquery-ui", | ||
"main": "jquery.dirtyforms.dialogs.jquery-ui.min.js", | ||
"version": "2.0.0-beta00008", | ||
"version": "2.0.0", | ||
"homepage": "https://github.com/snikch/jquery.dirtyforms", | ||
"authors": [ | ||
"Shad Storhaug <[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 |
---|---|---|
|
@@ -31,12 +31,12 @@ There are several different ways to get the code. Some examples below: | |
#### CDN | ||
The PNotify dialog module is available over jsDelivr CDN and can directly be included on every page. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.pnotify.min.js"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.pnotify.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, PNotify, jquery.dirtyforms, and jquery.dirtyforms.dialogs.pnotify in one request. | ||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected](pnotify.js+pnotify.confirm.js+pnotify.history.js),[email protected]-beta00008(jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.pnotify.min.js)"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/g/[email protected],[email protected](pnotify.js+pnotify.confirm.js+pnotify.history.js),[email protected](jquery.dirtyforms.min.js+jquery.dirtyforms.dialogs.pnotify.min.js)"></script> | ||
``` | ||
|
||
#### Self-Hosted | ||
|
@@ -74,7 +74,7 @@ A [SourceMap](https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b- | |
#### CDN | ||
|
||
```HTML | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.pnotify.min.js.map"></script> | ||
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.pnotify.min.js.map"></script> | ||
``` | ||
|
||
#### Package Managers | ||
|
@@ -109,8 +109,8 @@ This dialog module is automatic. Simply include the reference to the dialog modu | |
<script src="//cdn.jsdelivr.net/pnotify/3.0.0/pnotify.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/pnotify/3.0.0/pnotify.confirm.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/pnotify/3.0.0/pnotify.history.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0-beta00008/jquery.dirtyforms.dialogs.pnotify.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.min.js" type="text/javascript"></script> | ||
<script src="//cdn.jsdelivr.net/jquery.dirtyforms/2.0.0/jquery.dirtyforms.dialogs.pnotify.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.dialogs.pnotify", | ||
"main": "jquery.dirtyforms.dialogs.pnotify.min.js", | ||
"version": "2.0.0-beta00008", | ||
"version": "2.0.0", | ||
"homepage": "https://github.com/snikch/jquery.dirtyforms", | ||
"authors": [ | ||
"Shad Storhaug <[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
Submodule jquery.dirtyforms
updated
22 files
Submodule jquery.dirtyforms.dialogs.blockui
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+1 −1 | jquery.dirtyforms.dialogs.blockui.js | |
+1 −1 | jquery.dirtyforms.dialogs.blockui.min.js | |
+1 −1 | jquery.dirtyforms.dialogs.blockui.min.js.map | |
+1 −1 | package.json |
Submodule jquery.dirtyforms.dialogs.bootstrap
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+1 −1 | jquery.dirtyforms.dialogs.bootstrap.js | |
+1 −1 | jquery.dirtyforms.dialogs.bootstrap.min.js | |
+1 −1 | jquery.dirtyforms.dialogs.bootstrap.min.js.map | |
+1 −1 | package.json |
Submodule jquery.dirtyforms.dialogs.facebox
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+1 −1 | jquery.dirtyforms.dialogs.facebox.js | |
+1 −1 | jquery.dirtyforms.dialogs.facebox.min.js | |
+1 −1 | jquery.dirtyforms.dialogs.facebox.min.js.map | |
+1 −1 | package.json |
Submodule jquery.dirtyforms.dialogs.jquery-ui
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+1 −1 | jquery.dirtyforms.dialogs.jquery-ui.js | |
+1 −1 | jquery.dirtyforms.dialogs.jquery-ui.min.js | |
+1 −1 | jquery.dirtyforms.dialogs.jquery-ui.min.js.map | |
+1 −1 | package.json |
Submodule jquery.dirtyforms.dialogs.pnotify
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+1 −1 | jquery.dirtyforms.dialogs.pnotify.js | |
+1 −1 | jquery.dirtyforms.dialogs.pnotify.min.js | |
+1 −1 | jquery.dirtyforms.dialogs.pnotify.min.js.map | |
+1 −1 | package.json |
Submodule jquery.dirtyforms.helpers.alwaysdirty
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+1 −1 | jquery.dirtyforms.helpers.alwaysdirty.js | |
+1 −1 | jquery.dirtyforms.helpers.alwaysdirty.min.js | |
+1 −1 | jquery.dirtyforms.helpers.alwaysdirty.min.js.map | |
+1 −1 | package.json |
Submodule jquery.dirtyforms.helpers.ckeditor
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+1 −1 | jquery.dirtyforms.helpers.ckeditor.js | |
+1 −1 | jquery.dirtyforms.helpers.ckeditor.min.js | |
+1 −1 | jquery.dirtyforms.helpers.ckeditor.min.js.map | |
+1 −1 | package.json |
Submodule jquery.dirtyforms.helpers.tinymce
updated
6 files
+5 −5 | README.md | |
+1 −1 | bower.json | |
+1 −1 | jquery.dirtyforms.helpers.tinymce.js | |
+1 −1 | jquery.dirtyforms.helpers.tinymce.min.js | |
+1 −1 | jquery.dirtyforms.helpers.tinymce.min.js.map | |
+1 −1 | 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
Oops, something went wrong.