Changeset 19829


Ignore:
Timestamp:
11/27/15 11:11:13 (9 years ago)
Author:
Eric.Larour
Message:

CHG: fixed issues with private class still being used (in javascript).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/consistency/ismodelselfconsistent.js

    r19787 r19829  
    66
    77        //initialize consistency as true
    8         md.private.isconsistent=true;
     8        md.priv.isconsistent=true;
    99
    1010        //Get solution and associated analyses
    11         solution=md.private.solution;
     11        solution=md.priv.solution;
     12        if(typeof solution != 'number')throw Error('ismodelselfconsistent: did not provide solution type in the private class!');
     13       
    1214        var analyses = AnalysisConfiguration(solution);
    1315
     
    3032
    3133        //error message if mode is not consistent
    32         if (md.private.isconsistent==false){
     34        if (md.priv.isconsistent==false){
    3335                throw Error('Model not consistent, see messages above');
    3436        }
Note: See TracChangeset for help on using the changeset viewer.