Skip to content

Commit cc438cd

Browse files
committed
LICENSE.
1 parent 523720e commit cc438cd

File tree

3 files changed

+25
-5
lines changed

3 files changed

+25
-5
lines changed

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2013 Airbnb
2+
3+
Permission is hereby granted, free of charge, to any person
4+
obtaining a copy of this software and associated documentation
5+
files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the
9+
Software is furnished to do so, subject to the following
10+
conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ grunt && node index.js
1212
#production mode
1313
grunt server
1414
```
15+
## LICENSE
16+
MIT

public/mergedAssets.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4345,7 +4345,6 @@ module.exports.id = 'Posts';
43454345
model: {model: 'post', params: params, ensureKeys: ['title']}
43464346
};
43474347
this.app.fetch(spec, function(err, result) {
4348-
console.log(result, 1111);
43494348
callback(err, 'posts_del_view', result);
43504349
});
43514350
}
@@ -4549,19 +4548,16 @@ module.exports = BaseView.extend({
45494548
className: 'posts_del_view',
45504549
postInitialize: function() {
45514550
this.post = this.getTemplateData();
4552-
console.log(this.getTemplateData(), 222);
4553-
console.log(this.post,3333);
4551+
console.log(this.pots);
45544552
},
45554553
events: {
45564554
'click .del': 'del'
45574555
},
45584556
del: function() {
45594557
var that, promise;
4560-
console.log(this.post,444);
45614558
promise = this.post.destroy();
45624559
promise
45634560
.success(function() {
4564-
console.log(arguments, 222);
45654561
that.app.router.redirectTo('/posts');
45664562
})
45674563
.error(function() {

0 commit comments

Comments
 (0)