This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/home/phuongvv/Desktop/Classy Groundcovers - Finding Your Perfect Plants_files/dialog.js b/Classy Groundcovers - Finding Your Perfect Plants_files/dialog.js | |
| index ee6badf..b941c2c 100644 | |
| --- a/home/phuongvv/Desktop/Classy Groundcovers - Finding Your Perfect Plants_files/dialog.js | |
| +++ b/Classy Groundcovers - Finding Your Perfect Plants_files/dialog.js | |
| @@ -18,6 +18,7 @@ $(function() { | |
| } else if (typeof (r.w) === 'number') { | |
| w = r.w; | |
| } | |
| + var $link = $(this); | |
| d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/core/src/main/java/juzu/impl/plugin/template/metamodel/TemplateResolver.java b/core/src/main/java/juzu/impl/plugin/template/metamodel/TemplateResolv | |
| index e50e05d..4badab3 100644 | |
| --- a/core/src/main/java/juzu/impl/plugin/template/metamodel/TemplateResolver.java | |
| +++ b/core/src/main/java/juzu/impl/plugin/template/metamodel/TemplateResolver.java | |
| @@ -165,7 +165,7 @@ public class TemplateResolver implements Serializable { | |
| final Element[] elements = new Element[types.size()]; | |
| int index = 0; | |
| for (Name type : types) { | |
| - elements[index++] = context.getTypeElement(type.getIdentifier()); | |
| + elements[index++] = context.getTypeElement(type.toString()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/core/src/main/java/org/juzu/impl/plugin/ajax/ApplicationAsset.java b/core/src/main/java/org/juzu/impl/plugin/ajax/ApplicationAsset.java | |
| index 85739cb..ada70f7 100644 | |
| --- a/core/src/main/java/org/juzu/impl/plugin/ajax/ApplicationAsset.java | |
| +++ b/core/src/main/java/org/juzu/impl/plugin/ajax/ApplicationAsset.java | |
| @@ -51,8 +51,10 @@ public class ApplicationAsset extends Route implements Provider<ApplicationAsset | |
| resp.setContentType("text/javascript"); | |
| PrintWriter printer = resp.getWriter(); | |
| - // | |
| - printer.println("HTMLElement.prototype." + scope + "=function(){"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void testRenameNode() throws Exception | |
| { | |
| MOPService mop = mgr.getPOMService(); | |
| Site portal = mop.getModel().getWorkspace().addSite(ObjectType.PORTAL_SITE, "rename_node2"); | |
| portal.getRootNavigation().addChild("default"); | |
| // | |
| sync(true); | |
| // |
NewerOlder