Develop and Download Open Source Software

Browse Subversion Repository

Diff of /js/domain.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 10 by berupon, Tue Dec 8 11:41:01 2009 UTC revision 12 by berupon, Thu Dec 10 17:45:25 2009 UTC
# Line 232  function getGridSetting(visibles) { Line 232  function getGridSetting(visibles) {
232          return collectMember(visibles.options, 'value');          return collectMember(visibles.options, 'value');
233  }  }
234    
235    function renderDoubleList(lhs, rhs)
236    {
237            var str = new EJS({url: 'js/doublelist.ejs'}).render(
238                    {
239                            'lhs' : lhs,
240                            'rhs' : rhs
241                    }
242            );
243            return str;
244    }
245    
246  var app = (function () {  var app = (function () {
247                    
248          /// private ///          /// private ///
# Line 322  var app = (function () { Line 333  var app = (function () {
333                                          }                                          }
334                                          if (ret.errors.length) {                                          if (ret.errors.length) {
335                                                  $("messages").innerHTML = ret.errors.join("<BR>");                                                  $("messages").innerHTML = ret.errors.join("<BR>");
336                                                  $("error").appear({ duration: 1.0 });                                                  $("error").appear({ duration: 0.6 });
337                                          }else {                                          }else {
338                                                  this.moveLocation("list");                                                  this.moveLocation("list");
339                                          }                                          }
340                                          okToPost = true;                                          okToPost = true;
341                                  },                                  }.bind(this),
342                                  function () {                                  function () {
343                                          alert('Something went wrong...')                                          alert('Something went wrong...')
344                                          okToPost = true;                                          okToPost = true;

Legend:
Removed from v.10  
changed lines
  Added in v.12

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26