Adding copyright to js files
This commit is contained in:
parent
a16f35325c
commit
f8229d07e8
8 changed files with 40 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
|||
/* Copyright (c) 2010, Diaspora Inc. This file is
|
||||
* licensed under the Affero General Public License version 3 or later. See
|
||||
* the COPYRIGHT file.
|
||||
*/
|
||||
|
||||
// $(document).bind("mobileinit", function(){
|
||||
// $.extend( $.mobile , {
|
||||
//
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
/* Copyright (c) 2010, Diaspora Inc. This file is
|
||||
* licensed under the Affero General Public License version 3 or later. See
|
||||
* the COPYRIGHT file.
|
||||
*/
|
||||
|
||||
var Diaspora = Diaspora || {};
|
||||
Diaspora.widgets = Diaspora.widgets || {
|
||||
pageWidgets: {},
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
/* Copyright (c) 2010, Diaspora Inc. This file is
|
||||
* licensed under the Affero General Public License version 3 or later. See
|
||||
* the COPYRIGHT file.
|
||||
*/
|
||||
|
||||
var Mobile = {
|
||||
initialize : function(){
|
||||
$('#aspect_picker').change(Mobile.changeAspect);
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
/* Copyright (c) 2010, Diaspora Inc. This file is
|
||||
* licensed under the Affero General Public License version 3 or later. See
|
||||
* the COPYRIGHT file.
|
||||
*/
|
||||
|
||||
describe("AspectEdit", function() {
|
||||
|
||||
beforeEach(function() {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
/* Copyright (c) 2010, Diaspora Inc. This file is
|
||||
* licensed under the Affero General Public License version 3 or later. See
|
||||
* the COPYRIGHT file.
|
||||
*/
|
||||
|
||||
describe("Diaspora", function() {
|
||||
describe("widgets", function() {
|
||||
beforeEach(function() {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
/* Copyright (c) 2010, Diaspora Inc. This file is
|
||||
* licensed under the Affero General Public License version 3 or later. See
|
||||
* the COPYRIGHT file.
|
||||
*/
|
||||
|
||||
describe("mobile interface", function() {
|
||||
describe("initialize", function() {
|
||||
it("attaches a change event to the select box", function() {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
/* Copyright (c) 2010, Diaspora Inc. This file is
|
||||
* licensed under the Affero General Public License version 3 or later. See
|
||||
* the COPYRIGHT file.
|
||||
*/
|
||||
|
||||
describe("Publisher", function() {
|
||||
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
/* Copyright (c) 2010, Diaspora Inc. This file is
|
||||
* licensed under the Affero General Public License version 3 or later. See
|
||||
* the COPYRIGHT file.
|
||||
*/
|
||||
|
||||
describe("WebSocketReceiver", function() {
|
||||
it("sets a shortcut", function() {
|
||||
expect(WSR).toEqual(WebSocketReceiver);
|
||||
|
|
|
|||
Loading…
Reference in a new issue