Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
fdecampredon committed Dec 14, 2013
2 parents dfbf9e7 + 43d3b70 commit 10b6445
Show file tree
Hide file tree
Showing 75 changed files with 119,853 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .brackets-typescript
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"sources" : [
"src/**/*ts"
],
"compileOnSave": false,

"target": "ES5",
"module": "AMD",
"outDir": "./bin/",
"noImplicitAny": true
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
trash
built
brackets-typescript.zip
31 changes: 31 additions & 0 deletions .grunt/grunt-contrib-jasmine/jasmine-helper.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*global jasmine:false, window:false, document:false*/

(function(){
'use strict';

var jasmineEnv = jasmine.getEnv();

jasmineEnv.updateInterval = 1000;
var htmlReporter = new jasmine.HtmlReporter();
jasmineEnv.addReporter(htmlReporter);

jasmineEnv.specFilter = function(spec) {
return htmlReporter.specFilter(spec);
};

var currentWindowOnload = window.onload;

if (document.readyState !== 'complete') {
window.onload = function() {
if (currentWindowOnload) {
currentWindowOnload();
}
jasmineEnv.execute();
};
} else {
jasmineEnv.execute();
}


}());

Loading

0 comments on commit 10b6445

Please sign in to comment.