Changeset 426 for Dev/trunk/client/qed/pages/response.js
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk
- Property svn:ignore
-
old new 1 1 data 2 2 nbproject 3 node_modules
-
- Property svn:ignore
-
Dev/trunk/client
- Property svn:externals
-
old new 1 dojo http://svn.dojotoolkit.org/src/tags/release-1.8. 0/dojo2 dijit http://svn.dojotoolkit.org/src/tags/release-1.8. 0/dijit3 dojox http://svn.dojotoolkit.org/src/tags/release-1.8. 0/dojox4 util http://svn.dojotoolkit.org/src/tags/release-1.8. 0/util1 dojo http://svn.dojotoolkit.org/src/tags/release-1.8.3/dojo 2 dijit http://svn.dojotoolkit.org/src/tags/release-1.8.3/dijit 3 dojox http://svn.dojotoolkit.org/src/tags/release-1.8.3/dojox 4 util http://svn.dojotoolkit.org/src/tags/release-1.8.3/util
-
- Property svn:externals
-
Dev/trunk/client/qed/pages/response.js
r420 r426 62 62 this._getAnswersAndSaveResponse(); 63 63 this.content.domNode.innerHTML = "<div>Thanks for filling in the survey.</div>"; 64 e && event.stop(e);64 if ( e ) { event.stop(e); } 65 65 return false; 66 66 }, … … 68 68 this._getAnswersAndSaveResponse(); 69 69 this.content.domNode.innerHTML = "<div>To continue with this survey later, just save the URL in the location bar and revisit it later. Your answers will still be there.</div>"; 70 e && event.stop(e);70 if ( e ) { event.stop(e); } 71 71 return false; 72 72 }, 73 73 _ignoreEvent: function(e) { 74 e && event.stop(e);74 if ( e ) { event.stop(e); } 75 75 return false; 76 76 }
Note: See TracChangeset
for help on using the changeset viewer.