Added missing license header (for js and css).
This commit is contained in:
parent
f80fcb0b92
commit
9b6b969f8a
@ -1,3 +1,10 @@
|
||||
/**
|
||||
* OpenSlides agenda functions
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
function hideLine(object) {
|
||||
if (object == []) {
|
||||
return;
|
||||
|
@ -1,5 +1,3 @@
|
||||
// $Id: jquery.once.js,v 1.1 2009/08/31 15:52:26 webchick Exp $
|
||||
|
||||
/**
|
||||
* jQuery Once Plugin v1.2
|
||||
* http://plugins.jquery.com/project/once
|
||||
|
@ -3,6 +3,7 @@
|
||||
* Copyright 2010, John Resig
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
*/
|
||||
|
||||
(function( jQuery, undefined ){
|
||||
var oldManip = jQuery.fn.domManip, tmplItmAtt = "_tmplitem", htmlExpr = /^[^<]*(<[\w\W]+>)[^>]*$|\{\{\! /,
|
||||
newTmplItems = {}, wrappedItems = {}, appendToTmplItems, topTmplItem = { key: 0, data: {} }, itemKey = 0, cloneIndex = 0, stack = [];
|
||||
|
@ -1,3 +1,10 @@
|
||||
/**
|
||||
* OpenSlides agenda style
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
/* agenda item open/closed */
|
||||
a.close_link span {
|
||||
background-image: url(../images/icons/done-grey.png);
|
||||
|
@ -1,3 +1,10 @@
|
||||
/**
|
||||
* OpenSlides assignment functions
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
$(function() {
|
||||
$('a.elected').parent().parent().children('td').addClass('elected');
|
||||
|
||||
|
@ -1,3 +1,10 @@
|
||||
/**
|
||||
* OpenSlides assignent style
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
td.elected {
|
||||
background-color: #BED4DE !important;
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
openslides.assignment.tests
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
@ -1,3 +1,10 @@
|
||||
/**
|
||||
* OpenSlides participants functions
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
$(function() {
|
||||
$('.status_link').click(function(event) {
|
||||
event.preventDefault();
|
||||
|
@ -1,3 +1,10 @@
|
||||
/**
|
||||
* OpenSlides participants style
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
a.status_link.active span {
|
||||
background-image: url(../images/icons/on.png);
|
||||
background-repeat: no-repeat;
|
||||
|
@ -1,3 +1,10 @@
|
||||
/**
|
||||
* OpenSlides projector functions
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
$(function() {
|
||||
// activate an element to show it on projector
|
||||
$('.activate_link').click(function(event) {
|
||||
|
@ -1,3 +1,10 @@
|
||||
/**
|
||||
* OpenSlides projector functions
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
function presentation_reload() {
|
||||
if ($('#config > #ajax').html() == 'on') {
|
||||
$.ajax({
|
||||
|
@ -1,5 +1,8 @@
|
||||
/**
|
||||
* OpenSlides projector control template style
|
||||
* OpenSlides projector control style
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
/* Portlet */
|
||||
|
@ -1,6 +1,10 @@
|
||||
/**
|
||||
* OpenSlides projector style
|
||||
* OpenSlides projector view style
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
body{
|
||||
margin : 0px;
|
||||
padding-top: 0px;
|
||||
|
@ -1,3 +1,10 @@
|
||||
/**
|
||||
* OpenSlides utils functions
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
$(function () {
|
||||
$('.button').click(function (event) {
|
||||
button = $(this);
|
||||
|
@ -1,4 +1,9 @@
|
||||
/* OpenSlides default template style */
|
||||
/**
|
||||
* OpenSlides default template style
|
||||
*
|
||||
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||
* :license: GNU GPL, see LICENSE for more details.
|
||||
*/
|
||||
|
||||
body {
|
||||
padding: 0 0 0px;
|
||||
|
Loading…
Reference in New Issue
Block a user