Opened 11 years ago

Closed 10 years ago

Last modified 9 years ago

#1729 closed task (fixed)

Move in-page <script> elements to external *.js files

Reported by: Nicklas Nordborg Owned by: Nicklas Nordborg
Priority: major Milestone: BASE 3.3
Component: web Version:
Keywords: Cc:

Description

This is the first step towards implementing a 'Content Security Policy' (#1712).

Considering that a lot of the in-page scripts are dynamically generated with code that depend on request parameters, user settings, etc. this move is not trivial in all cases. One idea is to use data-* attributes (introduced by HTML5, see for example http://html5doctor.com/html5-custom-data-attributes/) to hold data that is needed by the scripts. In most cases simple string values are enough. For more complex data structures we could use JSON.

Change History (120)

comment:1 Changed 11 years ago by Nicklas Nordborg

Owner: changed from everyone to Nicklas Nordborg
Status: newassigned

comment:2 Changed 11 years ago by Nicklas Nordborg

(In [6150]) References #1729: Move in-page <script> elements to external *.js files

Moved global functions getRoot(), getSessionId() etc. to the main.js file. Values that are needed for those functions are instead included as <body data-* > attributes.

comment:3 Changed 11 years ago by Nicklas Nordborg

(In [6151]) References #1729: Move in-page <script> elements to external *.js files

Fixed on the login and footnote page and related (switch user, impersonate user)

comment:4 Changed 11 years ago by Nicklas Nordborg

(In [6153]) References #1729: Move in-page <script> elements to external *.js files

Fixed on 3 BASE menu popup dialogs. It's not trivial to make this change, but I have also realized that #1730 will affect the same scipts and it would probably be better to do both fixes at the same time. It will at least save a lot of time used for testing the changes.

comment:5 Changed 11 years ago by Nicklas Nordborg

(In [6156]) References #1729: Move in-page <script> elements to external *.js files

Fixes an issue with localStorage and the 'ask every time' setting in Firefox (about cookie storage).

comment:6 Changed 11 years ago by Nicklas Nordborg

(In [6159]) References #1729 and #1730.

Started to work on this for the tabcontrol taglib. Basic tab switching and form validation should work, but not setting a custom 'switchFunction' or activation callback. To use the new features, use the 'tabcontrol-2.js' instead of 'tabcontrol.js'. Remove all explict callback methods in the tags and add them with, for example, TabControl.addTabValidator() calls.

comment:7 Changed 11 years ago by Nicklas Nordborg

(In [6160]) References #1729 and #1730.

  • Redesigned 'onload' event handler functionality. There are now 3 levels to add page initialization code which gives better control of the calling order: Doc.addElementInitializer(), Doc.onLoad() and Doc.addFinalizer()

  • Implemented support for custom tab switch function in the tab control taglib. Use TabControl?.setSwitchFunction().

comment:8 Changed 11 years ago by Nicklas Nordborg

(In [6161]) References #1729 and #1730.

  • Added support for 'onactivate' event handlers in the tab control taglib.

  • Changed custom event names to use 'base-' as prefix to avoid clashes ('activate' is used by IE), so the new names are 'base-activate' and 'base-validate'

  • Added support for remembering last active tab in a tab control.

comment:9 Changed 11 years ago by Nicklas Nordborg

(In [6165]) References #1729: Move in-page <script> elements to external *.js files

Get rid of a <script> block near the end of the page in case there is no script to execute.

comment:10 Changed 11 years ago by Nicklas Nordborg

(In [6168]) References #1729: Move in-page <script> elements to external *.js files

Moved some code for opening popup windows to main-2.js

comment:11 Changed 11 years ago by Nicklas Nordborg

(In [6169]) References #1729 and #1730.

Fixed the Administrate -> Server settings and Broadcast message pages.

comment:12 Changed 11 years ago by Nicklas Nordborg

(In [6170]) References #1729 and #1730.

Fixed calendar popup.

comment:13 Changed 11 years ago by Nicklas Nordborg

(In [6171]) References #1729 and #1730.

Fixed the zoom popup except toolbar buttons and menu items since there is no support for it yet in the taglibs.

comment:14 Changed 11 years ago by Nicklas Nordborg

(In [6173]) References #1729: Move in-page <script> elements to external *.js files

Moved <body onload> script so that it is executed among the last scripts. This is needed since the onload script ususally sets focus, etc. in a form, but the TabControl? taglib need to have activated the correct tab first, or the focus is lost again.

comment:15 Changed 11 years ago by Nicklas Nordborg

(In [6180]) References #1729 and #1730.

Fixed on the View -> Home page.

comment:16 Changed 11 years ago by Nicklas Nordborg

(In [6181]) References #1729 and #1730.

Fixed on some more common pages:

  • View help
  • Manage list presets
  • View change history
  • Set owner of items

comment:17 Changed 11 years ago by Nicklas Nordborg

(In [6182]) References #1729 and #1730.

Started to work with the <table> taglib. So far the following have been fixed:

  • The page navigator
  • The 'view/preset' dialog box
  • Sorting and filtering on most column types (except enumerations)

As a consequence of the above, the presetOnChange() function on most list pages have been removed and the configureColumns() have been simplified.

comment:18 Changed 11 years ago by Nicklas Nordborg

(In [6183]) References #1729 and #1730.

More fixes for the <table> taglib.

  • Use JSON as a data-* attribute to define columns instead of javascript.
  • Add support for dynamic attributes to several more tags
  • Re-factored the 'view/presets' handling and fixed the warning icons about filters

comment:19 Changed 11 years ago by Nicklas Nordborg

(In [6184]) References #1729 and #1730.

The multi-select list should now be working and use JSON for configuration instead of dynamically created javascript. The implementation details have changed a bit and moved from main.js to main-2.js. Similar changes are needed for the smart-enum lists.

comment:20 Changed 11 years ago by Nicklas Nordborg

(In [6185]) References #1729 and #1730.

Got rid of the last multi-select control in experiment explorer. Removed the MultiOptions class in main.js.

comment:21 Changed 11 years ago by Nicklas Nordborg

(In [6186]) References #1729 and #1730.

The "Configure columns" dialog.

comment:22 Changed 11 years ago by Nicklas Nordborg

(In [6187]) References #1729 and #1730.

The "Select color" dialog.

comment:23 Changed 11 years ago by Nicklas Nordborg

(In [6188]) References #1729 and #1730.

Cleaned up code for opening the 'set owner' and 'share items' dialogs.

comment:24 Changed 11 years ago by Nicklas Nordborg

(In [6190]) References #1729 and #1730.

The smart-enum list should now be working and use JSON for configuration instead of dynamically created javascript. The implementation details have changed a bit and moved from main.js to main-2.js.

comment:25 Changed 11 years ago by Nicklas Nordborg

(In [6191]) References #1729: Move in-page <script> elements to external *.js files

Fixed for the "overflowed text" functionality.

comment:26 Changed 11 years ago by Nicklas Nordborg

(In [6192]) References #1729 and #1730.

Refactored the code for displaying a popup message when loading a page. The message should now be stored as a session setting instead: sc.setSessionSetting("alert-message", message). The added benefit is that the message is only displayed once and is not re-displayed if the page is reloaded.

Removed onunload, onkeypress and attributes from the <base:body> tag. Added support for dynamic attributes instead.

comment:27 Changed 11 years ago by Nicklas Nordborg

(In [6194]) References #1729 and #1730.

Fixed for frameset resizing code in three places: file manager, item overview and extensions overview.

comment:28 Changed 11 years ago by Nicklas Nordborg

(In [6195]) References #1729 and #1730.

Fixed for several functions in the 'Item overview' feature. The joust tree outline and a few other minor places remains.

comment:29 Changed 11 years ago by Nicklas Nordborg

(In [6199]) References #1729: Move in-page <script> elements to external *.js files

Removed obsolete code for JSON and AJAX support in older browsers.

comment:30 Changed 11 years ago by Nicklas Nordborg

(In [6200]) References #1729 and #1730.

Several plug-in configurations wizard dialogs except the generic parameter entry dialog.

comment:31 Changed 11 years ago by Nicklas Nordborg

(In [6201]) References #1729 and #1730.

Fixed for most of the menu system, except for the extensions menu.

comment:32 Changed 11 years ago by Nicklas Nordborg

(In [6202]) References #1729 and #1730.

Fixed for the "edit annotations" tab.

comment:33 Changed 11 years ago by Nicklas Nordborg

(In [6203]) References #1729 and #1730.

Fixed for "progress reporter" and "close popup" pages.

comment:34 Changed 11 years ago by Nicklas Nordborg

(In [6204]) References #1729 and #1730.

Fixed for the "share items" dialog.

comment:35 Changed 11 years ago by Nicklas Nordborg

(In [6218]) References #1729 and #1730. Fixed on the 'edit news' page and started on the 'view news' page. Need a lot more support in the main javascript libraries. Have started to introduce event handlers and related for 'edit', 'delete' and 'restore' functionality. Callback methods are currently handled by sending a notification event (base-notify) to a auto-generated temporary <div> tag. There are still some problems with it if, for example, a different action is needed.

comment:36 Changed 11 years ago by Nicklas Nordborg

(In [6219]) References #1729 and #1730. Implemented support for dynamic attributes in the toolbar button extension. Added DynamicActionAttributes interface to be implemented by actions that support it. Support is also needed in the renderers (can be done by extending from the AbstractHtmlRenderer class) and action factories. By default all action factories inheriting from AbstractJspFactory get support for dynamic attributes, but implementation probably need to forward the attributes to the actual action beans (easy if the action bean extends from DynamicActionAttributeSupport.

The XmlLoader has also been updated to accept parameter tags with hyphens since most dynamic attributes that we use are data-* attributes.

Finally, the help button on 'view news' page has been used as a test bed for this feature and the example extensions are also about to be updated.

comment:37 Changed 11 years ago by Nicklas Nordborg

(In [6220]) References #1729 and #1730. The view and list pages for news have now been almost completely fixed. The only remaining issue is to implement the return callback in 'selection' mode, but since there are no dialogs that select news items this have to wait for the next batch.

comment:38 Changed 11 years ago by Nicklas Nordborg

(In [6221]) References #1729 and #1730. Fixed on every list page:

  • Delete item permantly icon
  • Share item icon
  • Check/uncheck all icon

comment:39 Changed 11 years ago by Nicklas Nordborg

(In [6222]) References #1729 and #1730. Fixed for the software pages. Includes adding support for 'Share' and 'Set owner' buttons. Added support for using custom events instead of callback methods to return selected items. Slightly tested with the 'Edit project' page, but need a page with updated script for full testing.

comment:40 Changed 11 years ago by Nicklas Nordborg

(In [6223]) References #1729 and #1730. Fixed for the user administration pages. The 'Set owner' dialog now use the new event-based method for returning selected items. When the group and role administration pages have been fixed there will be a lot more places for testing.

comment:41 Changed 11 years ago by Nicklas Nordborg

(In [6224]) References #1729 and #1730. Fixed for the group and roles administration pages.

comment:42 Changed 11 years ago by Nicklas Nordborg

(In [6225]) References #1729 and #1730. Added some utility methods to the linkitems module to reduce the code needed when using it.

comment:43 Changed 11 years ago by Nicklas Nordborg

(In [6242]) References #1729 and #1730. Implement lazy loading of 'Item overview' as a tab activation event instead of a page reload.

comment:44 Changed 11 years ago by Nicklas Nordborg

(In [6243]) References #1729 and #1730. Forgot this file in last commit [6242].

comment:45 Changed 11 years ago by Nicklas Nordborg

(In [6244]) References #1729 and #1730. Implement lazy loading of 'Change history' as a tab activation event instead of a page reload. The change history list page now uses separate script file.

comment:46 Changed 11 years ago by Nicklas Nordborg

(In [6245]) References #1729 and #1730. Fixed for biosource pages.

comment:47 Changed 11 years ago by Nicklas Nordborg

(In [6246]) References #1729 and #1730. Implement lazy loading of 'Annotations'/'Inherited annotations' as a tab activation event instead of replacing the 'switchTab' function in the tab-control taglib. Done for the biosurce and sample edit dialogs.

Also improved the implementation so that the last parameters used are kept in the common code and the edit dialogs no longer has to keep track of when a protocol is changed or when the parent item selection changes.

comment:48 Changed 11 years ago by Nicklas Nordborg

(In [6247]) References #1729 and #1730. And two more files that should have been included in [6246].

comment:49 Changed 11 years ago by Nicklas Nordborg

(In [6254]) References #1729 and #1730. Use lazy loading of 'Annotations'/'Inherited annotations' for all other items.

comment:50 Changed 11 years ago by Nicklas Nordborg

(In [6255]) References #1729 and #1730. Use lazy loading for the 'Annotations' frame on the view page as well. Started to work on the 'Inherit annotations' dialog, but the Joust tree can't be done at the moment so there is still some work to do.

comment:51 Changed 11 years ago by Nicklas Nordborg

(In [6256]) References #1729 and #1730. Use lazy loading for the 'Data files' frame in the edit dialogs. Inline scipts has also been removed from the edit file dialog and view and download file links.

comment:52 Changed 11 years ago by Nicklas Nordborg

(In [6259]) References #1729 and #1730. Fixed for the extension manager except the frame with the tree outline.

comment:53 Changed 11 years ago by Nicklas Nordborg

(In [6260]) References #1729 and #1730. Fixed for all biomaterial list pages.

comment:54 Changed 11 years ago by Nicklas Nordborg

(In [6261]) References #1729 and #1730. Fixed for all biomaterial view pages.

comment:55 Changed 11 years ago by Nicklas Nordborg

(In [6262]) References #1729 and #1730. Fixed for list and view pages 'Administrate -> Quota' down to 'Reporter clone templates'.

comment:56 Changed 10 years ago by Nicklas Nordborg

(In [6277]) References #1729. Fixed file view and download links

comment:57 Changed 10 years ago by Nicklas Nordborg

(In [6289]) References #1729 and #1730. Fixed on the remaining list and view pages under the Administrate menu.

comment:58 Changed 10 years ago by Nicklas Nordborg

(In [6290]) References #1729 and #1730. Fixed on the Administrate -> Service page.

comment:59 Changed 10 years ago by Nicklas Nordborg

(In [6291]) References #1729 and #1730. New implementation of 'linkitems-2.js' which is more streamlined for use with JSON formatted data and automatic attachment of event handlers. The edit dialogs for users, groups and roles have been updated.

comment:60 Changed 10 years ago by Nicklas Nordborg

(In [6292]) References #1729 and #1730. Fixed on the edit annotation type category popup.

comment:61 Changed 10 years ago by Nicklas Nordborg

(In [6293]) References #1729 and #1730. Incorrect event handler attached to 'Ok' button in table listings.

comment:62 Changed 10 years ago by Nicklas Nordborg

(In [6294]) References #1729 and #1730. Fixed on the 'edit annotation type' dialog. Also updated some code for form handling (moved from old main.js to new main-2.js).

comment:63 Changed 10 years ago by Nicklas Nordborg

(In [6295]) References #1729 and #1730. Fixed for the client and help edit dialogs.

comment:64 Changed 10 years ago by Nicklas Nordborg

(In [6296]) References #1729 and #1730. Fixed for the file types, extra value types and hardware edit dialogs.

comment:65 Changed 10 years ago by Nicklas Nordborg

(In [6297]) References #1729 and #1730. Fixed the 'subtypes.js' script and hopefully all places that uses it.

comment:66 Changed 10 years ago by Nicklas Nordborg

(In [6300]) References #1729 and #1730. Fixed for the item subtypes edit dialog. Also added support for dynamic-attributes to the <base:select> tag and support for values to the link script library.

comment:67 Changed 10 years ago by Nicklas Nordborg

(In [6305]) References #1729 and #1730. Fixed on all pages in the admin section except the extensions tree frame.

comment:68 Changed 10 years ago by Nicklas Nordborg

(In [6306]) References #1729 and #1730. Fixed on several pages in the Biomaterial/Array? LIMS sections.

comment:69 Changed 10 years ago by Nicklas Nordborg

(In [6307]) References #1729 and #1730. Fixed on more pages in the Biomaterial/Array? LIMS sections.

comment:70 Changed 10 years ago by Nicklas Nordborg

(In [6308]) References #1729 and #1730. Fixed on most pages in the File manager section except those related to directory tree listing.

comment:71 Changed 10 years ago by Nicklas Nordborg

(In [6309]) References #1729 and #1730. Fixed on exception handling pages.

comment:72 Changed 10 years ago by Nicklas Nordborg

(In [6310]) References #1729 and #1730. Found a stray file that should have been included long time ago.

comment:73 Changed 10 years ago by Nicklas Nordborg

(In [6311]) References #1729 and #1730. Most view and list pages in the 'View' menu and some other minor fixes in other places found during the week.

comment:74 Changed 10 years ago by Nicklas Nordborg

(In [6312]) References #1729 and #1730. Edit dialogs for the Biomaterial and Array LIMS.

comment:75 Changed 10 years ago by Nicklas Nordborg

(In [6313]) References #1729 and #1730. Adding scripts that should have been added earlier.

comment:76 Changed 10 years ago by Nicklas Nordborg

(In [6314]) References #1729 and #1730. Several edit dialogs in the 'View' menu. Expression builder, which required changes to the 'Validate' function which is now done on the server side instead of in the browser (due to the use of eval() on user input).

comment:77 Changed 10 years ago by Nicklas Nordborg

(In [6315]) References #1729 and #1730. Fixed on experiment-related pages.

comment:78 Changed 10 years ago by Nicklas Nordborg

(In [6320]) References #1729 and #1730. Fixed for edit project and some analysis plugin dialogs and the generic table exporter.

comment:79 Changed 10 years ago by Nicklas Nordborg

(In [6321]) References #1729 and #1730. Found some remaining onclick handlers on pages that should have been fixed some time ago.

comment:80 Changed 10 years ago by Nicklas Nordborg

(In [6322]) References #1729 and #1730. Found some remaining places which still use old tabcontrol and linkitems script. Fixed those and removed some of the no longer used javascript files.

comment:81 Changed 10 years ago by Nicklas Nordborg

(In [6337]) References #1729: Move in-page <script> elements to external *.js files

Cleaning out unused functions from table.js.

comment:82 Changed 10 years ago by Nicklas Nordborg

(In [6342]) References #1729 and #1730.

Moved Main.show(), Main.hide() and related functions to Doc namespace.

Moved Main.addClass(), Main.removeClass() and related function to Doc namespace.

New feature is that all functions can be used with id or document element.

Use existing function in App namespace for Main.getWindowHeight() and Main.getWindowWidth().

comment:83 Changed 10 years ago by Nicklas Nordborg

(In [6352]) References #1729: Move in-page <script> elements to external *.js files

Fixed incorrect check if a formular supports coloring the resulting values or not.

comment:84 Changed 10 years ago by Nicklas Nordborg

(In [6363]) References #1729: Move in-page <script> elements to external *.js files

Started with the joust tree control. This step cleans up the code for the icons. Lots of file name changes to make the file names easier to read and converted all to PNG.

comment:85 Changed 10 years ago by Nicklas Nordborg

(In [6380]) References #1729 and #1730. The Joust menu tree on the extensions overview page has been fixed. The joust-2.js script is still missing some functionality and error checking. For example, no support for lazy initialization.

Most icons have been reszied to 18x18 pixels. The old icons was a mess with a mix of 16x16, 18x16 and 18x18.

comment:86 Changed 10 years ago by Nicklas Nordborg

(In [6381]) References #1729 and #1730. Made 16x16 variants of some icons for the toolbars. Cleaning up the code for toggling and selecting a menu entry. Making sure text to appear in the menu is not passing through HTML markup and destroying the layout.

comment:87 Changed 10 years ago by Nicklas Nordborg

(In [6382]) References #1729 and #1730. The Joust menu tree on the 'Item overview' page has been fixed. Implemented lazy loading functionality.

More icons have been reszied to 18x18 pixels.

comment:88 Changed 10 years ago by Nicklas Nordborg

(In [6384]) References #1729 and #1730. The Joust menu tree on the 'Inherit annotations' dialog has been fixed.

comment:89 Changed 10 years ago by Nicklas Nordborg

(In [6385]) References #1729 and #1730. The Joust menu tree in the file manager has been fixed.

comment:90 Changed 10 years ago by Nicklas Nordborg

(In [6386]) References #1729 and #1730. Creating a new css file for the new joust implementation.

comment:91 Changed 10 years ago by Nicklas Nordborg

(In [6387]) References #1729 and #1730. In some places 'data-container' was used instead of 'datacontainer'.

comment:92 Changed 10 years ago by Nicklas Nordborg

(In [6388]) References #1729 and #1730. The Joust menu tree in the experiment section has been fixed. This was the last of the place, so the old script is removed.

comment:93 Changed 10 years ago by Nicklas Nordborg

(In [6389]) References #1729 and #1730. Cleaning up a lot of the old javascript code. Move surviving functions into main-2.js

comment:94 Changed 10 years ago by Nicklas Nordborg

(In [6391]) References #1729 and #1730. Started with the plugin/job configuration dialog. Still some more work to do to support all functionality.

comment:95 Changed 10 years ago by Nicklas Nordborg

(In [6392]) References #1729. Fixed event binding for 'Save and configure' button in 'Edit plugin configuration' dialog.

comment:96 Changed 10 years ago by Nicklas Nordborg

(In [6393]) References #1729 and #1730. The configure plugin/job dialog is now fixed. Also made a change in the 'NullPlugin?' so that it is possible to test better in the web interface. A side effect is that the 'Test with file' function is no longer working, so this need to be fixed as well.

comment:97 Changed 10 years ago by Nicklas Nordborg

(In [6394]) References #1729 and #1730. Fixes the 'Test with file' function.

comment:98 Changed 10 years ago by Nicklas Nordborg

(In [6395]) References #1729 and #1730. parameters.js is not longer needed.

comment:99 Changed 10 years ago by Nicklas Nordborg

(In [6396]) References #1729 and #1730. Fixed for 'Place on plate' and 'Move biomaterial' wizards.

comment:100 Changed 10 years ago by Nicklas Nordborg

(In [6397]) References #1729 and #1730. Fixed for 'Create child bioplate' wizard.

comment:101 Changed 10 years ago by Nicklas Nordborg

(In [6398]) References #1729 and #1730. Fixed for 'External program executor' wizard.

comment:102 Changed 10 years ago by Nicklas Nordborg

(In [6399]) References #1729 and #1730. Cleaning up some remaining event handlers and unused code. Moved 'Dates' class to 'main-2.js'.

comment:103 Changed 10 years ago by Nicklas Nordborg

(In [6400]) References #1729 and #1730. Move the last few methods in main.js to main-2.js. These two tickets should now be more or less finished, but I guess that some testing is needed. Particularly in Internet Explorer which have not been used much at all during this development.

comment:104 Changed 10 years ago by Nicklas Nordborg

(In [6401]) References #1729 and #1730. The extensions menu now support dynamic event binding. Added 'id' and 'clazz' attributes to MenuItemAction interface. The onClick method is deprecated. Scripts can be included to handle click events or use dynamic attribute 'data-url' for simple links.

comment:105 Changed 10 years ago by Nicklas Nordborg

(In [6402]) References #1729. Add support in <base:head> taglib for including <script> elements in included pages. This makes it easier for those pages to use the <base:head> taglib to include javascript (but they need to be aware tht the relative paths are relative to the parent jsp (--> absolute paths need to be used in most cases).

comment:106 Changed 10 years ago by Nicklas Nordborg

(In [6403]) References #1729 and #1730. Updating the documentation so that at least something of this is mentioned. Some of the extension example code now use the 'onclick'-free version.

Added language="javascript" support to syntax highlightning.

comment:107 Changed 10 years ago by Nicklas Nordborg

(In [6405]) References #1729 and #1730. Display better error messages when page initialization fails.

comment:108 Changed 10 years ago by Nicklas Nordborg

(In [6411]) References #1729. Fixing a bad HTML tag.

comment:109 Changed 10 years ago by Nicklas Nordborg

(In [6412]) References #1729. Fixes some issues found when testing. Most are related to IE/Firefox differences.

comment:110 Changed 10 years ago by Nicklas Nordborg

(In [6413]) References #1729. Fixes some more issues found when testing with IE.

comment:111 Changed 10 years ago by Nicklas Nordborg

(In [6415]) References #1729. Fixes issue with 'pointer-events:none' not being supported in IE. Button click event handlers are now paired with an event handler that check if a button has been disabled before allowing the click event to execute.

comment:112 Changed 10 years ago by Nicklas Nordborg

(In [6416]) References #1729. Fixes issue with opening selection lists in IE.

comment:113 Changed 10 years ago by Nicklas Nordborg

Resolution: fixed
Status: assignedclosed

comment:114 Changed 10 years ago by Nicklas Nordborg

(In [6419]) References #1729: Move in-page <script> elements to external *.js files

Re-add Main.getAjaxRequest() function since it may be used by extensions.

comment:115 Changed 10 years ago by Nicklas Nordborg

(In [6422]) References #1729: Move in-page <script> elements to external *.js files

Re-add Numbers.numberOnly and Numbers.integerOnly function since it may be used by extensions.

Display better error messages when a page finalizer callback fails.

comment:116 Changed 10 years ago by Nicklas Nordborg

(In [6441]) References #1729: Move in-page <script> elements to external *.js files

Fixed broken 'Delete permanently' button in trashcan list.

comment:117 Changed 9 years ago by Nicklas Nordborg

(In [6445]) References #1729. Fixes spelling mistake in percentUnknown element causing it to not be shown/hidden.

comment:118 Changed 9 years ago by Nicklas Nordborg

(In [6452]) References #1729: Move in-page <script> elements to external *.js files

Do not store references to all opened dialogs. Instead use window.open() with empty string to check if the window already exists or not.

comment:119 Changed 9 years ago by Nicklas Nordborg

(In [6457]) References #1729: Move in-page <script> elements to external *.js files

Use redirect instead of forward for 'Download file' dialog so that the script is referenced with correct path.

comment:120 Changed 9 years ago by Nicklas Nordborg

(In [6484]) References #1729: Move in-page <script> elements to external *.js files

new Option() need 4 parameters (not 3) when setting initial 'selected' status.

Note: See TracTickets for help on using tickets.