| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2009, Google Inc. | 2 * Copyright 2009, Google Inc. |
| 3 * All rights reserved. | 3 * All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 * for its version. | 53 * for its version. |
| 54 * @type {string} | 54 * @type {string} |
| 55 */ | 55 */ |
| 56 o3djs.util.PLUGIN_NAME = 'O3D Plugin'; | 56 o3djs.util.PLUGIN_NAME = 'O3D Plugin'; |
| 57 | 57 |
| 58 /** | 58 /** |
| 59 * The version of the plugin needed to use this version of the javascript | 59 * The version of the plugin needed to use this version of the javascript |
| 60 * utility libraries. | 60 * utility libraries. |
| 61 * @type {string} | 61 * @type {string} |
| 62 */ | 62 */ |
| 63 o3djs.util.REQUIRED_VERSION = '0.1.40.0'; | 63 o3djs.util.REQUIRED_VERSION = '0.1.42.0'; |
| 64 | 64 |
| 65 /** | 65 /** |
| 66 * The width an O3D must be to put a failure message inside | 66 * The width an O3D must be to put a failure message inside |
| 67 * @type {number} | 67 * @type {number} |
| 68 */ | 68 */ |
| 69 o3djs.util.MINIMUM_WIDTH_FOR_MESSAGE = 200; | 69 o3djs.util.MINIMUM_WIDTH_FOR_MESSAGE = 200; |
| 70 | 70 |
| 71 /** | 71 /** |
| 72 * The height an O3D must be to put a failure message inside | 72 * The height an O3D must be to put a failure message inside |
| 73 * @type {number} | 73 * @type {number} |
| (...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1011 break; | 1011 break; |
| 1012 default: | 1012 default: |
| 1013 throw 'Unknown engine ' + o3djs.util.mainEngine_; | 1013 throw 'Unknown engine ' + o3djs.util.mainEngine_; |
| 1014 } | 1014 } |
| 1015 } | 1015 } |
| 1016 }, 10); | 1016 }, 10); |
| 1017 } | 1017 } |
| 1018 } | 1018 } |
| 1019 }; | 1019 }; |
| 1020 | 1020 |
| OLD | NEW |