-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/slidewiki/slidewiki-platform
into SWIK-1645-replace-search-selection-dropdowns # Conflicts: # assets/css/custom.css # components/AddDeck/AddDeck.js # components/Home/ContactUs.js
- Loading branch information
Showing
117 changed files
with
8,254 additions
and
1,990 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { shortTitle } from '../../configs/general'; | ||
const log = require('../log/clog'); | ||
|
||
export default function storeTags(context, payload, done) { | ||
log.info(context); | ||
context.dispatch('STORE_TAGS', payload); | ||
done(); | ||
} |
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
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
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
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,7 @@ | ||
import {shortTitle} from '../../configs/general'; | ||
import serviceUnavailable from '../error/serviceUnavailable'; | ||
const log = require('../log/clog'); | ||
|
||
export default function annotateClick(context, payload, done) { | ||
context.dispatch('ANNOTATE_CLICK', {}); | ||
} |
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
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
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,26 @@ | ||
const log = require('../log/clog'); | ||
import saveSlide from './saveSlide'; | ||
|
||
export default function saveSlideWithDeckTransition(context, payload, done) { | ||
let args = { | ||
id: payload.currentSlidePayload.deckID | ||
}; | ||
context.service.read('deck.slides', args, {timeout: 20 * 1000}, (err, res) => { | ||
res.slides.map((slide) => { | ||
if(slide.id === payload.currentSlidePayload.id) { | ||
context.executeAction(saveSlide, payload.currentSlidePayload); | ||
} else { | ||
let otherPayload = { | ||
id: slide.id, | ||
|
||
transition: payload.currentSlidePayload.transition | ||
}; | ||
// Extract necessary information from each slide, add transition and update it in deck-service. | ||
|
||
} | ||
}); | ||
}); | ||
|
||
|
||
|
||
} |
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
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
assets/custom-ckeditor-skin/moono-lisa-custom-build/editor_gecko.css
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
assets/custom-ckeditor-skin/moono-lisa-custom-build/editor_ie.css
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
assets/custom-ckeditor-skin/moono-lisa-custom-build/editor_ie8.css
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
assets/custom-ckeditor-skin/moono-lisa-custom-build/editor_iequirks.css
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
Oops, something went wrong.