forked from mainmatter/ember-simple-auth
-
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.
run ci tests against all supported versions of ember
- Loading branch information
Marco Otte-Witte
committed
Feb 26, 2014
1 parent
7b25293
commit 061b6da
Showing
15 changed files
with
264,817 additions
and
12 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
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 @@ | ||
(function() { | ||
function parseVersion(dependency) { | ||
var regexp = new RegExp('[?&]' + dependency + '=(.*?)(?=&|$)'); | ||
return (window.location.search.match(regexp) || [])[1]; | ||
} | ||
|
||
var jQueryVersion = parseVersion('jQuery') || '2.1.0'; | ||
var handlebarsVersion = parseVersion('handlebars') || '1.3.0'; | ||
var emberVersion = parseVersion('ember') || '1.4.0'; | ||
|
||
document.write('<script src="vendor/jquery-' + jQueryVersion + '.js"></script>'); | ||
document.write('<script src="vendor/handlebars.js"></script>'); | ||
document.write('<script src="vendor/ember-' + emberVersion + '.js"></script>'); | ||
})(); |
Oops, something went wrong.