Changeset 7438
- Timestamp:
- Jan 25, 2018, 10:21:57 AM (6 years ago)
- Location:
- trunk/www
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/biomaterials/bioplateeventtypes/bioplateeventtypes.js
r6389 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var BioPlateEventTypes = function() -
trunk/www/biomaterials/bioplates/bioplates.js
r7003 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var BioPlates = function() -
trunk/www/biomaterials/bioplates/events/events.js
r7001 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var PlateEvents = function() -
trunk/www/biomaterials/bioplates/wells/biowells.js
r7001 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var BioWells = function() … … 111 112 var frm = document.forms['biowell']; 112 113 var type = frm.biomaterial_type.value; 113 if ( !type)114 if (type == '0') 114 115 { 115 116 Forms.showNotification(frm.biomaterial_type, 'You must first select what type of biomaterial'); 116 117 return; 117 } 118 } 118 119 var url = ''; 119 120 if (frm.biomaterial_id.length > 1) -
trunk/www/biomaterials/bioplatetypes/bioplatetypes.js
r6497 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var BioPlateTypes = function() -
trunk/www/biomaterials/biosources/biosources.js
r6756 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var BioSources = function() -
trunk/www/biomaterials/events/events.js
r7001 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var BioMaterialEvents = function() -
trunk/www/biomaterials/extracts/extracts.js
r7390 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var Extracts = function() -
trunk/www/biomaterials/kits/kits.js
r6991 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var Kits = function() -
trunk/www/biomaterials/samples/samples.js
r7390 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var Samples = function() -
trunk/www/biomaterials/tags/tags.js
r6944 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var Tags = function() -
trunk/www/biomaterials/wizards/create_child_bioplate.js
r7390 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var CreateChildBioPlate = function() -
trunk/www/biomaterials/wizards/move_biomaterial.js
r7390 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var MoveBioMaterial = function() -
trunk/www/biomaterials/wizards/place_on_plate.js
r7390 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var PlaceOnPlate = function() -
trunk/www/biomaterials/wizards/wizards.js
r7001 r7438 22 22 @author Nicklas 23 23 */ 24 'use strict'; 24 25 25 26 var Wizards = function() -
trunk/www/include/scripts/subtypes.js
r7419 r7438 237 237 for (var i = noNoneOption ? 0 : 1; i < list.length; i++) 238 238 { 239 if (list[i].value == 0)239 if (list[i].value == 'NaN') 240 240 { 241 241 // Found the header entry
Note: See TracChangeset
for help on using the changeset viewer.