Skip to content

Commit

Permalink
MINOR Added jQuery requirement to TreeDropdownField (see #5139) (from…
Browse files Browse the repository at this point in the history
… r100946)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@111547 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
Sam Minnee committed Oct 4, 2010
1 parent 7285bbe commit ae66792
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions forms/TreeDropdownField.php
Expand Up @@ -88,6 +88,8 @@ public function setSearchFunction($callback) {
public function Field() { public function Field() {
Requirements::javascript(SAPPHIRE_DIR . '/thirdparty/prototype.js'); Requirements::javascript(SAPPHIRE_DIR . '/thirdparty/prototype.js');
Requirements::javascript(SAPPHIRE_DIR . '/thirdparty/behaviour.js'); Requirements::javascript(SAPPHIRE_DIR . '/thirdparty/behaviour.js');
Requirements::javascript(SAPPHIRE_DIR . '/thirdparty/jquery/jquery.js');
Requirements::javascript(SAPPHIRE_DIR . '/javascript/jquery_improvements.js');
Requirements::css(SAPPHIRE_DIR . '/css/TreeDropdownField.css'); Requirements::css(SAPPHIRE_DIR . '/css/TreeDropdownField.css');
Requirements::javascript(SAPPHIRE_DIR . "/javascript/tree/tree.js"); Requirements::javascript(SAPPHIRE_DIR . "/javascript/tree/tree.js");
Requirements::css(SAPPHIRE_DIR . "/javascript/tree/tree.css"); Requirements::css(SAPPHIRE_DIR . "/javascript/tree/tree.css");
Expand Down

0 comments on commit ae66792

Please sign in to comment.