Changeset 6504
- Timestamp:
- Aug 6, 2014, 9:30:22 AM (8 years ago)
- Location:
- branches/3.3-stable/www
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-stable/www/common/help/view_help.jsp
r6400 r6504 118 118 <base:page type="popup" title="Help"> 119 119 <base:head styles="help.css" scripts="~help.js" /> 120 <base:body >120 <base:body data-read-only="1"> 121 121 <h1><%=title%></h1> 122 122 -
branches/3.3-stable/www/include/scripts/main-2.js
r6503 r6504 1234 1234 try 1235 1235 { 1236 if (oldWin && !oldWin.closed && oldWin. App)1236 if (oldWin && !oldWin.closed && oldWin.Popup && !oldWin.Popup.isReadOnly()) 1237 1237 { 1238 1238 var msg = 'This window has already been opened. '; -
branches/3.3-stable/www/include/scripts/popup.js
r6503 r6504 27 27 var internal = {}; 28 28 29 // If the popup dialog is read-only BASE will not 30 // display a warning when trying to re-open the same dialog 31 popup.isReadOnly = function() 32 { 33 return Data.int(document.body, 'read-only'); 34 } 35 29 36 internal.savePosition = function() 30 37 { -
branches/3.3-stable/www/info/about.jsp
r6177 r6504 67 67 <base:page type="popup" title="About"> 68 68 <base:head scripts="tabcontrol-2.js,~info.js" styles="tabcontrol.css" /> 69 <base:body >69 <base:body data-read-only="1"> 70 70 <h1>BASE - BioArray Software Environment</h1> 71 71 -
branches/3.3-stable/www/info/broadcast.jsp
r6177 r6504 41 41 <base:page type="popup" title="<%=title%>"> 42 42 <base:head scripts="~info.js "/> 43 <base:body >43 <base:body data-read-only="1"> 44 44 <h1><%=HTML.encodeTags(title)%></h1> 45 45 -
branches/3.3-stable/www/info/forgot_password.jsp
r6177 r6504 44 44 <base:page type="popup" title="Forgot your password?"> 45 45 <base:head scripts="~info.js"/> 46 <base:body >46 <base:body data-read-only="1"> 47 47 <h1>Forgot your password?</h1> 48 48 -
branches/3.3-stable/www/info/get_account.jsp
r6177 r6504 44 44 <base:page type="popup" title="Get an account"> 45 45 <base:head scripts="~info.js" /> 46 <base:body >46 <base:body data-read-only="1"> 47 47 <h1>Get an account</h1> 48 48 -
branches/3.3-stable/www/lims/arraydesigns/features/view_feature.jsp
r6307 r6504 102 102 <base:head scripts="tabcontrol-2.js,~features.js" styles="tabcontrol.css"> 103 103 </base:head> 104 <base:body >104 <base:body data-read-only="1"> 105 105 <h1><%=title%> <base:help helpid="feature.view.properties" /></h1> 106 106 -
branches/3.3-stable/www/logout.jsp
r6167 r6504 68 68 <base:page type="popup" title="<%=title%>"> 69 69 <base:head scripts="~logout.js" /> 70 <base:body >70 <base:body data-read-only="1"> 71 71 <h1><%=title%></h1> 72 72 <div class="content"> -
branches/3.3-stable/www/my_base/messages/view_message.jsp
r6307 r6504 110 110 <base:page type="popup" title="<%=title%>" id="view-page"> 111 111 <base:head scripts="~messages.js" /> 112 <base:body >112 <base:body data-read-only="1"> 113 113 <h1><%=title%> <base:help tabcontrol="main" /></h1> 114 114 <div id="page-data" data-item-id="<%=itemId%>"></div> -
branches/3.3-stable/www/views/jobs/view_job.jsp
r6445 r6504 192 192 <base:head scripts="tabcontrol-2.js,table.js,~jobs.js" 193 193 styles="tabcontrol.css,progressbar.css,table.css" /> 194 <base:body >194 <base:body data-read-only="1"> 195 195 <h1><%=title%> <base:help tabcontrol="main" /></h1> 196 196 <div id="page-data" -
branches/3.3-stable/www/views/rawbioassays/rawdata/view_rawdata.jsp
r6311 r6504 93 93 <base:page title="<%=title%>" type="popup" id="view-page"> 94 94 <base:head scripts="tabcontrol-2.js,~rawdata.js" styles="tabcontrol.css" /> 95 <base:body >95 <base:body data-read-only="1"> 96 96 <h1><%=title%></h1> 97 97 -
branches/3.3-stable/www/views/sessions/view_session.jsp
r6311 r6504 91 91 <base:page type="popup" title="<%=title%>" id="view-page"> 92 92 <base:head scripts="~sessions.js" /> 93 <base:body >93 <base:body data-read-only="1"> 94 94 95 95 <h1><%=title%> <base:help helpid="session.view" /></h1>
Note: See TracChangeset
for help on using the changeset viewer.