Changeset 20832


Ignore:
Timestamp:
06/29/16 12:37:20 (9 years ago)
Author:
ayfeng
Message:

FIX: Revert change to marshall in mask class (add prefix argument)
CHG: Ported mesh3dprisms and project3d to javascript

Location:
issm/trunk-jpl
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/jenkins/javascript/karma/karma.conf.js

    r20824 r20832  
    1212    // list of files / patterns to load in the browser
    1313    files: [
     14      'node_modules/jquery/dist/jquery.min.js',
    1415      'node_modules/mathjs/dist/math.min.js',
    1516      'lib/bin/EnumDefinitions.js',
  • issm/trunk-jpl/src/m/classes/mask.js

    r20828 r20832  
    5656                        }
    5757                } // }}}
    58                 this.marshall=function(md,fid) { //{{{
    59             WriteData(fid,'object',this,'fieldname','groundedice_levelset','format','DoubleMat','mattype',1);
    60             WriteData(fid,'object',this,'fieldname','ice_levelset','format','DoubleMat','mattype',1);
     58                this.marshall=function(md,prefix,fid) { //{{{
     59            WriteData(fid,prefix,'object',this,'fieldname','groundedice_levelset','format','DoubleMat','mattype',1);
     60            WriteData(fid,prefix,'object',this,'fieldname','ice_levelset','format','DoubleMat','mattype',1);
    6161                }//}}}
    6262                this.fix=function() { //{{{
Note: See TracChangeset for help on using the changeset viewer.