-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Improved compatibility of the colors module (Node) 2. Fixed bugs in the mysql module (Node) 3. Fixed issues with fs.Stats (Node) 4. Fixed issues with net.Server, net.Socket and http.Server (Node) 5. Fixed issues with zlib module (Node) 6. Implemented watch module (Node) 7. Moved AnchorScroll into its own project (AngularJS)
- Loading branch information
1 parent
e5454d7
commit 69ca28b
Showing
63 changed files
with
1,907 additions
and
603 deletions.
There are no files selected for viewing
This file contains 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
16 changes: 16 additions & 0 deletions
16
...l/src/main/scala/com/github/ldaniels528/meansjs/angularjs/anchorscroll/AnchorScroll.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.github.ldaniels528.meansjs.angularjs.anchorscroll | ||
|
||
import scala.scalajs.js | ||
|
||
/** | ||
* AnchorScroll Service | ||
* @see [[https://docs.angularjs.org/api/ng/service/\$anchorScroll]] | ||
*/ | ||
@js.native | ||
trait AnchorScroll extends js.Object { | ||
|
||
def apply(hash: String = js.native): js.Any = js.native | ||
|
||
var yOffset: js.Any = js.native | ||
|
||
} |
16 changes: 16 additions & 0 deletions
16
...in/scala/com/github/ldaniels528/meansjs/angularjs/anchorscroll/AnchorScrollProvider.scala
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.github.ldaniels528.meansjs.angularjs.anchorscroll | ||
|
||
import com.github.ldaniels528.meansjs.angularjs.Provider | ||
|
||
import scala.scalajs.js | ||
|
||
/** | ||
* AnchorScroll Provider | ||
* @see [[https://docs.angularjs.org/api/ng/provider/\$anchorScrollProvider]] | ||
*/ | ||
@js.native | ||
trait AnchorScrollProvider extends Provider[AnchorScroll] { | ||
|
||
def disableAutoScrolling(): js.Any = js.native | ||
|
||
} |
27 changes: 0 additions & 27 deletions
27
angularjs/core/src/main/scala/com/github/ldaniels528/meansjs/angularjs/AnchorScroll.scala
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.