~ubuntu-branches/ubuntu/raring/schooltool.intervention/raring

« back to all changes in this revision

Viewing changes to src/schooltool/intervention/browser/intervention.js

  • Committer: Bazaar Package Importer
  • Author(s): Gediminas Paulauskas
  • Date: 2011-02-24 17:10:33 UTC
  • Revision ID: james.westby@ubuntu.com-20110224171033-8wflfqxxe3zld6bf
Tags: upstream-0.4.2
ImportĀ upstreamĀ versionĀ 0.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Javascript for SchoolTool Intervention views.
 
3
 */
 
4
 
 
5
function select_all_responsible()
 
6
{
 
7
    elements = document.getElementsByClassName('person_list')
 
8
    for (var index in elements)
 
9
    {
 
10
        elem = elements[index]
 
11
        prefix = elem.name.split('.')[0];
 
12
        if (prefix != 'person')
 
13
            continue;
 
14
        elem.checked = true;
 
15
    }
 
16
}
 
17