Changeset 20828


Ignore:
Timestamp:
06/28/16 21:12:40 (9 years ago)
Author:
ayfeng
Message:

FIX: Invalid call to WriteData fails because prefix is included

Location:
issm/trunk-jpl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/jenkins/javascript/karma/lib/bin/mask.js

    r20819 r20828  
    5656                        }
    5757                } // }}}
    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);
     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);
    6161                }//}}}
    6262                this.fix=function() { //{{{
  • issm/trunk-jpl/jenkins/javascript/karma/scripts/specs/issm-ajax.spec.js

    r20812 r20828  
    1313    it("contains test101", function(done) {
    1414        $.ajax({
    15             url: 'http://localhost:8080/test107.js',
     15            url: 'http://localhost:8080/test101.js',
    1616            dataType: 'script',
    1717            success: onAjaxSuccess,
  • issm/trunk-jpl/src/m/classes/mask.js

    r20819 r20828  
    5656                        }
    5757                } // }}}
    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);
     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);
    6161                }//}}}
    6262                this.fix=function() { //{{{
Note: See TracChangeset for help on using the changeset viewer.