-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added fix for #2 Successful purchases page
All successful purchases redirect to a new page. If possible the download start automatically otherwise a download link is provided on the page for users to click on.
- Loading branch information
Showing
37 changed files
with
6,230 additions
and
4,025 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* better signup | ||
* gravatar |
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
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,14 @@ | ||
define([], function () { | ||
|
||
function existy (x) { | ||
return x != null; | ||
} | ||
|
||
function assert (value, message) { | ||
if (!existy(value)) { | ||
throw new Error(message); | ||
} | ||
} | ||
|
||
return assert; | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
define([], function () { | ||
|
||
var formHandler = { | ||
duplicateRow: function (e) { | ||
e.preventDefault(); | ||
var $this = $(this); | ||
var row = $this.parents('tr'); | ||
|
||
var rowClone = row.clone(); | ||
rowClone.insertAfter(row); | ||
|
||
$this.parents('p').remove(); | ||
rowClone.find('a').on('click', formHandler.duplicateRow); | ||
} | ||
} | ||
|
||
return formHandler; | ||
|
||
}); |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.