source: Dev/trunk/js/editorScripts.js @ 165

Last change on this file since 165 was 144, checked in by fpvanagthoven, 13 years ago

Fixed mkdir call in ApplicationConnector?.php, now actually makes a directory instead of errors.
Cleaning up of pipeline Sequencer, smaller icons, etc. Trying to get non-db version of editor working properly, then integrate db calls.

File size: 485 bytes
RevLine 
[144]1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6function IsItemSelected(check, target) {
7    if (check.value) {
8        target.disabled = false;
9    }
10    else {
11        target.disabled = true;
12    }
13}
14
15function IsCheckEnabled(check, target) {
16    if (check.checked) {
17        target.disabled = false;
18    }
19    else {
20        target.disabled = true;
21    }
22}
23
24function SubmitToolbox() {
25    document.forms['toolbox'].submit();
26}
27
28
Note: See TracBrowser for help on using the repository browser.